49bc43d2876d2dec532b0e952a0afd43f0635680
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / test / java / org / onap / appc / dg / common / impl / TestVNFConfiguratorImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.dg.common.impl;
25
26 import java.util.Date;
27 import java.util.HashMap;
28 import java.util.Map;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.mockito.Matchers;
33 import org.onap.appc.dg.common.VNFConfigurator;
34 import org.onap.appc.exceptions.APPCException;
35 import org.onap.appc.mdsal.MDSALStore;
36 import org.onap.appc.mdsal.impl.MDSALStoreFactory;
37 import org.onap.appc.mdsal.impl.MDSALStoreImpl;
38 import org.onap.appc.mdsal.objects.BundleInfo;
39 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
40 import org.powermock.api.mockito.PowerMockito;
41 import org.powermock.core.classloader.annotations.PrepareForTest;
42 import org.powermock.modules.junit4.PowerMockRunner;
43 import com.att.eelf.configuration.EELFLogger;
44 import com.att.eelf.configuration.EELFManager;
45
46 @RunWith(PowerMockRunner.class)
47 @PrepareForTest({MDSALStoreImpl.class, MDSALStoreFactory.class})
48 public class TestVNFConfiguratorImpl {
49
50     private static final EELFLogger logger = EELFManager.getInstance().getLogger(TestVNFConfiguratorImpl.class);
51
52     @Before
53     public void setUp() {
54         logger.setLevel(EELFLogger.Level.DEBUG);
55     }
56
57     @Test(expected = APPCException.class)
58     public void testValidations() throws APPCException {
59         VNFConfigurator configurator = new VNFConfiguratorImpl();
60         Map<String, String> params = new HashMap<String, String>();
61         params.put("uniqueId", "uniqueId");
62         params.put("yang", "yang");
63         params.put("configJSON", "configJSON");
64         configurator.storeConfig(params, new SvcLogicContext());
65     }
66
67     @Test
68     public void testYangPresentScenario() throws APPCException {
69
70         VNFConfigurator configurator = new VNFConfiguratorImpl();
71         PowerMockito.mockStatic(MDSALStoreFactory.class);
72         MDSALStore mdsalStore = PowerMockito.mock(MDSALStoreImpl.class);
73         PowerMockito.when(MDSALStoreFactory.createMDSALStore()).thenReturn(mdsalStore);
74         PowerMockito.when(mdsalStore.isModulePresent(Matchers.anyString(), (Date) Matchers.anyObject()))
75                 .thenReturn(true);
76
77         Map<String, String> params = new HashMap<String, String>();
78         params.put("uniqueId", "uniqueId");
79         params.put("yang", "yang");
80         params.put("configJSON", "configJSON");
81         params.put("requestId", "requestId");
82         configurator.storeConfig(params, new SvcLogicContext());
83     }
84
85     @Test
86     public void testYangAbsentScenario() throws Exception {
87
88         VNFConfigurator configurator = new VNFConfiguratorImpl();
89         PowerMockito.mockStatic(MDSALStoreFactory.class);
90
91         MDSALStore mdsalStore = PowerMockito.mock(MDSALStoreImpl.class);
92
93         PowerMockito.when(MDSALStoreFactory.createMDSALStore()).thenReturn(mdsalStore);
94
95         PowerMockito.when(mdsalStore.isModulePresent(Matchers.anyString(), (Date) Matchers.anyObject()))
96                 .thenReturn(false);
97
98         PowerMockito.doNothing()
99                 .when(mdsalStore).storeYangModule(Matchers.anyString(), (BundleInfo) Matchers.anyObject());
100
101         Map<String, String> params = new HashMap<String, String>();
102         params.put("uniqueId", "uniqueId");
103         params.put("yang", "yang");
104         params.put("configJSON", "configJSON");
105         params.put("requestId", "requestId");
106         configurator.storeConfig(params, new SvcLogicContext());
107
108     }
109 }