make Honeynode and tox scripts BSD compatible
[transportpce.git] / tests / transportpce_tests / 1.2.1 / test_utils.py
index 12e6d2f5a1bd58a9f8d051878901bccb9ce555fc..5d9aacf59bdb3c53196ba0e151b427bb3b73c12d 100644 (file)
@@ -8,7 +8,7 @@ def start_xpdra_honeynode():
         with open('honeynode1.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17830", "sample_configs/openroadm/1.2.1/oper-XPDRA.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_roadma_full_honeynode():
     executable = ("./honeynode/1.2.1/honeynode-distribution/target/honeynode-distribution-1.19.04-hc"
@@ -17,7 +17,7 @@ def start_roadma_full_honeynode():
         with open('honeynode2.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17821", "sample_configs/openroadm/1.2.1/oper-ROADMA-full.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_roadma_honeynode():
     executable = ("./honeynode/1.2.1/honeynode-distribution/target/honeynode-distribution-1.19.04-hc"
@@ -26,7 +26,7 @@ def start_roadma_honeynode():
         with open('honeynode2.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17831", "sample_configs/openroadm/1.2.1/oper-ROADMA.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_roadmb_honeynode():
     executable = ("./honeynode/1.2.1/honeynode-distribution/target/honeynode-distribution-1.19.04-hc"
@@ -35,7 +35,7 @@ def start_roadmb_honeynode():
         with open('honeynode3.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17832", "sample_configs/openroadm/1.2.1/oper-ROADMB.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_roadmc_full_honeynode():
     executable = ("./honeynode/1.2.1/honeynode-distribution/target/honeynode-distribution-1.19.04-hc"
@@ -44,7 +44,7 @@ def start_roadmc_full_honeynode():
         with open('honeynode3.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17823", "sample_configs/openroadm/1.2.1/oper-ROADMC-full.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_roadmc_honeynode():
     executable = ("./honeynode/1.2.1/honeynode-distribution/target/honeynode-distribution-1.19.04-hc"
@@ -53,7 +53,7 @@ def start_roadmc_honeynode():
         with open('honeynode4.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17833", "sample_configs/openroadm/1.2.1/oper-ROADMC.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_xpdrc_honeynode():
     executable = ("./honeynode/1.2.1/honeynode-distribution/target/honeynode-distribution-1.19.04-hc"
@@ -62,7 +62,7 @@ def start_xpdrc_honeynode():
         with open('honeynode4.log', 'w') as outfile:
             return subprocess.Popen(
                 [executable, "17834", "sample_configs/openroadm/1.2.1/oper-XPDRC.xml"],
-                stdout=outfile)
+                stdout=outfile, stderr=outfile)
 
 def start_tpce():
     if "USE_LIGHTY" in os.environ and os.environ['USE_LIGHTY'] == 'True':
@@ -70,12 +70,12 @@ def start_tpce():
         executable = "../lighty/target/lighty-transportpce-12.0.0-SNAPSHOT/clean-start-controller.sh"
         with open('odl.log', 'w') as outfile:
             return subprocess.Popen(
-                ["bash", executable], stdout=outfile,
+                ["sh", executable], stdout=outfile, stderr=outfile,
                 stdin=open(os.devnull))
     else:
         print ("starting KARAF TransportPCE build...")
         executable = "../karaf/target/assembly/bin/karaf"
         with open('odl.log', 'w') as outfile:
             return subprocess.Popen(
-                ["bash", executable, "server"], stdout=outfile,
+                ["sh", executable, "server"], stdout=outfile, stderr=outfile,
                 stdin=open(os.devnull))