Skip to content

Commit fc9cfb4

Browse files
Added new testcase for GUI network
Changes: - Added testcase "Verify Able To Click On Eth1 Interface" - Added Keyword "Get Network Interface Details" Tested: - Ran successfully test_network_sub_menu.robot Change-Id: I3b70e1f40993d11598374378ca794ecf252088ef Signed-off-by: Anvesh-Kumar_Rayankula <[email protected]>
1 parent 5a4a296 commit fc9cfb4

File tree

1 file changed

+30
-4
lines changed

1 file changed

+30
-4
lines changed

gui/gui_test/settings_menu/test_network_sub_menu.robot

+30-4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ ${xpath_success_popup} //*[contains(text(),'Success')]/followi
3535
${xpath_delete_ipv4_addres} //*[text()='${test_ipv4_addr}']/following::td[4]
3636
... //*[@title="Delete IPv4 address"]
3737
${xpath_delete_button} //*[text()="Delete"]
38+
${xpath_eth1_interface} //*[text()="eth1"]
3839

3940
${dns_server} 10.10.10.10
4041
${test_ipv4_addr} 10.7.7.7
@@ -223,12 +224,24 @@ Verify MAC Address Is Displayed
223224
[Setup] Redfish.Login
224225
[Teardown] Redfish.Logout
225226

226-
${active_channel_config}= Get Active Channel Config
227-
${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
228-
${resp}= redfish.Get ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
227+
${network_details}= Get Network Interface Details ${CHANNEL_NUMBER}
229228

230229
# Verify the MAC address on GUI.
231-
Page Should Contain ${resp.dict['MACAddress']}
230+
Page Should Contain ${network_details['MACAddress']}
231+
232+
233+
Verify MAC Address On Eth1 Interface
234+
[Documentation] Verify MAC address on eth1 interface.
235+
[Tags] Verify_MAC_Address_On_Eth1_Interface
236+
[Setup] Redfish.Login
237+
[Teardown] Redfish.Logout
238+
239+
Click Element ${xpath_eth1_interface}
240+
241+
${network_details}= Get Network Interface Details ${SECONDARY_CHANNEL_NUMBER}
242+
243+
# Verify eth1 interface MAC address on GUI.
244+
Page Should Contain ${network_details['MACAddress']}
232245

233246

234247
Configure Hostname Via GUI And Verify
@@ -415,3 +428,16 @@ Delete IPv4 Address And Verify
415428
Should Be Equal ${delete_status} ${False}
416429

417430
Wait Until Page Does Not Contain ${ip_addr}
431+
432+
433+
Get Network Interface Details
434+
[Documentation] Get network interface details.
435+
[Arguments] ${channel_number}
436+
437+
# Description of argument(s):
438+
# channel_number Interface Channel Number(eg.eth0 or eth1).
439+
440+
${active_channel_config}= Get Active Channel Config
441+
${ethernet_interface}= Set Variable ${active_channel_config['${channel_number}']['name']}
442+
${resp}= redfish.Get ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
443+
RETURN ${resp.dict}

0 commit comments

Comments
 (0)