Improve Test coverage of pmproducer
[nonrtric/plt/ranpm.git] / pmproducer / src / test / java / org / oran / pmproducer / datastore / DataStoreTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2023 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 package org.oran.pmproducer.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.pmproducer.configuration.ApplicationConfig;
31
32 @ExtendWith(MockitoExtension.class)
33 class DataStoreTest {
34
35     @Mock
36     private ApplicationConfig 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 }