Fix fileEncoding violations for checkstyle
[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.Map;
12
13 import org.junit.Ignore;
14 import org.opendaylight.groupbasedpolicy.renderer.ofoverlay.OfWriter;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
17 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
18
19 public class FlowTableTest extends OfTableTest {
20     protected FlowTable table;
21     InstanceIdentifier<Table> tiid;
22
23     protected void setup() throws Exception {
24         tiid = FlowUtils.createTablePath(nodeId,
25                                          table.getTableId());
26     }
27
28     @Ignore
29     protected OfWriter dosync(Map<String, Flow> flows) throws Exception {
30         OfWriter ofWriter = new OfWriter();
31         if (flows != null) {
32             for (String key : flows.keySet()) {
33                 Flow flow = flows.get(key);
34                 if (flow != null) {
35                     ofWriter.writeFlow(nodeId, flow.getTableId(), flow);
36                 }
37             }
38         }
39         //table.sync(NODE_ID, ofWriter);
40         return ofWriter;
41     }
42 }