Remove duplicate parts.
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / test / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nslcm / impl / NslcmMgmrImplTest.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.impl;
18
19 import static org.mockito.Mockito.when;
20
21 import java.io.IOException;
22 import java.util.HashMap;
23
24 import org.apache.http.client.ClientProtocolException;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.mockito.InjectMocks;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.mockito.MockitoAnnotations;
31 import org.onap.vfc.nfvo.driver.vnfm.svnfm.common.bo.AdaptorEnv;
32 import org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client.HttpClientProcessorInf;
33 import org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client.HttpResult;
34 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.NslcmGrantVnfRequest;
35 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.NslcmGrantVnfResponse;
36 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.NslcmNotifyLCMEventsRequest;
37 import org.springframework.web.bind.annotation.RequestMethod;
38
39 public class NslcmMgmrImplTest {
40         @InjectMocks
41         private NslcmMgmrImpl nslcmMgmr;
42         
43         @Mock
44         private HttpClientProcessorInf httpClientProcessor;
45         
46         private String vnfInstanceId = "vnfInstanceId_001";
47         
48         @Before
49         public void setUp() throws Exception {
50                 MockitoAnnotations.initMocks(this);
51                 AdaptorEnv env = new AdaptorEnv();
52                 nslcmMgmr.setAdaptorEnv(env);
53                 MockitoAnnotations.initMocks(this);
54                 
55                 String json = "{\"access_token\":\"1234567\"}";
56                 HttpResult httpResult = new HttpResult();
57                 httpResult.setContent(json);
58                 
59                 when(httpClientProcessor.process(Mockito.anyString(), Mockito.any(RequestMethod.class), Mockito.any(HashMap.class), Mockito.anyString())).thenReturn(httpResult);
60         }
61         
62         @Test
63         public void testGrantVnf() throws ClientProtocolException, IOException
64         {
65                 NslcmGrantVnfRequest cbamRequest = new NslcmGrantVnfRequest();
66                 NslcmGrantVnfResponse response = nslcmMgmr.grantVnf(cbamRequest);
67         }
68         
69         @Test
70         public void testNotifyVnf() throws ClientProtocolException, IOException
71         {
72                 NslcmNotifyLCMEventsRequest cbamRequest = new NslcmNotifyLCMEventsRequest();
73                 nslcmMgmr.notifyVnf(cbamRequest, vnfInstanceId);
74         }
75 }