Improve Test coverage of DFC
[nonrtric/plt/ranpm.git] / datafilecollector / src / test / java / org / oran / datafile / datastore / DataStoreTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2023 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.oran.datafile.datastore;
22
23 import static org.junit.jupiter.api.Assertions.assertTrue;
24 import static org.mockito.Mockito.when;
25
26 import org.junit.jupiter.api.Test;
27 import org.junit.jupiter.api.extension.ExtendWith;
28 import org.mockito.Mock;
29 import org.mockito.junit.jupiter.MockitoExtension;
30 import org.oran.datafile.configuration.AppConfig;
31
32 @ExtendWith(MockitoExtension.class)
33 class DataStoreTest {
34
35     @Mock
36     private AppConfig mockAppConfig;
37
38     @Test
39     void testCreateWithS3Enabled() {
40         when(mockAppConfig.isS3Enabled()).thenReturn(true);
41         when(mockAppConfig.getS3EndpointOverride()).thenReturn("https://dummy-s3-bucket.s3.amazonaws.com");
42         when(mockAppConfig.getS3AccessKeyId()).thenReturn("test-access-key-id");
43         when(mockAppConfig.getS3SecretAccessKey()).thenReturn("test-access-key-secret");
44         DataStore dataStore = DataStore.create(mockAppConfig);
45         assertTrue(dataStore instanceof S3ObjectStore);
46     }
47
48     @Test
49     void testCreateWithS3Disabled() {
50         when(mockAppConfig.isS3Enabled()).thenReturn(false);
51         DataStore dataStore = DataStore.create(mockAppConfig);
52         assertTrue(dataStore instanceof FileStore);
53     }
54 }