mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-20 20:14:57 +00:00
sta_connect2: Cleanup whitespace
Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
@@ -15,7 +15,6 @@ if sys.version_info[0] != 3:
|
|||||||
print("This script requires Python 3")
|
print("This script requires Python 3")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
|
|
||||||
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
|
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
|
||||||
|
|
||||||
LFUtils = importlib.import_module("py-json.LANforge.LFUtils")
|
LFUtils = importlib.import_module("py-json.LANforge.LFUtils")
|
||||||
@@ -181,7 +180,8 @@ class StaConnect2(LFCliBase):
|
|||||||
for security in extra_securities:
|
for security in extra_securities:
|
||||||
self.station_profile.add_security_extra(security=security)
|
self.station_profile.add_security_extra(security=security)
|
||||||
print("Adding new stations ", end="")
|
print("Adding new stations ", end="")
|
||||||
self.station_profile.create(radio=self.radio, sta_names_=self.station_names, up_=False, debug=self.debug, suppress_related_commands_=True)
|
self.station_profile.create(radio=self.radio, sta_names_=self.station_names, up_=False, debug=self.debug,
|
||||||
|
suppress_related_commands_=True)
|
||||||
LFUtils.wait_until_ports_appear(self.lfclient_url, self.station_names, debug=self.debug)
|
LFUtils.wait_until_ports_appear(self.lfclient_url, self.station_names, debug=self.debug)
|
||||||
|
|
||||||
# Create UDP endpoints
|
# Create UDP endpoints
|
||||||
@@ -299,7 +299,8 @@ class StaConnect2(LFCliBase):
|
|||||||
# self.test_results.append("PASSED: )
|
# self.test_results.append("PASSED: )
|
||||||
# print("PASSED: Connected to BSSID: "+ap)
|
# print("PASSED: Connected to BSSID: "+ap)
|
||||||
else:
|
else:
|
||||||
self._fail("%s connected to wrong BSSID, requested: %s Actual: %s" % (sta_name, self.dut_bssid, ap))
|
self._fail(
|
||||||
|
"%s connected to wrong BSSID, requested: %s Actual: %s" % (sta_name, self.dut_bssid, ap))
|
||||||
else:
|
else:
|
||||||
self._fail(sta_name + " did not connect to AP")
|
self._fail(sta_name + " did not connect to AP")
|
||||||
return False
|
return False
|
||||||
@@ -352,7 +353,6 @@ class StaConnect2(LFCliBase):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.error(e)
|
self.error(e)
|
||||||
|
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
# stop cx traffic
|
# stop cx traffic
|
||||||
print("Stopping CX Traffic")
|
print("Stopping CX Traffic")
|
||||||
@@ -388,6 +388,7 @@ class StaConnect2(LFCliBase):
|
|||||||
curr_endp_names.append(endp_names[1])
|
curr_endp_names.append(endp_names[1])
|
||||||
removeEndps(self.lfclient_url, curr_endp_names, debug=self.debug)
|
removeEndps(self.lfclient_url, curr_endp_names, debug=self.debug)
|
||||||
|
|
||||||
|
|
||||||
# ~class
|
# ~class
|
||||||
|
|
||||||
|
|
||||||
@@ -420,11 +421,14 @@ Example:
|
|||||||
parser.add_argument("--dut_bssid", type=str, help="DUT BSSID to which we expect to connect.")
|
parser.add_argument("--dut_bssid", type=str, help="DUT BSSID to which we expect to connect.")
|
||||||
parser.add_argument("--debug", type=str, help="enable debugging")
|
parser.add_argument("--debug", type=str, help="enable debugging")
|
||||||
parser.add_argument("--prefix", type=str, help="Station prefix. Default: 'sta'", default='sta')
|
parser.add_argument("--prefix", type=str, help="Station prefix. Default: 'sta'", default='sta')
|
||||||
parser.add_argument("--bringup_time", type=int, help="Seconds to wait for stations to associate and aquire IP. Default: 300", default=300)
|
parser.add_argument("--bringup_time", type=int,
|
||||||
|
help="Seconds to wait for stations to associate and aquire IP. Default: 300", default=300)
|
||||||
parser.add_argument('--influx_user', help='Username for your Influx database', default=None)
|
parser.add_argument('--influx_user', help='Username for your Influx database', default=None)
|
||||||
parser.add_argument('--influx_passwd', help='Password for your Influx database', default=None)
|
parser.add_argument('--influx_passwd', help='Password for your Influx database', default=None)
|
||||||
parser.add_argument('--influx_db', help='Name of your Influx database', default=None)
|
parser.add_argument('--influx_db', help='Name of your Influx database', default=None)
|
||||||
parser.add_argument('--influx_host', help='Host of your influx database if different from the system you are running on', default='localhost')
|
parser.add_argument('--influx_host',
|
||||||
|
help='Host of your influx database if different from the system you are running on',
|
||||||
|
default='localhost')
|
||||||
parser.add_argument('--monitor_interval', help='How frequently you want to append to your database', default='5s')
|
parser.add_argument('--monitor_interval', help='How frequently you want to append to your database', default='5s')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
@@ -492,6 +496,7 @@ Example:
|
|||||||
|
|
||||||
staConnect.cleanup()
|
staConnect.cleanup()
|
||||||
|
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user