Code ReOrganization and Re-Architecture changes
[ovsdb.git] / plugin / src / test / java / org / opendaylight / ovsdb / plugin / OvsdbTestSetOFControllerIT.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 OvsdbTestSetOFControllerIT extends OvsdbTestBase {
22     private static final Logger logger = LoggerFactory
23             .getLogger(OvsdbTestSetOFControllerIT.class);
24
25     @Test
26     public void setController() 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         configs.put(ConfigConstants.DEST_IP, "192.168.254.1");
33         configs.put(ConfigConstants.CUSTOM, "6633");
34         ConfigurationService configurationService = new ConfigurationService();
35         configurationService.setConnectionServiceInternal(connectionService);
36         configurationService.setBridgeOFController(node, "br0");
37
38     }
39 }