@@ -35,6 +35,7 @@ ${xpath_success_popup} //*[contains(text(),'Success')]/followi
35
35
${xpath_delete_ipv4_addres } //*[text()='${test_ipv4_addr } ']/following::td[4]
36
36
... //*[@title="Delete IPv4 address"]
37
37
${xpath_delete_button } //*[text()="Delete"]
38
+ ${xpath_eth1_interface } //*[text()="eth1"]
38
39
39
40
${dns_server } 10.10.10.10
40
41
${test_ipv4_addr } 10.7.7.7
@@ -223,12 +224,24 @@ Verify MAC Address Is Displayed
223
224
[Setup] Redfish.Login
224
225
[Teardown] Redfish.Logout
225
226
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 }
229
228
230
229
# 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'] }
232
245
233
246
234
247
Configure Hostname Via GUI And Verify
@@ -415,3 +428,16 @@ Delete IPv4 Address And Verify
415
428
Should Be Equal ${delete_status } ${False }
416
429
417
430
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