From: Alissa Bonas Date: Wed, 25 Dec 2013 13:45:12 +0000 (+0200) Subject: Declare a urlPrefix for reuse in NorthboundIT. X-Git-Tag: jenkins-controller-bulk-release-prepare-only-2-1~122^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=9033401b967fd6e3de4ec2500c209aa46e4a6c05;p=controller.git Declare a urlPrefix for reuse in NorthboundIT. All test cases use the same url prefix, but prior to this patch it was copy pasted in all test methods. For easier code maintenance, declared it once in the class and reused it in all test cases. Change-Id: I4c6430799c935293c7b9715b5b68e84e4baefd3a Signed-off-by: Alissa Bonas --- diff --git a/opendaylight/northbound/integrationtest/src/test/java/org/opendaylight/controller/northbound/integrationtest/NorthboundIT.java b/opendaylight/northbound/integrationtest/src/test/java/org/opendaylight/controller/northbound/integrationtest/NorthboundIT.java index 602de9a1c6..e0ffa4a2df 100644 --- a/opendaylight/northbound/integrationtest/src/test/java/org/opendaylight/controller/northbound/integrationtest/NorthboundIT.java +++ b/opendaylight/northbound/integrationtest/src/test/java/org/opendaylight/controller/northbound/integrationtest/NorthboundIT.java @@ -63,7 +63,7 @@ public class NorthboundIT { private IUserManager userManager = null; private IInventoryListener invtoryListener = null; private IListenTopoUpdates topoUpdates = null; - + private static final String baseUrlPrefix = "http://127.0.0.1:8080/controller/nb/v2/"; private final Boolean debugMsg = false; private String stateToString(int state) { @@ -269,7 +269,7 @@ public class NorthboundIT { @Test public void testSubnetsNorthbound() throws JSONException, ConstructionException { System.out.println("Starting Subnets JAXB client."); - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/subnetservice/"; + String baseURL = baseUrlPrefix + "subnetservice/"; String name1 = "testSubnet1"; String subnet1 = "1.1.1.1/24"; @@ -412,7 +412,7 @@ public class NorthboundIT { @Test public void testStaticRoutingNorthbound() throws JSONException { System.out.println("Starting StaticRouting JAXB client."); - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/staticroute/"; + String baseURL = baseUrlPrefix + "staticroute/"; String name1 = "testRoute1"; String prefix1 = "192.168.1.1/24"; @@ -493,7 +493,7 @@ public class NorthboundIT { @Test public void testSwitchManager() throws JSONException { System.out.println("Starting SwitchManager JAXB client."); - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/switchmanager/default/"; + String baseURL = baseUrlPrefix + "switchmanager/default/"; // define Node/NodeConnector attributes for test int nodeId_1 = 51966; @@ -644,7 +644,7 @@ public class NorthboundIT { "SET_NW_SRC", "SET_NW_DST", "SET_NW_TOS", "SET_TP_SRC", "SET_TP_DST" }; System.out.println("Starting Statistics JAXB client."); - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/statistics/default/"; + String baseURL = baseUrlPrefix + "statistics/default/"; String result = getJsonResult(baseURL + "flow"); JSONTokener jt = new JSONTokener(result); @@ -835,7 +835,7 @@ public class NorthboundIT { @Test public void testFlowProgrammer() throws JSONException { System.out.println("Starting FlowProgrammer JAXB client."); - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/flowprogrammer/default/"; + String baseURL = baseUrlPrefix + "flowprogrammer/default/"; // Attempt to get a flow that doesn't exit. Should return 404 // status. String result = getJsonResult(baseURL + "node/STUB/51966/staticFlow/test1", "GET"); @@ -974,7 +974,7 @@ public class NorthboundIT { Integer nodeConnectorId_2 = 34; String vlan_2 = "123"; - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/hosttracker/default"; + String baseURL = baseUrlPrefix + "hosttracker/default"; // test PUT method: addHost() JSONObject fc_json = new JSONObject(); @@ -1135,7 +1135,7 @@ public class NorthboundIT { @Test public void testTopology() throws JSONException, ConstructionException { System.out.println("Starting Topology JAXB client."); - String baseURL = "http://127.0.0.1:8080/controller/nb/v2/topology/default"; + String baseURL = baseUrlPrefix + "topology/default"; // === test GET method for getTopology() short state_1 = State.EDGE_UP, state_2 = State.EDGE_DOWN;