/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.node; import static org.mockito.Matchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.junit.Before; import org.junit.Test; import org.opendaylight.controller.md.sal.binding.api.DataBroker; import org.opendaylight.controller.md.sal.binding.api.DataChangeListener; import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker.DataChangeScope; import org.opendaylight.controller.md.sal.common.api.data.AsyncDataChangeEvent; import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ofoverlay.rev140528.OfOverlayNodeConfig; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey; import org.opendaylight.yangtools.concepts.ListenerRegistration; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; public class OfOverlayNodeListenerTest { private OfOverlayNodeListener listener; private DataBroker dataProvider; private SwitchManager switchManager; private ListenerRegistration<DataChangeListener> listenerRegistration; private AsyncDataChangeEvent<InstanceIdentifier<?>, DataObject> change; private OfOverlayNodeConfig entryValue; private NodeId childNodeId; private InstanceIdentifier<OfOverlayNodeConfig> entryKey; @SuppressWarnings("unchecked") @Before public void initialisation() { dataProvider = mock(DataBroker.class); switchManager = mock(SwitchManager.class); listenerRegistration = mock(ListenerRegistration.class); when( dataProvider.registerDataChangeListener(any(LogicalDatastoreType.class), any(InstanceIdentifier.class), any(DataChangeListener.class), any(DataChangeScope.class))).thenReturn(listenerRegistration); change = mock(AsyncDataChangeEvent.class); entryValue = mock(OfOverlayNodeConfig.class); childNodeId = mock(NodeId.class); entryKey = InstanceIdentifier.builder(Nodes.class) .child(Node.class, new NodeKey(childNodeId)) .augmentation(OfOverlayNodeConfig.class) .build(); listener = new OfOverlayNodeListener(dataProvider, switchManager); } @Test public void constructorTest() throws Exception { listener.close(); verify(listenerRegistration).close(); } @Test public void onDataChangedTestCreatedData() { Map<InstanceIdentifier<?>, DataObject> entrySet = new HashMap<InstanceIdentifier<?>, DataObject>(); entrySet.put(entryKey, entryValue); when(change.getCreatedData()).thenReturn(entrySet); listener.onDataChanged(change); verify(switchManager).updateSwitchConfig(childNodeId, entryValue); } @Test public void onDataChangedTestUpdatedData() { Map<InstanceIdentifier<?>, DataObject> entrySet = new HashMap<InstanceIdentifier<?>, DataObject>(); entrySet.put(entryKey, entryValue); when(change.getUpdatedData()).thenReturn(entrySet); listener.onDataChanged(change); verify(switchManager).updateSwitchConfig(childNodeId, entryValue); } @Test public void onDataChangedTestRemovedPaths() { Set<InstanceIdentifier<?>> removedPaths = new HashSet<InstanceIdentifier<?>>(); removedPaths.add(entryKey); when(change.getRemovedPaths()).thenReturn(removedPaths); listener.onDataChanged(change); verify(switchManager).updateSwitchConfig(childNodeId, null); } }