Added more ignorable files to .gitignore
[ovsdb.git] / plugin / src / test / java / org / opendaylight / ovsdb / plugin / OvsdbTestAddPortIT.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.io.IOException;
13 import java.util.Properties;
14
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.opendaylight.controller.sal.core.Node;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 public class OvsdbTestAddPortIT extends OvsdbTestBase {
22     private static final Logger logger = LoggerFactory
23             .getLogger(OvsdbTestAddPortIT.class);
24     private Properties props;
25
26     @Before
27     public void loadProps() throws IOException {
28         props = loadProperties();
29     }
30
31     @Test
32     public void addPort() throws Throwable{
33         TestObjects testObjects = getTestConnection();
34         ConnectionService connectionService = testObjects.connectionService;
35         Node node = testObjects.node;
36
37         /**
38          * Create a Port and attach it to a Bridge
39          * Ex. ovs-vsctl add-port br0 vif0
40          * @param node Node serving this configuration service
41          * @param bridgeDomainIdentifier String representation of a Bridge Domain
42          * @param portIdentifier String representation of a user defined Port Name
43          */
44         ConfigurationService configurationService = new ConfigurationService();
45         configurationService.setConnectionServiceInternal(connectionService);
46         configurationService.addPort(node, "JUNIT_BRIDGE_TEST", "Jvif0", null);
47     }
48 }