diff options
author | highstreetherbert <herbert.eiselt@highstreet-technologies.com> | 2021-04-29 19:06:54 +0200 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-06-11 00:45:36 +0000 |
commit | db9f267b3930a28054e967c75db228e27663aedc (patch) | |
tree | e8ecaeff503afaa9c00b31781003b92a6f1844f2 /sdnr/wt/netconfnode-state-service/provider/src/test | |
parent | e536aaa0422660283fa388c1a5d1a9c32dc52f9e (diff) |
migrate features to silicon
migrate features to silicon
Issue-ID: CCSDK-3278
Signed-off-by: highstreetherbert <herbert.eiselt@highstreet-technologies.com>
Change-Id: Icabe6bd5b760438eedd8c6b78a70197c287c5199
Signed-off-by: highstreetherbert <herbert.eiselt@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/netconfnode-state-service/provider/src/test')
2 files changed, 5 insertions, 5 deletions
diff --git a/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfAccessorImpl.java b/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfAccessorImpl.java index 10c3b2697..9e666431d 100644 --- a/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfAccessorImpl.java +++ b/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfAccessorImpl.java @@ -57,7 +57,7 @@ import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology. import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId; import org.opendaylight.yangtools.concepts.ListenerRegistration; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; -import org.opendaylight.yangtools.yang.model.api.SchemaPath; +import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute; public class TestNetconfAccessorImpl extends Mockito { @@ -154,7 +154,7 @@ public class TestNetconfAccessorImpl extends Mockito { DOMMountPoint domMountPoint = mock(DOMMountPoint.class); when(domNotificationService.registerNotificationListener(any(DOMNotificationListener.class), - ArgumentMatchers.<Collection<SchemaPath>>any())) + ArgumentMatchers.<Collection<Absolute>>any())) .thenReturn(new ListenerRegistration<DOMNotificationListener>() { @Override public @NonNull DOMNotificationListener getInstance() { @@ -178,7 +178,7 @@ public class TestNetconfAccessorImpl extends Mockito { NetconfDomAccessorImpl netconfDomAccessor = new NetconfDomAccessorImpl(netconfAccessor, domDataBroker, domMountPoint, domContext); - Collection<SchemaPath> types = Arrays.asList(SchemaPath.create(false, NetworkTopology.QNAME)); + Collection<Absolute> types = Arrays.asList(Absolute.of(NetworkTopology.QNAME)); DOMNotificationListener listener = (notification) -> System.out.println("Notification: " + notification); ListenerRegistration<DOMNotificationListener> res = netconfDomAccessor.doRegisterNotificationListener(listener, types); @@ -186,7 +186,7 @@ public class TestNetconfAccessorImpl extends Mockito { //Capture parameters and assert them ArgumentCaptor<DOMNotificationListener> captor1 = ArgumentCaptor.forClass(DOMNotificationListener.class); @SuppressWarnings("unchecked") - ArgumentCaptor<Collection<SchemaPath>> captor2 = ArgumentCaptor.forClass(Collection.class); + ArgumentCaptor<Collection<Absolute>> captor2 = ArgumentCaptor.forClass(Collection.class); verify(domNotificationService).registerNotificationListener(captor1.capture(), captor2.capture()); assertEquals("Listener", listener, captor1.getValue()); diff --git a/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfNodeStateService.java b/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfNodeStateService.java index f03ab90e2..46b2e769e 100644 --- a/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfNodeStateService.java +++ b/sdnr/wt/netconfnode-state-service/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/netconfnodestateservice/test/TestNetconfNodeStateService.java @@ -48,7 +48,7 @@ import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.impl.NetconfNodeS import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.impl.rpc.NetconfnodeStateServiceRpcApiImpl; import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.test.example.ExampleConfig; import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.test.example.TestNetconfHelper; -import org.opendaylight.binding.runtime.spi.BindingRuntimeHelpers; +import org.opendaylight.mdsal.binding.runtime.spi.BindingRuntimeHelpers; import org.opendaylight.mdsal.binding.api.ClusteredDataTreeChangeListener; import org.opendaylight.mdsal.binding.api.DataBroker; import org.opendaylight.mdsal.binding.api.DataObjectModification; |