Migrate netconf to MD-SAL APIs
[netconf.git] / netconf / sal-netconf-connector / src / test / java / org / opendaylight / netconf / sal / connect / netconf / sal / NetconfDeviceNotificationServiceTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.sal.connect.netconf.sal;
9
10 import static org.mockito.Mockito.doReturn;
11 import static org.mockito.Mockito.never;
12 import static org.mockito.Mockito.times;
13 import static org.mockito.Mockito.verify;
14
15 import java.net.URI;
16 import org.junit.Assert;
17 import org.junit.Before;
18 import org.junit.Test;
19 import org.mockito.Mock;
20 import org.mockito.MockitoAnnotations;
21 import org.opendaylight.mdsal.dom.api.DOMNotification;
22 import org.opendaylight.mdsal.dom.api.DOMNotificationListener;
23 import org.opendaylight.yangtools.concepts.ListenerRegistration;
24 import org.opendaylight.yangtools.yang.common.QName;
25 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
26
27 public class NetconfDeviceNotificationServiceTest {
28
29     @Mock
30     private DOMNotificationListener listener1;
31     @Mock
32     private DOMNotificationListener listener2;
33     @Mock
34     private DOMNotification notification1;
35     @Mock
36     private DOMNotification notification2;
37
38     private NetconfDeviceNotificationService service;
39     private ListenerRegistration<DOMNotificationListener> registration;
40
41
42     @Before
43     public void setUp() throws Exception {
44         MockitoAnnotations.initMocks(this);
45         final SchemaPath path1 = SchemaPath.create(true, QName.create(new URI("namespace1"), "path1"));
46         final SchemaPath path2 = SchemaPath.create(true, QName.create(new URI("namespace2"), "path2"));
47         service = new NetconfDeviceNotificationService();
48         service.registerNotificationListener(listener1, path1);
49         registration = service.registerNotificationListener(listener2, path2);
50
51         doReturn(path1).when(notification1).getType();
52         doReturn(path2).when(notification2).getType();
53
54     }
55
56     @Test
57     public void testPublishNotification() throws Exception {
58
59         service.publishNotification(notification1);
60         verify(listener1).onNotification(notification1);
61         verify(listener2, never()).onNotification(notification1);
62
63         service.publishNotification(notification2);
64         verify(listener2).onNotification(notification2);
65         verify(listener1, never()).onNotification(notification2);
66     }
67
68     @Test
69     public void testCloseRegistration() throws Exception {
70         service.publishNotification(notification2);
71         Assert.assertEquals(listener2, registration.getInstance());
72         registration.close();
73         service.publishNotification(notification2);
74         verify(listener2, times(1)).onNotification(notification2);
75     }
76 }