mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-11-03 20:27:54 +00:00 
			
		
		
		
	Added station and cx creation
This commit is contained in:
		
							
								
								
									
										79
									
								
								py-scripts/test_ipv4_variable_time.py
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
									
										79
									
								
								py-scripts/test_ipv4_variable_time.py
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							@@ -14,17 +14,84 @@ from LANforge.lfcli_base import LFCliBase
 | 
				
			|||||||
from LANforge.LFUtils import *
 | 
					from LANforge.LFUtils import *
 | 
				
			||||||
import realm
 | 
					import realm
 | 
				
			||||||
import time
 | 
					import time
 | 
				
			||||||
 | 
					import datetime
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class IPV4VariableTime(LFCliBase):
 | 
					class IPV4VariableTime(LFCliBase):
 | 
				
			||||||
    def __init__(self):
 | 
					    def __init__(self, host, port, ssid, security, password, num_stations, prefix="00000", test_duration="5m",
 | 
				
			||||||
        self.local_realm = realm.Realm()
 | 
					                 _debug_on=False,
 | 
				
			||||||
    def run_test(self): pass
 | 
					                 _exit_on_error=False,
 | 
				
			||||||
    def cleanup(self): pass
 | 
					                 _exit_on_fail=False):
 | 
				
			||||||
 | 
					        super().__init__(host, port, _debug=_debug_on, _halt_on_error=_exit_on_error, _exit_on_fail=_exit_on_fail)
 | 
				
			||||||
 | 
					        self.host = host
 | 
				
			||||||
 | 
					        self.port = port
 | 
				
			||||||
 | 
					        self.ssid = ssid
 | 
				
			||||||
 | 
					        self.security = security
 | 
				
			||||||
 | 
					        self.password = password
 | 
				
			||||||
 | 
					        self.num_stations = num_stations
 | 
				
			||||||
 | 
					        self.prefix = prefix
 | 
				
			||||||
 | 
					        self.local_realm = realm.Realm(lfclient_host=self.host, lfclient_port=self.port)
 | 
				
			||||||
 | 
					        self.station_profile = realm.StationProfile(self.lfclient_url, ssid=self.ssid, ssid_pass=self.password,
 | 
				
			||||||
 | 
					                                                    security=self.security, prefix=self.prefix, mode=0, up=True,
 | 
				
			||||||
 | 
					                                                    dhcp=True,
 | 
				
			||||||
 | 
					                                                    debug_=False)
 | 
				
			||||||
 | 
					        self.cx_profile = self.local_realm.new_l3_cx_profile()
 | 
				
			||||||
 | 
					        self.test_duration = test_duration
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def run_test(self):
 | 
				
			||||||
 | 
					        cur_time = datetime.datetime.now()
 | 
				
			||||||
 | 
					        end_time = self.local_realm.parse_time(self.test_duration) + cur_time
 | 
				
			||||||
 | 
					        while cur_time != end_time:
 | 
				
			||||||
 | 
					            cur_time = datetime.datetime.now()
 | 
				
			||||||
 | 
					            # Run test
 | 
				
			||||||
 | 
					            time.sleep(1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def cleanup(self):
 | 
				
			||||||
 | 
					        port_list = self.local_realm.station_list()
 | 
				
			||||||
 | 
					        sta_list = []
 | 
				
			||||||
 | 
					        for item in list(port_list):
 | 
				
			||||||
 | 
					            # print(list(item))
 | 
				
			||||||
 | 
					            if "sta" in list(item)[0]:
 | 
				
			||||||
 | 
					                sta_list.append(self.local_realm.name_to_eid(list(item)[0])[2])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        for sta_name in sta_list:
 | 
				
			||||||
 | 
					            req_url = "cli-json/rm_vlan"
 | 
				
			||||||
 | 
					            data = {
 | 
				
			||||||
 | 
					                "shelf": 1,
 | 
				
			||||||
 | 
					                "resource": 1,
 | 
				
			||||||
 | 
					                "port": sta_name
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					            # print(data)
 | 
				
			||||||
 | 
					            super().json_post(req_url, data)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def run(self):
 | 
					    def run(self):
 | 
				
			||||||
        print(self.local_realm.parse_time("10m"))
 | 
					        super().clear_test_results()
 | 
				
			||||||
 | 
					        print("Cleaning up old stations")
 | 
				
			||||||
 | 
					        self.cleanup()
 | 
				
			||||||
 | 
					        sta_list = []
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        self.station_profile.use_wpa2(True, self.ssid, self.password)
 | 
				
			||||||
 | 
					        self.station_profile.set_prefix(self.prefix)
 | 
				
			||||||
 | 
					        print("Creating stations")
 | 
				
			||||||
 | 
					        self.station_profile.create(resource=1, radio="wiphy0", num_stations=self.num_stations, debug=False)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        for name in list(self.local_realm.station_list()):
 | 
				
			||||||
 | 
					            if "sta" in list(name)[0]:
 | 
				
			||||||
 | 
					                sta_list.append(list(name)[0])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        print("sta_list", sta_list)
 | 
				
			||||||
 | 
					        self.cx_profile.create(endp_type="lf_udp", side_a=sta_list, side_b="1.eth1", sleep_time=.5)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def main():
 | 
					def main():
 | 
				
			||||||
    ip_var_test = IPV4VariableTime()
 | 
					    lfjson_host = "localhost"
 | 
				
			||||||
 | 
					    lfjson_port = 8080
 | 
				
			||||||
 | 
					    ip_var_test = IPV4VariableTime(lfjson_host, lfjson_port, prefix="00", ssid="jedway-wpa2-x2048-4-4",
 | 
				
			||||||
 | 
					                                   password="jedway-wpa2-x2048-4-4",
 | 
				
			||||||
 | 
					                                   security="open", num_stations=1)
 | 
				
			||||||
    ip_var_test.run()
 | 
					    ip_var_test.run()
 | 
				
			||||||
 | 
					    ip_var_test.cleanup()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if __name__ == "__main__":
 | 
					if __name__ == "__main__":
 | 
				
			||||||
    main()
 | 
					    main()
 | 
				
			||||||
		Reference in New Issue
	
	Block a user