8e175e6390f342fe5878ca28c69b8b9f19e7407e
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / test / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / msb / impl / MsbMgmrImplTest.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.msb.impl;
18
19 import org.junit.Before;
20 import org.junit.Test;
21 import org.mockito.InjectMocks;
22 import org.mockito.Mock;
23 import org.mockito.MockitoAnnotations;
24 import org.onap.msb.sdk.discovery.common.RouteException;
25 import org.onap.vfc.nfvo.driver.vnfm.svnfm.common.bo.AdaptorEnv;
26 import org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client.HttpClientProcessorInf;
27
28 public class MsbMgmrImplTest {
29         @InjectMocks
30         private MsbMgmrImpl msbMgmr;
31         
32         @Mock
33         private HttpClientProcessorInf httpClientProcessor;
34         
35         @Before
36         public void setUp() throws Exception {
37                 MockitoAnnotations.initMocks(this);
38                 AdaptorEnv env = new AdaptorEnv();
39                 env.setMsbIp("127.0.0.1");
40                 env.setMsbPort(80);
41                 msbMgmr.setAdaptorEnv(env);
42                 MockitoAnnotations.initMocks(this);
43         }
44
45         @Test(expected = RuntimeException.class)
46         public void testRegister()
47         {
48                 msbMgmr.register();
49         }
50         
51         @Test(expected = RuntimeException.class)
52         public void testunRegister()
53         {
54                 msbMgmr.unregister();
55         }
56         
57         @Test(expected = RouteException.class)
58         public void testGetServiceUrlInMsbBySeriveNameAndPort() throws RouteException
59         {
60                 msbMgmr.getServiceUrlInMsbBySeriveNameAndPort("serviceName", "88");
61         }
62 }