mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-11-04 04:38:02 +00:00 
			
		
		
		
	Updated docstrings to fit with standards
This commit is contained in:
		@@ -1,13 +1,14 @@
 | 
			
		||||
#!/usr/bin/env python3
 | 
			
		||||
 | 
			
		||||
"""
 | 
			
		||||
  - This script will create a variable number of stations each with their own set of cross-connects and endpoints.
 | 
			
		||||
    It will then create layer 3 traffic over a specified amount of time, testing for increased traffic at regular intervals.
 | 
			
		||||
    This test will pass if all stations increase traffic over the full test duration.
 | 
			
		||||
  - Use './test_ipv4_variable_time.py --help' to see command line usage and options
 | 
			
		||||
  - Copyright 2021 Candela Technologies Inc
 | 
			
		||||
  - License: Free to distribute and modify. LANforge systems must be licensed.
 | 
			
		||||
  - See cookbook here: https://www.candelatech.com/....?
 | 
			
		||||
"""test_ipv4_variable_time.py will create stations and endpoints to generate and verify layer-3 traffic.
 | 
			
		||||
 | 
			
		||||
This script will create a variable number of stations each with their own set of cross-connects and endpoints.
 | 
			
		||||
It will then create layer 3 traffic over a specified amount of time, testing for increased traffic at regular intervals.
 | 
			
		||||
This test will pass if all stations increase traffic over the full test duration.
 | 
			
		||||
 | 
			
		||||
Use './test_ipv4_variable_time.py --help' to see command line usage and options
 | 
			
		||||
Copyright 2021 Candela Technologies Inc
 | 
			
		||||
License: Free to distribute and modify. LANforge systems must be licensed.
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
import sys
 | 
			
		||||
 
 | 
			
		||||
@@ -1,12 +1,14 @@
 | 
			
		||||
#!/usr/bin/env python3
 | 
			
		||||
 | 
			
		||||
"""
 | 
			
		||||
  - Script for creating a variable number of stations and attempting to connect them to an SSID using IPv6.
 | 
			
		||||
    A test will run to verify stations are associated and get an IP, if these conditions are both true, the test will
 | 
			
		||||
    pass, otherwise, the test will fail.
 | 
			
		||||
  - Use './test_ipv6_connection.py --help' to see command line usage and options
 | 
			
		||||
  - Copyright 2021 Candela Technologies Inc
 | 
			
		||||
  - License: Free to distribute and modify. LANforge systems must be licensed.
 | 
			
		||||
"""test_ipv6_connection.py will create stations and attempt to connect to an SSID using IPv6. WPA, WPA2, WPA3, WEP, and Open connection types are supported
 | 
			
		||||
 | 
			
		||||
Script for creating a variable number of stations and attempting to connect them to an SSID using IPv6.
 | 
			
		||||
A test will run to verify stations are associated and get an IP, if these conditions are both true, the test will
 | 
			
		||||
pass, otherwise, the test will fail.
 | 
			
		||||
 | 
			
		||||
Use './test_ipv6_connection.py --help' to see command line usage and options
 | 
			
		||||
Copyright 2021 Candela Technologies Inc
 | 
			
		||||
License: Free to distribute and modify. LANforge systems must be licensed.
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
import sys
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user