Test coverage in appc-interfaces-services package
[appc.git] / appc-inbound / appc-interfaces-service / bundle / src / test / java / org / onap / appc / interfaces / service / InterfacesServiceProviderTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2019 Ericsson
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  *
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.appc.interfaces.service;
23
24 import static org.junit.Assert.assertNotNull;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.mockito.Mockito;
28 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
29 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
30 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
31 import org.opendaylight.yang.gen.v1.org.onap.appc.interfaces.service.rev170818.InterfacesServiceService;
32 import org.powermock.reflect.Whitebox;
33
34 public class InterfacesServiceProviderTest {
35
36     private DataBroker dataBroker = Mockito.mock(DataBroker.class);
37     private RpcProviderRegistry rpcRegistry = Mockito.mock(RpcProviderRegistry.class);
38     private RpcRegistration <InterfacesServiceService> serviceRegistration = (RpcRegistration <InterfacesServiceService>) Mockito.mock(RpcRegistration.class);
39     private InterfacesServiceProvider provider;
40
41     @Before
42     public void setup() {
43         provider = new InterfacesServiceProvider(dataBroker, rpcRegistry);
44         Mockito.doReturn(serviceRegistration).when(rpcRegistry).addRpcImplementation(Mockito.any(), Mockito.any());
45     }
46
47     @Test
48     public void testInit() {
49         provider.init();
50         RpcRegistration <InterfacesServiceService> serviceRegistration = Whitebox.getInternalState(provider, "serviceRegistration");
51         assertNotNull(serviceRegistration);
52     }
53
54     @Test
55     public void testClose() {
56         provider.init();
57         provider.close();
58         Mockito.verify(serviceRegistration).close();
59     }
60
61 }