mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-31 18:58:01 +00:00
164 lines
6.0 KiB
Python
Executable File
164 lines
6.0 KiB
Python
Executable File
#!/usr/bin/python3
|
|
|
|
'''
|
|
NAME:
|
|
lf_check.py
|
|
|
|
PURPOSE:
|
|
Configuration for lf_check.py , runs various tests
|
|
|
|
EXAMPLE:
|
|
lf_check.py
|
|
|
|
NOTES:
|
|
|
|
'''
|
|
|
|
import sys
|
|
if sys.version_info[0] != 3:
|
|
print("This script requires Python3")
|
|
exit()
|
|
|
|
import os
|
|
import logging
|
|
import time
|
|
from time import sleep
|
|
import argparse
|
|
import json
|
|
from json import load
|
|
import configparser
|
|
from pprint import *
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
CONFIG_FILE = os.getcwd() + '/lf_check_config.ini'
|
|
RUN_CONDITION = 'ENABLE'
|
|
|
|
# see https://stackoverflow.com/a/13306095/11014343
|
|
class FileAdapter(object):
|
|
def __init__(self, logger):
|
|
self.logger = logger
|
|
def write(self, data):
|
|
# NOTE: data can be a partial line, multiple lines
|
|
data = data.strip() # ignore leading/trailing whitespace
|
|
if data: # non-blank
|
|
self.logger.info(data)
|
|
def flush(self):
|
|
pass # leave it to logging to flush properly
|
|
|
|
|
|
class lf_check():
|
|
def __init__(self):
|
|
self.lf_mgr_ip = ""
|
|
self.lf_mgr_port = ""
|
|
self.radio_dict = {}
|
|
self.test_dict = {}
|
|
path_parent = os.path.dirname(os.getcwd())
|
|
os.chdir(path_parent)
|
|
self.scripts_wd = os.getcwd()
|
|
|
|
|
|
# Functions in this section are/can be overridden by descendants
|
|
def read_config_contents(self):
|
|
print("read_config_contents {}".format(CONFIG_FILE))
|
|
config_file = configparser.ConfigParser()
|
|
success = True
|
|
success = config_file.read(CONFIG_FILE)
|
|
print("{}".format(success))
|
|
print("{}".format(config_file))
|
|
|
|
if 'LF_MGR' in config_file.sections():
|
|
section = config_file['LF_MGR']
|
|
self.lf_mgr_ip = section['LF_MGR_IP']
|
|
self.lf_mgr_port = section['LF_MGR_PORT']
|
|
print("lf_mgr_ip {}".format(self.lf_mgr_ip))
|
|
print("lf_mgr_port {}".format(self.lf_mgr_port))
|
|
|
|
# NOTE: this may need to be a list for ssi
|
|
if 'RADIO_DICTIONARY' in config_file.sections():
|
|
section = config_file['RADIO_DICTIONARY']
|
|
self.radio_dict = json.loads(section.get('RADIO_DICT', self.radio_dict))
|
|
|
|
if 'TEST_DICTIONARY' in config_file.sections():
|
|
section = config_file['TEST_DICTIONARY']
|
|
# for json replace the \n and \r they are invalid json characters, allows for multiple line args
|
|
self.test_dict = json.loads(section.get('TEST_DICT', self.test_dict).replace('\n',' ').replace('\r',' '))
|
|
#print("test_dict {}".format(self.test_dict))
|
|
|
|
def load_factory_default_db(self):
|
|
print("file_wd {}".format(self.scripts_wd))
|
|
try:
|
|
os.chdir(self.scripts_wd)
|
|
print("Current Working Directory {}".format(os.getcwd()))
|
|
except:
|
|
print("failed to change to {}".format(self.scripts_wd))
|
|
|
|
# no spaces after FACTORY_DFLT
|
|
command = "./{} {}".format("scenario.py", "--load FACTORY_DFLT")
|
|
process = subprocess.run((command).split(' '), check= True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True,timeout=20)
|
|
print("###################### STDOUT - scenario load FACTORY_DFLT #########################")
|
|
print(process.stdout)
|
|
print("###################### STDERR - scenario load FACTORY_DFLT #########################")
|
|
print(process.stderr)
|
|
|
|
def run_script_test(self):
|
|
for test in self.test_dict:
|
|
# load the default database
|
|
if self.test_dict[test]['enabled'] == "TRUE":
|
|
# loop through radios
|
|
for radio in self.radio_dict:
|
|
# Replace RADIO, SSID, PASSWD, SECURITY with actual config values (e.g. RADIO_0_CFG to values)
|
|
# not "KEY" is just a word to refer to the RADIO define (e.g. RADIO_0_CFG) to get the vlaues
|
|
if self.radio_dict[radio]["KEY"] in self.test_dict[test]['args']:
|
|
self.test_dict[test]['args'] = self.test_dict[test]['args'].replace(self.radio_dict[radio]["KEY"],'--radio "{}" --ssid "{}" --passwd "{}" --security "{}"'
|
|
.format(self.radio_dict[radio]['RADIO'],self.radio_dict[radio]['SSID'],self.radio_dict[radio]['PASSWD'],self.radio_dict[radio]['SECURITY']))
|
|
# Clear out the database
|
|
self.load_factory_default_db()
|
|
|
|
# CMR this is just to get the directory with the scripts to run.
|
|
print("file_wd {}".format(self.scripts_wd))
|
|
try:
|
|
os.chdir(self.scripts_wd)
|
|
print("Current Working Directory {}".format(os.getcwd()))
|
|
except:
|
|
print("failed to change to {}".format(self.scripts_wd))
|
|
cmd_args = "{}".format(self.test_dict[test]['args'])
|
|
command = "./{} {}".format(self.test_dict[test]['command'], cmd_args)
|
|
#command = "{}/{}".format(scripts_wd,self.test_dict[test]['command'])
|
|
# cmd_args = "{}".format(self.test_dict[test]['args'])
|
|
print("command: {}".format(command))
|
|
print("cmd_args {}".format(cmd_args))
|
|
|
|
# Put lanforge in known state
|
|
|
|
#try:
|
|
process = subprocess.run((command).split(' '), check= True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True,timeout=120)
|
|
#process = subprocess.run((command).split(' '), check= True, capture_output=True )
|
|
#pss1 = process.stdout.decode('utf-8', 'ignore')
|
|
#print(pss1)
|
|
|
|
|
|
print("###################### STDOUT #########################")
|
|
print(process.stdout)
|
|
print("###################### STDERR #########################")
|
|
print(process.stderr)
|
|
#except:
|
|
# print("exception on command: {}".format(command))
|
|
|
|
|
|
def main():
|
|
check = lf_check()
|
|
|
|
#check.parse_ap_stats()
|
|
check.read_config_contents() # CMR need mode to just print out the test config and not run
|
|
|
|
|
|
check.run_script_test()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|
|
|