Separating renderers into features.
[groupbasedpolicy.git] / renderers / ofoverlay / src / test / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / flow / FlowTableTest.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
9 package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.flow;
10
11 import java.util.Collections;
12 import java.util.Map;
13
14 import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction;
15 import org.opendaylight.groupbasedpolicy.renderer.ofoverlay.flow.FlowTable.FlowCtx;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
17 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
18
19 import static org.mockito.Mockito.*;
20
21 public class FlowTableTest extends OfTableTest {
22     FlowTable table;
23     InstanceIdentifier<Table> tiid;
24
25     protected void setup() throws Exception {
26         tiid = FlowUtils.createTablePath(nodeId, 
27                                          table.getTableId());
28     }
29
30     protected ReadWriteTransaction dosync(Map<String, FlowCtx> flowMap) 
31               throws Exception {
32         ReadWriteTransaction t = mock(ReadWriteTransaction.class);
33         if (flowMap == null)
34             flowMap = Collections.emptyMap();
35         table.sync(t, tiid, flowMap, nodeId, policyResolver.getCurrentPolicy(), 
36                    null);
37         return t;
38     }
39 }