3d8e79641aee6ed90ed1c51cb591773864a69856
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
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 package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.impl.rev141210;
17
18 import static org.mockito.Matchers.any;
19 import static org.mockito.Matchers.eq;
20 import static org.mockito.Mockito.doReturn;
21 import static org.mockito.Mockito.mock;
22 import static org.mockito.Mockito.when;
23
24 import javax.management.ObjectName;
25 import org.junit.Test;
26 import org.opendaylight.controller.config.api.DependencyResolver;
27 import org.opendaylight.controller.config.api.JmxAttribute;
28 import org.opendaylight.controller.config.api.ModuleIdentifier;
29 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
30 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
31 import org.opendaylight.controller.sal.core.api.Broker;
32 import org.opendaylight.controller.sal.core.api.Provider;
33 import org.opendaylight.yangtools.binding.data.codec.api.BindingNormalizedNodeSerializer;
34
35 public class V3poModuleTest {
36     @Test
37     public void testCustomValidation() {
38         V3poModule module = new V3poModule(mock(ModuleIdentifier.class), mock(DependencyResolver.class));
39
40         // ensure no exceptions on validation
41         // currently this method is empty
42         module.customValidation();
43     }
44
45     @Test
46     public void testCreateInstance() throws Exception {
47         // configure mocks
48         DependencyResolver dependencyResolver = mock(DependencyResolver.class);
49         BindingAwareBroker broker = mock(BindingAwareBroker.class);
50         when(dependencyResolver.resolveInstance(eq(BindingAwareBroker.class), any(ObjectName.class), any(JmxAttribute.class)))
51             .thenReturn(broker);
52         final org.opendaylight.controller.sal.core.api.Broker domBroker = mock(org.opendaylight.controller.sal.core.api.Broker.class);
53         when(dependencyResolver.resolveInstance(eq(org.opendaylight.controller.sal.core.api.Broker.class), any(ObjectName.class), any(JmxAttribute.class)))
54             .thenReturn(domBroker);
55         doReturn(mock(Broker.ProviderSession.class)).when(domBroker).registerProvider(any(Provider.class));
56         when(dependencyResolver.resolveInstance(eq(BindingNormalizedNodeSerializer.class), any(ObjectName.class), any(JmxAttribute.class)))
57                 .thenReturn(mock(BindingNormalizedNodeSerializer.class));
58         when(dependencyResolver.resolveInstance(eq(DOMDataBroker.class), any(ObjectName.class), any(JmxAttribute.class)))
59                 .thenReturn(mock(DOMDataBroker.class));
60
61         // create instance of module with injected mocks
62         V3poModule module = new V3poModule(mock(ModuleIdentifier.class), dependencyResolver);
63
64         // getInstance calls resolveInstance to get the broker dependency and then calls createInstance
65         AutoCloseable closeable = module.getInstance();
66
67         // ensure no exceptions on close
68         closeable.close();
69     }
70 }