You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds version analytics event (#306)
* Techdebt: adds state for testrun page (#392)
* Fix tests (#397)
* Fix tests
* Update node version
* 331379891: (feat) disable connection settings when testrun is in progress (#371)
* 331379891: (feat) disable connection settings when testrun is in progress
* 331379891: (fix) include more testrun results as progress
* 331379891: (fix) fix spelling
* 333349715: (fix) GAR 1.3 The disabled system settings panel contains a focusable element (#388)
Co-authored-by: Volha Mardvilka <[email protected]>
---------
Co-authored-by: Volha Mardvilka <[email protected]>
* Disable device item if device in progress (#370)
* Adds ga to track testrun initiation (#415)
Adds ga ti track testrun initiation
* Fix function return value (#421)
* Fix redirect + adds google analytics (#420)
* Adds certificates drawer component with list of certificates (#414)
Adds certificates drawer component with list of certificates. Upload and delete is out of scope
* List modules (#425)
* Adds delete certificate (#424)
Adds delete certificate
* Adds class for links to track report type on download; adds event when download report is clicked on progress page (#434)
* Adds upload certificate (#431)
* Adds upload certificate
* move delete functionality to certificates store
* Catch error on report/certificate deletion (#438)
* Fix button size; fix text-overflow (#440)
* Adds focus on next or close button when certificate is deleted (#439)
* Adds focus on next or close button when certificate is deleted
* Enable test modules for initiate test run dialog (#400)
Enable test modules for initiate test run dialog
* Add steps to resolve to PDF report (#411)
* Add progress for steps to resolve
* Formatting
* Remove print statements
* Allow for no steps to resolve
* Add multipage
* Fix multipage
* Fix config
* update report unit tests
---------
Signed-off-by: J Boddey <[email protected]>
Co-authored-by: jhughesbiot <[email protected]>
* Add new mac addr field for report deleting (#432)
* Bump version to v1.2.2 (#433)
* 337012359: (feat) add snackBar with wait or stop testrun (#444)
* 337012359: (feat) add snackBar with wait or stop testrun
* 337012359: (fix) update to fix failed tests
* 337012359: (fix) add fix for deletCertificate test
---------
Co-authored-by: Volha Mardvilka <[email protected]>
* Feature/port stats (#430)
* Add port speed and duplex tests
Add unit tests for port stats testing
Add place holder for ip port link test
* Add ethtool to system dependencies
Restructure conn stats methods and tests
Resolve port stat information for link test
* Fix runtime issue
* Implement link test
Fix unit tests
Misc port stats updates
* fix pylint issues
* update readme
* pylint fixes
---------
Signed-off-by: J Boddey <[email protected]>
Co-authored-by: J Boddey <[email protected]>
* 339315842: (feat) add risk assessment tab (#450)
* 339315842: (feat) add risk assessment tab
* 339315842: (feat) add risk assessment tab
---------
Co-authored-by: Volha Mardvilka <[email protected]>
* Add steps to resolve to PDF report (#411)
* Add progress for steps to resolve
* Formatting
* Remove print statements
* Allow for no steps to resolve
* Add multipage
* Fix multipage
* Fix config
* update report unit tests
---------
Signed-off-by: J Boddey <[email protected]>
Co-authored-by: jhughesbiot <[email protected]>
* Add new mac addr field for report deleting (#432)
* Remove rebase error
---------
Signed-off-by: J Boddey <[email protected]>
Co-authored-by: Olga Mardvilko <[email protected]>
Co-authored-by: Volha Mardvilka <[email protected]>
Co-authored-by: J Boddey <[email protected]>
Co-authored-by: jhughesbiot <[email protected]>
Co-authored-by: jhughesbiot <[email protected]>
| connection.port_link | The network switch port connected to the device has an active link without errors | When the etherent cable is connected to the port, the device triggers the port to its enabled \"Link UP\" (LEDs illuminate on device and switch ports if present) state, and the switch shows no errors with the LEDs and when interrogated with a \"show interface\" command on most network switches. | Required |
18
+
| connection.port_speed | The network switch port connected to the device has auto-negotiated a speed that is 10 Mbps or higher | When the ethernet cable is connected to the port, the device autonegotiates a speed that can be checked with the \"show interface\" command on most network switches. The output of this command must also show that the \"configured speed\" is set to \"auto\". | Required |
19
+
| connection.port_duplex | The network switch port connected to the device has auto-negotiated full-duplex. | When the ethernet cable is connected to the port, the device autonegotiates a full-duplex connection. | Required |
17
20
| connection.dhcp_address | The device under test has received an IP address from the DHCP server and responds to an ICMP echo (ping) request | The device is not set up with a static IP address. The device accepts an IP address from a DHCP server (RFC 2131) and responds successfully to an ICMP echo (ping) request. | Required |
| connection.mac_oui | The device under test has a MAC address prefix that is registered against a known manufacturer. | The MAC address prefix is registered in the IEEE Organizationally Unique Identifier database. | Required |
Copy file name to clipboardExpand all lines: modules/test/conn/conf/module_config.json
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,24 @@
13
13
"timeout": 1800
14
14
},
15
15
"tests": [
16
+
{
17
+
"name": "connection.port_link",
18
+
"test_description": "The network switch port connected to the device has an active link without errors",
19
+
"expected_behavior": "When the etherent cable is connected to the port, the device triggers the port to its enabled \"Link UP\" (LEDs illuminate on device and switch ports if present) state, and the switch shows no errors with the LEDs and when interrogated with a \"show interface\" command on most network switches.",
20
+
"required_result": "Required"
21
+
},
22
+
{
23
+
"name": "connection.port_speed",
24
+
"test_description": "The network switch port connected to the device has auto-negotiated a speed that is 10 Mbps or higher",
25
+
"expected_behavior": "When the ethernet cable is connected to the port, the device autonegotiates a speed that can be checked with the \"show interface\" command on most network switches. The output of this command must also show that the \"configured speed\" is set to \"auto\".",
26
+
"required_result": "Required"
27
+
},
28
+
{
29
+
"name": "connection.port_duplex",
30
+
"test_description": "The network switch port connected to the device has auto-negotiated full-duplex",
31
+
"expected_behavior": "When the ethernet cable is connected to the port, the device autonegotiates a full-duplex connection.",
32
+
"required_result": "Required"
33
+
},
16
34
{
17
35
"name": "connection.switch.arp_inspection",
18
36
"test_description": "The device implements ARP correctly as per RFC826",
0 commit comments