cd765c4f51f7abfb4999c4362654cac8719b57cd
[openflowplugin.git] / applications / notification-supplier / src / test / java / org / opendaylight / openflowplugin / applications / notification / supplier / impl / item / stat / NodeConnectorStatNotificationSupplierImplTest.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.stat;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertNotNull;
13 import static org.mockito.ArgumentMatchers.any;
14 import static org.mockito.Mockito.mock;
15 import static org.mockito.Mockito.times;
16 import static org.mockito.Mockito.verify;
17
18 import java.util.ArrayList;
19 import java.util.Collection;
20 import org.junit.Before;
21 import org.junit.Test;
22 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
23 import org.opendaylight.controller.md.sal.binding.api.DataObjectModification;
24 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
25 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
26 import org.opendaylight.openflowplugin.applications.notification.supplier.impl.helper.TestChangeEventBuildHelper;
27 import org.opendaylight.openflowplugin.applications.notification.supplier.impl.helper.TestData;
28 import org.opendaylight.openflowplugin.applications.notification.supplier.impl.helper.TestSupplierVerifyHelper;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeConnectorId;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.node.NodeConnector;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.node.NodeConnectorKey;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.FlowCapableNodeConnectorStatisticsData;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.NodeConnectorStatisticsUpdate;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.flow.capable.node.connector.statistics.FlowCapableNodeConnectorStatistics;
39 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.flow.capable.node.connector.statistics.FlowCapableNodeConnectorStatisticsBuilder;
40 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
41
42 public class NodeConnectorStatNotificationSupplierImplTest {
43
44     private static final String FLOW_NODE_ID = "openflow:111";
45     private static final String FLOW_CODE_CONNECTOR_ID = "test-con-111";
46     private NodeConnectorStatNotificationSupplierImpl notifSupplierImpl;
47     private NotificationProviderService notifProviderService;
48     private DataBroker dataBroker;
49
50     @Before
51     public void initalization() {
52         notifProviderService = mock(NotificationProviderService.class);
53         dataBroker = mock(DataBroker.class);
54         notifSupplierImpl = new NodeConnectorStatNotificationSupplierImpl(notifProviderService, dataBroker);
55         TestSupplierVerifyHelper.verifyDataTreeChangeListenerRegistration(dataBroker);
56     }
57
58     @Test(expected = NullPointerException.class)
59     public void testNullChangeEvent() {
60         notifSupplierImpl.onDataTreeChanged(null);
61     }
62
63     @Test(expected = NullPointerException.class)
64     public void testNullableChangeEvent() {
65         notifSupplierImpl.onDataTreeChanged(TestChangeEventBuildHelper.createNullTestDataTreeEvent());
66     }
67
68     @Test
69     public void testEmptyChangeEvent() {
70         notifSupplierImpl.onDataTreeChanged(TestChangeEventBuildHelper.createEmptyTestDataTreeEvent());
71     }
72
73     @Test
74     public void testCreate() {
75         final NodeConnectorStatisticsUpdate notification = notifSupplierImpl
76                 .createNotification(createTestConnectorStat(), createTestConnectorStatPath());
77         assertNotNull(notification);
78         assertEquals(FLOW_NODE_ID, notification.getId().getValue());
79         assertEquals(FLOW_CODE_CONNECTOR_ID, notification.getNodeConnector().get(0).getId().getValue());
80     }
81
82     @Test
83     public void testCreateChangeEvent() {
84         final TestData testData = new TestData(createTestConnectorStatPath(), null, createTestConnectorStat(),
85                                                DataObjectModification.ModificationType.WRITE);
86         Collection<DataTreeModification<FlowCapableNodeConnectorStatistics>> collection = new ArrayList<>();
87         collection.add(testData);
88         notifSupplierImpl.onDataTreeChanged(collection);
89         verify(notifProviderService, times(1)).publish(any(NodeConnectorStatisticsUpdate.class));
90     }
91
92     @Test(expected = IllegalArgumentException.class)
93     public void testCreateFromNullNodeConnector() {
94         notifSupplierImpl.createNotification(null, createTestConnectorStatPath());
95     }
96
97     @Test(expected = IllegalArgumentException.class)
98     public void testCreateFromNullPath() {
99         notifSupplierImpl.createNotification(createTestConnectorStat(), null);
100     }
101
102     @Test(expected = IllegalArgumentException.class)
103     public void testUpdateFromNullNodeConnector() {
104         notifSupplierImpl.createNotification(null, createTestConnectorStatPath());
105     }
106
107     @Test(expected = IllegalArgumentException.class)
108     public void testUpdateFromNullPath() {
109         notifSupplierImpl.createNotification(createTestConnectorStat(), null);
110     }
111
112     private static InstanceIdentifier<FlowCapableNodeConnectorStatistics> createTestConnectorStatPath() {
113         return InstanceIdentifier.create(Nodes.class).child(Node.class, new NodeKey(new NodeId(FLOW_NODE_ID)))
114                 .child(NodeConnector.class, new NodeConnectorKey(new NodeConnectorId(FLOW_CODE_CONNECTOR_ID)))
115                 .augmentation(FlowCapableNodeConnectorStatisticsData.class)
116                 .child(FlowCapableNodeConnectorStatistics.class);
117     }
118
119     private static FlowCapableNodeConnectorStatistics createTestConnectorStat() {
120         final FlowCapableNodeConnectorStatisticsBuilder builder = new FlowCapableNodeConnectorStatisticsBuilder();
121         return builder.build();
122     }
123 }
124