d8891f91e65307ff7b0354b2e68cc36f957bfbe1
[netvirt.git] / ovsdb / src / test / java / org / opendaylight / ovsdb / plugin / OvsdbTestBridgeConfigIT.java
1 /*
2  * [[ Authors will Fill in the Copyright header ]]
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  * Authors : Brent Salisbury, Hugo Trippaers
9  */
10 package org.opendaylight.ovsdb.plugin;
11
12 import java.util.HashMap;
13 import java.util.Map;
14
15 import org.junit.Test;
16 import org.opendaylight.controller.sal.core.Node;
17 import org.opendaylight.controller.sal.networkconfig.bridgedomain.ConfigConstants;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 public class OvsdbTestBridgeConfigIT extends OvsdbTestBase {
22     private static final Logger logger = LoggerFactory
23             .getLogger(OvsdbTestSetManagerIT.class);
24
25     @Test
26     public void setBridgeConfig() throws Throwable{
27         TestObjects testObjects = getTestConnection();
28         ConnectionService connectionService = testObjects.connectionService;
29         Node node = testObjects.node;
30
31         Map<ConfigConstants, Object> configs = new HashMap<ConfigConstants, Object>();
32
33         Map<String, String> exterIDPairs = new HashMap<String, String>();
34         exterIDPairs.put("br-foo", "br-bar");
35         //Will accept multiple array pairs. Pairs must be arrays not maps.
36         configs.put(ConfigConstants.CUSTOM, exterIDPairs);
37
38         ConfigurationService configurationService = new ConfigurationService();
39         configurationService.setConnectionServiceInternal(connectionService);
40         configurationService.addBridgeDomainConfig(node, BRIDGE_NAME, configs);
41     }
42
43 }