Bug 8293: Add table writer to bulk-o-matic
[openflowplugin.git] / applications / bulk-o-matic / src / test / java / org / opendaylight / openflowplugin / applications / bulk / o / matic / TableWriterTest.java
1 /**
2  * Copyright (c) 2017 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.bulk.o.matic;
10
11 import static org.mockito.Mockito.doReturn;
12
13 import com.google.common.util.concurrent.Futures;
14 import java.util.concurrent.ExecutorService;
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.junit.runner.RunWith;
18 import org.mockito.Matchers;
19 import org.mockito.Mock;
20 import org.mockito.Mockito;
21 import org.mockito.invocation.InvocationOnMock;
22 import org.mockito.runners.MockitoJUnitRunner;
23 import org.mockito.stubbing.Answer;
24 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
25 import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
26 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
27 import org.opendaylight.yangtools.yang.binding.DataObject;
28 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 /**
33  * Test for {@link FlowWriterSequential}.
34  */
35 @RunWith(MockitoJUnitRunner.class)
36 public class TableWriterTest {
37     private static final Logger LOG = LoggerFactory.getLogger(TableWriterTest.class);
38
39     private static final int TABLES_PER_DPN = 100;
40     private static final int DPN_COUNT = 1;
41     private static final short START_TABLE_ID = 0;
42     private static final short END_TABLE_ID = 99;
43
44     @Mock
45     private DataBroker mockDataBroker;
46     @Mock
47     private ExecutorService mockTablePusher;
48     @Mock
49     private WriteTransaction wTx;
50
51     private TableWriter tableWriter;
52
53     @Before
54     public void setUp() throws Exception {
55
56         doReturn(wTx).when(mockDataBroker).newWriteOnlyTransaction();
57         Mockito.when(wTx.submit()).thenReturn(Futures.immediateCheckedFuture(null));
58
59         Mockito.doAnswer(new Answer<Void>() {
60             @Override
61             public Void answer(InvocationOnMock invocation) throws Throwable {
62                 ((Runnable)invocation.getArguments()[0]).run();
63                 return null;
64             }
65         }).when(mockTablePusher).execute(Matchers.<Runnable>any());
66
67         tableWriter = new TableWriter(mockDataBroker, mockTablePusher);
68     }
69     @Test
70     public void testAddTables() throws Exception {
71         tableWriter.addTables(DPN_COUNT, START_TABLE_ID, END_TABLE_ID);
72         Mockito.verify(wTx, Mockito.times(TABLES_PER_DPN)).put(Matchers.<LogicalDatastoreType>any(), Matchers.<InstanceIdentifier<DataObject>>any(), Matchers.<DataObject>any(), Matchers.anyBoolean());
73     }
74
75     @Test
76     public void testDeleteTables() throws Exception {
77         tableWriter.deleteTables(DPN_COUNT, START_TABLE_ID, END_TABLE_ID);
78         Mockito.verify(wTx, Mockito.times(TABLES_PER_DPN)).delete(Matchers.<LogicalDatastoreType>any(), Matchers.<InstanceIdentifier<DataObject>>any());
79     }
80 }