ddaa0e68a81da51b34db5d683f889d68ce38a27e
[openflowplugin.git] / applications / forwardingrules-manager / src / test / java / test / mock / TableFeaturesListenerTest.java
1 /**
2  * Copyright (c) 2014 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 test.mock;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.util.List;
13 import org.junit.After;
14 import org.junit.Before;
15 import org.junit.Test;
16 import org.junit.runner.RunWith;
17 import org.mockito.Mock;
18 import org.mockito.Mockito;
19 import org.mockito.runners.MockitoJUnitRunner;
20 import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
21 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
22 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
23 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
24 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider;
25 import org.opendaylight.openflowplugin.applications.frm.impl.DeviceMastershipManager;
26 import org.opendaylight.openflowplugin.applications.frm.impl.ForwardingRulesManagerImpl;
27 import org.opendaylight.openflowplugin.applications.reconciliation.ReconciliationManager;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.TableKey;
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.nodes.Node;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.UpdateTableInput;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.features.TableFeatures;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.features.TableFeaturesBuilder;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.features.TableFeaturesKey;
38 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
39 import test.mock.util.FRMTest;
40 import test.mock.util.RpcProviderRegistryMock;
41 import test.mock.util.SalTableServiceMock;
42
43 @RunWith(MockitoJUnitRunner.class)
44 public class TableFeaturesListenerTest extends FRMTest {
45     private ForwardingRulesManagerImpl forwardingRulesManager;
46     private static final NodeId NODE_ID = new NodeId("testnode:1");
47     private static final NodeKey NODE_KEY = new NodeKey(NODE_ID);
48     RpcProviderRegistry rpcProviderRegistryMock = new RpcProviderRegistryMock();
49     @Mock
50     ClusterSingletonServiceProvider clusterSingletonService;
51     @Mock
52     DeviceMastershipManager deviceMastershipManager;
53     @Mock
54     private NotificationProviderService notificationService;
55     @Mock
56     private ReconciliationManager reconciliationManager;
57
58     @Before
59     public void setUp() {
60         forwardingRulesManager = new ForwardingRulesManagerImpl(getDataBroker(), rpcProviderRegistryMock, getConfig(),
61                 clusterSingletonService, notificationService, getConfigurationService(), reconciliationManager);
62
63         forwardingRulesManager.start();
64         // TODO consider tests rewrite (added because of complicated access)
65         forwardingRulesManager.setDeviceMastershipManager(deviceMastershipManager);
66         Mockito.when(deviceMastershipManager.isDeviceMastered(NODE_ID)).thenReturn(true);
67     }
68
69     @Test
70     public void updateFlowTest() {
71         TableKey tableKey = new TableKey((short) 2);
72         TableFeaturesKey tableFeaturesKey = new TableFeaturesKey(tableKey.getId());
73
74         addTable(tableKey, NODE_KEY);
75
76         TableFeatures tableFeaturesData = new TableFeaturesBuilder().setKey(tableFeaturesKey).build();
77         InstanceIdentifier<TableFeatures> tableFeaturesII = InstanceIdentifier.create(Nodes.class)
78                 .child(Node.class, NODE_KEY).augmentation(FlowCapableNode.class)
79                 .child(TableFeatures.class, tableFeaturesKey);
80         WriteTransaction writeTx = getDataBroker().newWriteOnlyTransaction();
81         writeTx.put(LogicalDatastoreType.CONFIGURATION, tableFeaturesII, tableFeaturesData);
82         assertCommit(writeTx.submit());
83
84         tableFeaturesData = new TableFeaturesBuilder().setKey(tableFeaturesKey).setName("dummy name").build();
85         writeTx = getDataBroker().newWriteOnlyTransaction();
86         writeTx.put(LogicalDatastoreType.CONFIGURATION, tableFeaturesII, tableFeaturesData);
87         assertCommit(writeTx.submit());
88
89         SalTableServiceMock salTableServiceMock = (SalTableServiceMock) forwardingRulesManager.getSalTableService();
90         List<UpdateTableInput> updateTableInputs = salTableServiceMock.getUpdateTableInput();
91         assertEquals(1, updateTableInputs.size());
92         assertEquals("DOM-0", updateTableInputs.get(0).getTransactionUri().getValue());
93     }
94
95     @After
96     public void tearDown() throws Exception {
97         forwardingRulesManager.close();
98     }
99 }