a6568005c6b8856e13cc2ddd838cab1c660aee5f
[sdnc/northbound.git] / generic-resource-api / provider / src / test / java / org / onap / sdnc / northbound / GenericResourceApiProviderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                                      reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.sdnc.northbound;
23
24 import org.junit.Before;
25 import org.mockito.Mock;
26 import org.onap.sdnc.northbound.util.DataBrokerUtil;
27 import org.onap.sdnc.northbound.util.GenericResourceApiSvcLogicServiceClientMockUtil;
28 import org.onap.sdnc.northbound.util.PropBuilder;
29 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
30 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
31 import org.opendaylight.controller.md.sal.binding.test.AbstractConcurrentDataBrokerTest;
32 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36
37 public class GenericResourceApiProviderTest extends AbstractConcurrentDataBrokerTest {
38
39     protected GenericResourceApiProvider genericResourceApiProvider;
40     protected DataBroker dataBroker;
41     protected @Mock NotificationPublishService mockNotificationPublishService;
42     protected @Mock RpcProviderRegistry mockRpcProviderRegistry;
43     protected @Mock GenericResourceApiSvcLogicServiceClient mockGenericResourceApiSvcLogicServiceClient;
44     protected static final Logger LOG = LoggerFactory.getLogger(GenericResourceApiProvider.class);
45
46
47     protected DataBrokerUtil db;
48     protected GenericResourceApiSvcLogicServiceClientMockUtil svcClient;
49
50
51     @Before
52     public void setUp() throws Exception {
53         svcClient = new GenericResourceApiSvcLogicServiceClientMockUtil(mockGenericResourceApiSvcLogicServiceClient);
54         dataBroker = getDataBroker();
55         db = new DataBrokerUtil(dataBroker);
56          try {
57             genericResourceApiProvider = new GenericResourceApiProvider(
58                     dataBroker,
59                     mockNotificationPublishService,
60                     mockRpcProviderRegistry,
61                     mockGenericResourceApiSvcLogicServiceClient
62             );
63         } catch (Exception e) {
64             LOG.error("Caught exception on setUp", e);
65             throw e;
66         }
67     }
68
69
70     public static PropBuilder prop(){
71         return (new PropBuilder());
72     }
73
74
75 }