/* * Copyright (c) 2016 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.netconf.mdsal.notification.impl; import static org.junit.Assert.assertEquals; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.verify; import java.util.Collection; import javax.annotation.Nonnull; import org.junit.Before; import org.junit.Test; import org.mockito.ArgumentCaptor; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.opendaylight.mdsal.binding.api.DataBroker; import org.opendaylight.mdsal.binding.api.DataTreeIdentifier; import org.opendaylight.mdsal.common.api.LogicalDatastoreType; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; public class OperationalDatastoreListenerTest { @Mock private DataBroker dataBroker; @Before public void setUp() throws Exception { MockitoAnnotations.initMocks(this); } @Test public void testDataStoreListener() { final InstanceIdentifier instanceIdentifier = InstanceIdentifier.create(DataObject.class); final DataTreeIdentifier testId = DataTreeIdentifier.create(LogicalDatastoreType.OPERATIONAL, instanceIdentifier); final OperationalDatastoreListener op = new OperationalDatastoreListener(instanceIdentifier) { @Override public void onDataTreeChanged(@Nonnull final Collection collection) { } }; doReturn(null).when(dataBroker).registerDataTreeChangeListener(any(), any()); ArgumentCaptor argumentId = ArgumentCaptor.forClass(DataTreeIdentifier.class); op.registerOnChanges(dataBroker); verify(dataBroker).registerDataTreeChangeListener(argumentId.capture(), any()); assertEquals(testId, argumentId.getValue()); } }