a01160162237ee4d757771c3ca9560919cfd38a3
[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.GenericResourceApiSvcLogicServiceClientMockUtil;
27 import org.onap.sdnc.northbound.util.PropBuilder;
28 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
29 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
30 import org.opendaylight.controller.md.sal.binding.test.AbstractConcurrentDataBrokerTest;
31 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35
36 public class GenericResourceApiProviderTest extends AbstractConcurrentDataBrokerTest {
37
38     protected GenericResourceApiProvider genericResourceApiProvider;
39     protected DataBroker dataBroker;
40     protected @Mock NotificationPublishService mockNotificationPublishService;
41     protected @Mock RpcProviderRegistry mockRpcProviderRegistry;
42     protected @Mock GenericResourceApiSvcLogicServiceClient mockGenericResourceApiSvcLogicServiceClient;
43     protected static final Logger LOG = LoggerFactory.getLogger(GenericResourceApiProvider.class);
44
45
46     protected GenericResourceApiSvcLogicServiceClientMockUtil svcClient;
47
48
49     @Before
50     public void setUp() throws Exception {
51         svcClient = new GenericResourceApiSvcLogicServiceClientMockUtil(mockGenericResourceApiSvcLogicServiceClient);
52
53         dataBroker = getDataBroker();
54          try {
55             genericResourceApiProvider = new GenericResourceApiProvider(
56                     dataBroker,
57                     mockNotificationPublishService,
58                     mockRpcProviderRegistry,
59                     mockGenericResourceApiSvcLogicServiceClient
60             );
61         } catch (Exception e) {
62             LOG.error("Caught exception on setUp", e);
63             throw e;
64         }
65     }
66
67
68     public static PropBuilder prop(){
69         return (new PropBuilder());
70     }
71
72
73 }