blob: ae59298460bd371bcb86b8da86677ee13b4003b7 [file] [log] [blame]
Prashanth Kattif58cce02019-02-06 03:05:14 -06001*** Settings ***
2Documentation Network interface configuration and verification
3 ... tests.
4
George Keishing5d467552019-02-08 23:30:48 -06005Resource ../../lib/bmc_redfish_resource.robot
6Resource ../../lib/bmc_network_utils.robot
7Resource ../../lib/openbmc_ffdc.robot
Prashanth Katti747ce9d2019-02-07 07:23:48 -06008Library ../../lib/bmc_network_utils.py
Vijayde3bf7b2019-04-16 04:56:09 -05009Library Collections
Prashanth Kattif58cce02019-02-06 03:05:14 -060010
aravinth0510ca054ee2022-06-16 13:26:15 +000011Suite Setup Suite Setup Execution
12Suite Teardown Suite Teardown Execution
13Test Setup Test Setup Execution
14Test Teardown Test Teardown Execution
Prashanth Kattif58cce02019-02-06 03:05:14 -060015
Prashanth Kattif34fafa2019-06-20 05:04:40 -050016Force Tags Network_Conf_Test
17
Prashanth Katti23efc6e2019-03-13 06:07:15 -050018*** Variables ***
Vijayde3bf7b2019-04-16 04:56:09 -050019${test_hostname} openbmc
20${test_ipv4_addr} 10.7.7.7
21${test_ipv4_invalid_addr} 0.0.1.a
22${test_subnet_mask} 255.255.0.0
Prashanth Kattib36a7522019-05-22 05:32:39 -050023${broadcast_ip} 10.7.7.255
24${loopback_ip} 127.0.0.2
25${multicast_ip} 224.6.6.6
26${out_of_range_ip} 10.7.7.256
Prashanth Katti568df5f2020-05-15 06:00:37 -050027${test_ipv4_addr2} 10.7.7.8
Prashanth Katti23efc6e2019-03-13 06:07:15 -050028
George Keishing16b3c7b2021-01-28 09:23:37 -060029# Valid netmask is 4 bytes long and has continuous block of 1s.
Prashanth Katti040c8c12019-05-31 04:42:05 -050030# Maximum valid value in each octet is 255 and least value is 0.
31# 253 is not valid, as binary value is 11111101.
32${invalid_netmask} 255.255.253.0
33${alpha_netmask} ff.ff.ff.ff
34# Maximum value of octet in netmask is 255.
35${out_of_range_netmask} 255.256.255.0
36${more_byte_netmask} 255.255.255.0.0
37${less_byte_netmask} 255.255.255
Prashanth Kattic6ad6472019-06-14 03:33:39 -050038${threshold_netmask} 255.255.255.255
39${lowest_netmask} 128.0.0.0
40
41# There will be 4 octets in IP address (e.g. xx.xx.xx.xx)
42# but trying to configure xx.xx.xx
43${less_octet_ip} 10.3.36
44
45# For the address 10.6.6.6, the 10.6.6.0 portion describes the
46# network ID and the 6 describe the host.
47
48${network_id} 10.7.7.0
49${hex_ip} 0xa.0xb.0xc.0xd
50${negative_ip} 10.-7.-7.7
Prashanth Katti7098c972019-07-03 06:56:42 -050051@{static_name_servers} 10.5.5.5
Prashanth Katti3c7b6432019-07-26 06:53:37 -050052@{null_value} null
Prashanth Kattiafe16b72019-08-02 00:29:45 -050053@{empty_dictionary} {}
54@{string_value} aa.bb.cc.dd
55
Prashanth Kattif58cce02019-02-06 03:05:14 -060056*** Test Cases ***
57
58Get IP Address And Verify
59 [Documentation] Get IP Address And Verify.
George Keishing5d467552019-02-08 23:30:48 -060060 [Tags] Get_IP_Address_And_Verify
Prashanth Kattif58cce02019-02-06 03:05:14 -060061
Sushil Singh50621142020-06-16 11:12:21 -050062 FOR ${network_configuration} IN @{network_configurations}
63 Verify IP On BMC ${network_configuration['Address']}
64 END
Prashanth Katti747ce9d2019-02-07 07:23:48 -060065
Prashanth Kattif58cce02019-02-06 03:05:14 -060066Get Netmask And Verify
67 [Documentation] Get Netmask And Verify.
George Keishing5d467552019-02-08 23:30:48 -060068 [Tags] Get_Netmask_And_Verify
Prashanth Kattif58cce02019-02-06 03:05:14 -060069
Sushil Singh50621142020-06-16 11:12:21 -050070 FOR ${network_configuration} IN @{network_configurations}
71 Verify Netmask On BMC ${network_configuration['SubnetMask']}
72 END
Prashanth Katti747ce9d2019-02-07 07:23:48 -060073
Prashanth Katti2ec9d8b2019-02-12 05:20:19 -060074Get Gateway And Verify
75 [Documentation] Get gateway and verify it's existence on the BMC.
76 [Tags] Get_Gateway_And_Verify
77
Sushil Singh50621142020-06-16 11:12:21 -050078 FOR ${network_configuration} IN @{network_configurations}
79 Verify Gateway On BMC ${network_configuration['Gateway']}
80 END
Prashanth Katti2ec9d8b2019-02-12 05:20:19 -060081
82Get MAC Address And Verify
83 [Documentation] Get MAC address and verify it's existence on the BMC.
84 [Tags] Get_MAC_Address_And_Verify
85
Tony Lee412c6682020-04-01 17:34:30 +080086 ${active_channel_config}= Get Active Channel Config
87 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
88
89 ${resp}= Redfish.Get ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
Prashanth Katti2ec9d8b2019-02-12 05:20:19 -060090 ${macaddr}= Get From Dictionary ${resp.dict} MACAddress
91 Validate MAC On BMC ${macaddr}
Prashanth Kattif58cce02019-02-06 03:05:14 -060092
Prashanth Katti2c5c3bb2019-02-14 04:23:07 -060093Verify All Configured IP And Netmask
94 [Documentation] Verify all configured IP and netmask on BMC.
95 [Tags] Verify_All_Configured_IP_And_Netmask
96
Sushil Singh50621142020-06-16 11:12:21 -050097 FOR ${network_configuration} IN @{network_configurations}
98 Verify IP And Netmask On BMC ${network_configuration['Address']}
99 ... ${network_configuration['SubnetMask']}
100 END
Prashanth Katti2c5c3bb2019-02-14 04:23:07 -0600101
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500102Get Hostname And Verify
103 [Documentation] Get hostname via Redfish and verify.
104 [Tags] Get_Hostname_And_Verify
105
106 ${hostname}= Redfish_Utils.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName
107
108 Validate Hostname On BMC ${hostname}
109
110Configure Hostname And Verify
111 [Documentation] Configure hostname via Redfish and verify.
112 [Tags] Configure_Hostname_And_Verify
shrsuman123578276c2020-08-04 04:28:58 -0500113 [Teardown] Run Keywords
114 ... Configure Hostname ${hostname} AND Validate Hostname On BMC ${hostname}
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500115
Prashanth Kattiadf0b4e2019-06-10 04:20:30 -0500116 ${hostname}= Redfish_Utils.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500117
Prashanth Kattiadf0b4e2019-06-10 04:20:30 -0500118 Configure Hostname ${test_hostname}
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500119 Validate Hostname On BMC ${test_hostname}
120
nagarjunb2260784a42022-06-13 10:39:33 +0530121 # Verify configured hostname via redfish.
122 ${new_hostname}= Redfish_Utils.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName
123 Should Be Equal ${new_hostname} ${test_hostname}
124
Prashanth Kattiadf0b4e2019-06-10 04:20:30 -0500125
Vijayde3bf7b2019-04-16 04:56:09 -0500126Add Valid IPv4 Address And Verify
127 [Documentation] Add IPv4 Address via Redfish and verify.
George Keishing0c8100f2022-01-13 00:24:57 -0600128 [Tags] Add_Valid_IPv4_Address_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500129 [Teardown] Run Keywords
130 ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution
Vijayde3bf7b2019-04-16 04:56:09 -0500131
132 Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway}
Vijayde3bf7b2019-04-16 04:56:09 -0500133
134Add Invalid IPv4 Address And Verify
135 [Documentation] Add Invalid IPv4 Address via Redfish and verify.
George Keishing0c8100f2022-01-13 00:24:57 -0600136 [Tags] Add_Invalid_IPv4_Address_And_Verify
Vijayde3bf7b2019-04-16 04:56:09 -0500137
138 Add IP Address ${test_ipv4_invalid_addr} ${test_subnet_mask}
139 ... ${test_gateway} valid_status_codes=${HTTP_BAD_REQUEST}
140
Prashanth Kattib36a7522019-05-22 05:32:39 -0500141Configure Out Of Range IP
142 [Documentation] Configure out-of-range IP address.
143 [Tags] Configure_Out_Of_Range_IP
144 [Template] Add IP Address
145
146 # ip subnet_mask gateway valid_status_codes
147 ${out_of_range_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
148
149Configure Broadcast IP
150 [Documentation] Configure broadcast IP address.
151 [Tags] Configure_Broadcast_IP
152 [Template] Add IP Address
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500153 [Teardown] Clear IP Settings On Fail ${broadcast_ip}
Prashanth Kattib36a7522019-05-22 05:32:39 -0500154
155 # ip subnet_mask gateway valid_status_codes
156 ${broadcast_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
157
158Configure Multicast IP
159 [Documentation] Configure multicast IP address.
160 [Tags] Configure_Multicast_IP
161 [Template] Add IP Address
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500162 [Teardown] Clear IP Settings On Fail ${multicast_ip}
Prashanth Kattib36a7522019-05-22 05:32:39 -0500163
164 # ip subnet_mask gateway valid_status_codes
165 ${multicast_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
166
167Configure Loopback IP
168 [Documentation] Configure loopback IP address.
169 [Tags] Configure_Loopback_IP
170 [Template] Add IP Address
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500171 [Teardown] Clear IP Settings On Fail ${loopback_ip}
Prashanth Kattib36a7522019-05-22 05:32:39 -0500172
173 # ip subnet_mask gateway valid_status_codes
174 ${loopback_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
175
176Add Valid IPv4 Address And Check Persistency
nagarjunb2260784a42022-06-13 10:39:33 +0530177 [Documentation] Add IPv4 address and check persistency.
George Keishing0c8100f2022-01-13 00:24:57 -0600178 [Tags] Add_Valid_IPv4_Address_And_Check_Persistency
nagarjunb2260784a42022-06-13 10:39:33 +0530179 [Teardown] Run Keywords
180 ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution
Prashanth Kattib36a7522019-05-22 05:32:39 -0500181
182 Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway}
183
184 # Reboot BMC and verify persistency.
185 OBMC Reboot (off)
George Keishing5c498742019-08-09 02:14:44 -0500186 Redfish.Login
Prashanth Kattib36a7522019-05-22 05:32:39 -0500187 Verify IP On BMC ${test_ipv4_addr}
nagarjunb2260784a42022-06-13 10:39:33 +0530188 Verify IP On Redfish URI ${test_ipv4_addr}
189
Vijayde3bf7b2019-04-16 04:56:09 -0500190
Prashanth Katti6cedca22019-05-30 02:31:11 -0500191Add Fourth Octet Threshold IP And Verify
192 [Documentation] Add fourth octet threshold IP and verify.
193 [Tags] Add_Fourth_Octet_Threshold_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500194 [Teardown] Run Keywords
195 ... Delete IP Address 10.7.7.254 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500196
197 Add IP Address 10.7.7.254 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500198
199Add Fourth Octet Lowest IP And Verify
200 [Documentation] Add fourth octet lowest IP and verify.
201 [Tags] Add_Fourth_Octet_Lowest_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500202 [Teardown] Run Keywords
203 ... Delete IP Address 10.7.7.1 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500204
205 Add IP Address 10.7.7.1 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500206
207Add Third Octet Threshold IP And Verify
208 [Documentation] Add third octet threshold IP and verify.
209 [Tags] Add_Third_Octet_Threshold_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500210 [Teardown] Run Keywords
211 ... Delete IP Address 10.7.255.7 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500212
213 Add IP Address 10.7.255.7 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500214
215Add Third Octet Lowest IP And Verify
216 [Documentation] Add third octet lowest IP and verify.
217 [Tags] Add_Third_Octet_Lowest_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500218 [Teardown] Run Keywords
219 ... Delete IP Address 10.7.0.7 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500220
221 Add IP Address 10.7.0.7 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500222
223Add Second Octet Threshold IP And Verify
224 [Documentation] Add second octet threshold IP and verify.
225 [Tags] Add_Second_Octet_Threshold_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500226 [Teardown] Run Keywords
227 ... Delete IP Address 10.255.7.7 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500228
229 Add IP Address 10.255.7.7 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500230
231Add Second Octet Lowest IP And Verify
232 [Documentation] Add second octet lowest IP and verify.
233 [Tags] Add_Second_Octet_Lowest_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500234 [Teardown] Run Keywords
235 ... Delete IP Address 10.0.7.7 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500236
237 Add IP Address 10.0.7.7 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500238
239Add First Octet Threshold IP And Verify
240 [Documentation] Add first octet threshold IP and verify.
241 [Tags] Add_First_Octet_Threshold_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500242 [Teardown] Run Keywords
Anves Kumar rayankulaf757b102020-07-27 20:41:36 -0500243 ... Delete IP Address 223.7.7.7 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500244
245 Add IP Address 223.7.7.7 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500246
247Add First Octet Lowest IP And Verify
248 [Documentation] Add first octet lowest IP and verify.
249 [Tags] Add_First_Octet_Lowest_IP_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500250 [Teardown] Run Keywords
251 ... Delete IP Address 1.7.7.7 AND Test Teardown Execution
Prashanth Katti6cedca22019-05-30 02:31:11 -0500252
253 Add IP Address 1.7.7.7 ${test_subnet_mask} ${test_gateway}
Prashanth Katti6cedca22019-05-30 02:31:11 -0500254
Prashanth Katti040c8c12019-05-31 04:42:05 -0500255Configure Invalid Netmask
256 [Documentation] Verify error while setting invalid netmask.
257 [Tags] Configure_Invalid_Netmask
258 [Template] Add IP Address
259
260 # ip subnet_mask gateway valid_status_codes
261 ${test_ipv4_addr} ${invalid_netmask} ${test_gateway} ${HTTP_BAD_REQUEST}
262
263Configure Out Of Range Netmask
264 [Documentation] Verify error while setting out of range netmask.
265 [Tags] Configure_Out_Of_Range_Netmask
266 [Template] Add IP Address
267
268 # ip subnet_mask gateway valid_status_codes
269 ${test_ipv4_addr} ${out_of_range_netmask} ${test_gateway} ${HTTP_BAD_REQUEST}
270
271Configure Alpha Netmask
272 [Documentation] Verify error while setting alpha netmask.
273 [Tags] Configure_Alpha_Netmask
274 [Template] Add IP Address
275
276 # ip subnet_mask gateway valid_status_codes
277 ${test_ipv4_addr} ${alpha_netmask} ${test_gateway} ${HTTP_BAD_REQUEST}
278
279Configure More Byte Netmask
280 [Documentation] Verify error while setting more byte netmask.
281 [Tags] Configure_More_Byte_Netmask
282 [Template] Add IP Address
283
284 # ip subnet_mask gateway valid_status_codes
285 ${test_ipv4_addr} ${more_byte_netmask} ${test_gateway} ${HTTP_BAD_REQUEST}
286
287Configure Less Byte Netmask
288 [Documentation] Verify error while setting less byte netmask.
289 [Tags] Configure_Less_Byte_Netmask
290 [Template] Add IP Address
291
292 # ip subnet_mask gateway valid_status_codes
293 ${test_ipv4_addr} ${less_byte_netmask} ${test_gateway} ${HTTP_BAD_REQUEST}
294
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500295Configure Threshold Netmask And Verify
296 [Documentation] Configure threshold netmask and verify.
George Keishing5236ec52022-01-31 12:07:58 -0600297 [Tags] Configure_Threshold_Netmask_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500298 [Teardown] Run Keywords
299 ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500300
301 Add IP Address ${test_ipv4_addr} ${threshold_netmask} ${test_gateway}
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500302
303Configure Lowest Netmask And Verify
304 [Documentation] Configure lowest netmask and verify.
George Keishing5236ec52022-01-31 12:07:58 -0600305 [Tags] Configure_Lowest_Netmask_And_Verify
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500306 [Teardown] Run Keywords
307 ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500308
309 Add IP Address ${test_ipv4_addr} ${lowest_netmask} ${test_gateway}
Prashanth Kattic6ad6472019-06-14 03:33:39 -0500310
311Configure Network ID
312 [Documentation] Verify error while configuring network ID.
313 [Tags] Configure_Network_ID
314 [Template] Add IP Address
315 [Teardown] Clear IP Settings On Fail ${network_id}
316
317 # ip subnet_mask gateway valid_status_codes
318 ${network_id} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
319
320Configure Less Octet IP
321 [Documentation] Verify error while Configuring less octet IP address.
322 [Tags] Configure_Less_Octet_IP
323 [Template] Add IP Address
324
325 # ip subnet_mask gateway valid_status_codes
326 ${less_octet_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
327
328Configure Empty IP
329 [Documentation] Verify error while Configuring empty IP address.
330 [Tags] Configure_Empty_IP
331 [Template] Add IP Address
332
333 # ip subnet_mask gateway valid_status_codes
334 ${EMPTY} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
335
336Configure Special Char IP
337 [Documentation] Configure invalid IP address containing special chars.
338 [Tags] Configure_Special_Char_IP
339 [Template] Add IP Address
340
341 # ip subnet_mask gateway valid_status_codes
342 @@@.%%.44.11 ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
343
344Configure Hexadecimal IP
345 [Documentation] Configure invalid IP address containing hex value.
346 [Tags] Configure_Hexadecimal_IP
347 [Template] Add IP Address
348
349 # ip subnet_mask gateway valid_status_codes
350 ${hex_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
351
352Configure Negative Octet IP
353 [Documentation] Configure invalid IP address containing negative octet.
354 [Tags] Configure_Negative_Octet_IP
355 [Template] Add IP Address
356
357 # ip subnet_mask gateway valid_status_codes
358 ${negative_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST}
359
Prashanth Katti5cad5a02019-06-20 07:27:10 -0500360Configure Incomplete IP For Gateway
361 [Documentation] Configure incomplete IP for gateway and expect an error.
362 [Tags] Configure_Incomplete_IP_For_Gateway
363 [Template] Add IP Address
364
365 # ip subnet_mask gateway valid_status_codes
366 ${test_ipv4_addr} ${test_subnet_mask} ${less_octet_ip} ${HTTP_BAD_REQUEST}
367
368Configure Special Char IP For Gateway
369 [Documentation] Configure special char IP for gateway and expect an error.
370 [Tags] Configure_Special_Char_IP_For_Gateway
371 [Template] Add IP Address
372
373 # ip subnet_mask gateway valid_status_codes
374 ${test_ipv4_addr} ${test_subnet_mask} @@@.%%.44.11 ${HTTP_BAD_REQUEST}
375
376Configure Hexadecimal IP For Gateway
377 [Documentation] Configure hexadecimal IP for gateway and expect an error.
378 [Tags] Configure_Hexadecimal_IP_For_Gateway
379 [Template] Add IP Address
380
381 # ip subnet_mask gateway valid_status_codes
382 ${test_ipv4_addr} ${test_subnet_mask} ${hex_ip} ${HTTP_BAD_REQUEST}
383
Prashanth Katti7098c972019-07-03 06:56:42 -0500384Get DNS Server And Verify
385 [Documentation] Get DNS server via Redfish and verify.
386 [Tags] Get_DNS_Server_And_Verify
387
388 Verify CLI and Redfish Nameservers
389
390Configure DNS Server And Verify
391 [Documentation] Configure DNS server and verify.
392 [Tags] Configure_DNS_Server_And_Verify
Prashanth Kattic85957c2019-07-09 02:01:20 -0500393 [Setup] DNS Test Setup Execution
Prashanth Katti7098c972019-07-03 06:56:42 -0500394 [Teardown] Run Keywords
395 ... Configure Static Name Servers AND Test Teardown Execution
396
Prashanth Katti7098c972019-07-03 06:56:42 -0500397 Configure Static Name Servers ${static_name_servers}
398 Verify CLI and Redfish Nameservers
399
Prashanth Kattic85957c2019-07-09 02:01:20 -0500400Delete DNS Server And Verify
401 [Documentation] Delete DNS server and verify.
402 [Tags] Delete_DNS_Server_And_Verify
403 [Setup] DNS Test Setup Execution
404 [Teardown] Run Keywords
405 ... Configure Static Name Servers AND Test Teardown Execution
406
407 Delete Static Name Servers
408 Verify CLI and Redfish Nameservers
409
410Configure DNS Server And Check Persistency
411 [Documentation] Configure DNS server and check persistency on reboot.
412 [Tags] Configure_DNS_Server_And_Check_Persistency
413 [Setup] DNS Test Setup Execution
414 [Teardown] Run Keywords
415 ... Configure Static Name Servers AND Test Teardown Execution
416
417 Configure Static Name Servers ${static_name_servers}
418 # Reboot BMC and verify persistency.
419 OBMC Reboot (off)
Anves Kumar rayankula8c628b72021-02-05 05:03:45 -0600420 Redfish.Login
Prashanth Kattic85957c2019-07-09 02:01:20 -0500421 Verify CLI and Redfish Nameservers
422
Prashanth Katti3063ffe2019-07-25 04:35:25 -0500423Configure Loopback IP For Gateway
424 [Documentation] Configure loopback IP for gateway and expect an error.
425 [Tags] Configure_Loopback_IP_For_Gateway
426 [Template] Add IP Address
427 [Teardown] Clear IP Settings On Fail ${test_ipv4_addr}
428
429 # ip subnet_mask gateway valid_status_codes
430 ${test_ipv4_addr} ${test_subnet_mask} ${loopback_ip} ${HTTP_BAD_REQUEST}
431
432Configure Network ID For Gateway
433 [Documentation] Configure network ID for gateway and expect an error.
434 [Tags] Configure_Network_ID_For_Gateway
435 [Template] Add IP Address
436 [Teardown] Clear IP Settings On Fail ${test_ipv4_addr}
437
438 # ip subnet_mask gateway valid_status_codes
439 ${test_ipv4_addr} ${test_subnet_mask} ${network_id} ${HTTP_BAD_REQUEST}
440
441Configure Multicast IP For Gateway
442 [Documentation] Configure multicast IP for gateway and expect an error.
443 [Tags] Configure_Multicast_IP_For_Gateway
444 [Template] Add IP Address
445 [Teardown] Clear IP Settings On Fail ${test_ipv4_addr}
446
447 # ip subnet_mask gateway valid_status_codes
Tony Lee412c6682020-04-01 17:34:30 +0800448 ${test_ipv4_addr} ${test_subnet_mask} ${multicast_ip} ${HTTP_BAD_REQUEST}
Prashanth Katti3063ffe2019-07-25 04:35:25 -0500449
450Configure Broadcast IP For Gateway
451 [Documentation] Configure broadcast IP for gateway and expect an error.
452 [Tags] Configure_Broadcast_IP_For_Gateway
453 [Template] Add IP Address
454 [Teardown] Clear IP Settings On Fail ${test_ipv4_addr}
455
456 # ip subnet_mask gateway valid_status_codes
457 ${test_ipv4_addr} ${test_subnet_mask} ${broadcast_ip} ${HTTP_BAD_REQUEST}
Prashanth Kattic85957c2019-07-09 02:01:20 -0500458
Prashanth Katti3c7b6432019-07-26 06:53:37 -0500459Configure Null Value For DNS Server
460 [Documentation] Configure null value for DNS server and expect an error.
461 [Tags] Configure_Null_Value_For_DNS_Server
462 [Setup] DNS Test Setup Execution
463 [Teardown] Run Keywords
464 ... Configure Static Name Servers AND Test Teardown Execution
465
466 Configure Static Name Servers ${null_value} ${HTTP_BAD_REQUEST}
467
Prashanth Kattiafe16b72019-08-02 00:29:45 -0500468Configure Empty Value For DNS Server
469 [Documentation] Configure empty value for DNS server and expect an error.
470 [Tags] Configure_Empty_Value_For_DNS_Server
471 [Setup] DNS Test Setup Execution
472 [Teardown] Run Keywords
473 ... Configure Static Name Servers AND Test Teardown Execution
474
475 Configure Static Name Servers ${empty_dictionary} ${HTTP_BAD_REQUEST}
476
477Configure String Value For DNS Server
478 [Documentation] Configure string value for DNS server and expect an error.
479 [Tags] Configure_String_Value_For_DNS_Server
480 [Setup] DNS Test Setup Execution
481 [Teardown] Run Keywords
482 ... Configure Static Name Servers AND Test Teardown Execution
483
484 Configure Static Name Servers ${string_value} ${HTTP_BAD_REQUEST}
485
Prashanth Katti568df5f2020-05-15 06:00:37 -0500486Modify IPv4 Address And Verify
487 [Documentation] Modify IP address via Redfish and verify.
George Keishing0c8100f2022-01-13 00:24:57 -0600488 [Tags] Modify_IPv4_Address_And_Verify
Prashanth Katti568df5f2020-05-15 06:00:37 -0500489 [Teardown] Run Keywords
Anves Kumar rayankula045814b2020-10-09 09:17:05 -0500490 ... Delete IP Address ${test_ipv4_addr2} AND Test Teardown Execution
Prashanth Katti568df5f2020-05-15 06:00:37 -0500491
492 Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway}
493
494 Update IP Address ${test_ipv4_addr} ${test_ipv4_addr2} ${test_subnet_mask} ${test_gateway}
495
Anvesh Kumar9c7238d2020-04-21 03:56:21 -0500496
Anves Kumar rayankula6b9fcd12020-12-18 01:03:19 -0600497Configure Invalid Values For DNS Server
498 [Documentation] Configure invalid values for DNS server and expect an error.
George Keishing5236ec52022-01-31 12:07:58 -0600499 [Tags] Configure_Invalid_Values_For_DNS_Server
Anves Kumar rayankula6b9fcd12020-12-18 01:03:19 -0600500 [Setup] DNS Test Setup Execution
501 [Template] Configure Static Name Servers
502 [Teardown] Run Keywords
503 ... Configure Static Name Servers AND Test Teardown Execution
504
505 # static_name_servers valid_status_codes
506 0xa.0xb.0xc.0xd ${HTTP_BAD_REQUEST}
507 10.-7.-7.-7 ${HTTP_BAD_REQUEST}
508 10.3.36 ${HTTP_BAD_REQUEST}
509 @@@.%%.44.11 ${HTTP_BAD_REQUEST}
510
511
512Config Multiple DNS Servers And Verify
513 [Documentation] Config multiple DNS servers and verify.
514 [Tags] Config_Multiple_DNS_Servers_And_Verify
515 [Setup] DNS Test Setup Execution
516 [Teardown] Run Keywords
517 ... Configure Static Name Servers AND Test Teardown Execution
518
519 @{list_name_servers}= Create List 10.5.5.10 10.20.5.10 10.5.6.7
520 Configure Static Name Servers ${list_name_servers}
521 Verify CLI and Redfish Nameservers
522
523
Anves Kumar rayankulad4cdd8c2021-01-11 04:10:05 -0600524Configure And Verify Multiple Static IPv4 Addresses
525 [Documentation] Configure multiple static ipv4 address via Redfish and verify.
526 [Tags] Configure_And_Verify_Multiple_Static_IPv4_Addresses
527 [Teardown] Run Keywords Delete Multiple Static IPv4 Addresses ${test_ipv4_addresses}
528 ... AND Test Teardown Execution
529
530 ${test_ipv4_addresses}= Create List ${test_ipv4_addr} ${test_ipv4_addr2}
531 Configure Multiple Static IPv4 Addresses ${test_ipv4_addresses} ${test_subnet_mask} ${test_gateway}
532
533
534Configure Multiple Static IPv4 Addresses And Check Persistency
535 [Documentation] Configure multiple static ipv4 address via Redfish and check persistency.
536 [Tags] Configure_Multiple_Static_IPv4_Addresses_And_Check_Persistency
537 [Teardown] Run Keywords Delete Multiple Static IPv4 Addresses ${test_ipv4_addresses}
538 ... AND Test Teardown Execution
539
540 ${test_ipv4_addresses}= Create List ${test_ipv4_addr} ${test_ipv4_addr2}
541 Configure Multiple Static IPv4 Addresses ${test_ipv4_addresses} ${test_subnet_mask} ${test_gateway}
542
543 # Reboot BMC and verify persistency.
544 OBMC Reboot (off)
Anves Kumar rayankula8c628b72021-02-05 05:03:45 -0600545 Redfish.Login
Anves Kumar rayankulad4cdd8c2021-01-11 04:10:05 -0600546 FOR ${ip} IN @{test_ipv4_addresses}
547 Verify IP And Netmask On BMC ${ip} ${test_subnet_mask}
nagarjunb2260784a42022-06-13 10:39:33 +0530548 Verify IP On Redfish URI ${ip}
Anves Kumar rayankulad4cdd8c2021-01-11 04:10:05 -0600549 END
550
551
Anves Kumar rayankula43e93e12021-01-27 03:52:37 -0600552Configure And Verify Multiple IPv4 Addresses
553 [Documentation] Configure multiple IPv4 addresses and verify.
George Keishing0c8100f2022-01-13 00:24:57 -0600554 [Tags] Configure_And_Verify_Multiple_IPv4_Addresses
Anves Kumar rayankula43e93e12021-01-27 03:52:37 -0600555 [Teardown] Run Keywords
556 ... Delete IP Address ${test_ipv4_addr} AND Delete IP Address ${test_ipv4_addr2}
557 ... AND Test Teardown Execution
558
559 ${ip1}= Create dictionary Address=${test_ipv4_addr}
560 ... SubnetMask=255.255.0.0 Gateway=${test_gateway}
561 ${ip2}= Create dictionary Address=${test_ipv4_addr2}
562 ... SubnetMask=255.255.252.0 Gateway=${test_gateway}
563
564 ${empty_dict}= Create Dictionary
565 ${patch_list}= Create List
566 ${network_configurations}= Get Network Configuration
567 ${num_entries}= Get Length ${network_configurations}
568
569 FOR ${INDEX} IN RANGE 0 ${num_entries}
570 Append To List ${patch_list} ${empty_dict}
571 END
572
573 # We need not check for existence of IP on BMC while adding.
574 Append To List ${patch_list} ${ip1} ${ip2}
575 ${payload}= Create Dictionary IPv4StaticAddresses=${patch_list}
576 ${active_channel_config}= Get Active Channel Config
577 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
578 Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} body=&{payload}
Anves Kumar rayankula53b80302021-05-21 01:50:03 -0500579 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NO_CONTENT}]
Anves Kumar rayankula43e93e12021-01-27 03:52:37 -0600580
581 # Note: Network restart takes around 15-18s after patch request processing.
582 Sleep ${NETWORK_TIMEOUT}s
583 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
584 Verify IP On BMC ${test_ipv4_addr}
585 Verify IP On BMC ${test_ipv4_addr2}
586
587
Anves Kumar rayankulaeefdb562021-02-08 07:54:11 -0600588Config Multiple DNS Servers And Check Persistency
589 [Documentation] Config multiple DNS and check persistency.
590 [Tags] Config_Multiple_DNS_Servers_And_Check_Persistency
591 [Setup] DNS Test Setup Execution
592 [Teardown] Run Keywords
593 ... Configure Static Name Servers AND Test Teardown Execution
594
595 @{list_name_servers}= Create List 10.5.5.10 10.20.5.10 10.5.6.7
596 Configure Static Name Servers ${list_name_servers}
597
598 # Reboot BMC and verify persistency.
599 OBMC Reboot (off)
600 Redfish.Login
601 Verify CLI and Redfish Nameservers
602
Anves Kumar rayankula2f137eb2021-03-29 01:12:01 -0500603
604Configure Static IP Without Using Gateway And Verify
605 [Documentation] Configure static IP without using gateway and verify error.
606 [Tags] Configure_Static_IP_Without_Using_Gateway_And_Verify
607
608 ${ip}= Create dictionary Address=${test_ipv4_addr}
609 ... SubnetMask=${test_subnet_mask}
610 ${empty_dict}= Create Dictionary
611 ${patch_list}= Create List
612 ${network_configurations}= Get Network Configuration
613
614 ${num_entries}= Get Length ${network_configurations}
615 FOR ${INDEX} IN RANGE 0 ${num_entries}
616 Append To List ${patch_list} ${empty_dict}
617 END
618
619 # We need not check for existence of IP on BMC while adding.
620 Append To List ${patch_list} ${ip}
621 ${payload}= Create Dictionary IPv4StaticAddresses=${patch_list}
622 ${active_channel_config}= Get Active Channel Config
623 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
624 Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
625 ... body=&{payload} valid_status_codes=[${HTTP_BAD_REQUEST}]
626
Anves Kumar rayankulaac0a7ba2021-03-09 08:10:20 -0600627
628Test Network Response On Specified Host State
629 [Documentation] Verifying the BMC network response when host is on and off.
630 [Tags] Test_Network_Response_On_Specified_Host_State
631 [Template] Verify Network Response On Specified Host State
632
633 # host_state
634 on
635 off
636
Sweta Potthurifb001362022-03-14 02:21:14 -0500637
Prashanth Kattif58cce02019-02-06 03:05:14 -0600638*** Keywords ***
639
640Test Setup Execution
641 [Documentation] Test setup execution.
642
George Keishing97c93942019-03-04 12:45:07 -0600643 Redfish.Login
Prashanth Kattif58cce02019-02-06 03:05:14 -0600644
645 @{network_configurations}= Get Network Configuration
646 Set Test Variable @{network_configurations}
647
648 # Get BMC IP address and prefix length.
649 ${ip_data}= Get BMC IP Info
650 Set Test Variable ${ip_data}
651
Prashanth Katti747ce9d2019-02-07 07:23:48 -0600652
Prashanth Katti747ce9d2019-02-07 07:23:48 -0600653Verify Netmask On BMC
654 [Documentation] Verify netmask on BMC.
Prashanth Kattif58cce02019-02-06 03:05:14 -0600655 [Arguments] ${netmask}
656
657 # Description of the argument(s):
658 # netmask netmask value to be verified.
659
Prashanth Katti747ce9d2019-02-07 07:23:48 -0600660 ${prefix_length}= Netmask Prefix Length ${netmask}
661
662 Should Contain Match ${ip_data} */${prefix_length}
663 ... msg=Prefix length does not exist.
Prashanth Kattif58cce02019-02-06 03:05:14 -0600664
Prashanth Katti2c5c3bb2019-02-14 04:23:07 -0600665Verify IP And Netmask On BMC
666 [Documentation] Verify IP and netmask on BMC.
667 [Arguments] ${ip} ${netmask}
668
669 # Description of the argument(s):
670 # ip IP address to be verified.
671 # netmask netmask value to be verified.
672
673 ${prefix_length}= Netmask Prefix Length ${netmask}
674 @{ip_data}= Get BMC IP Info
675
676 ${ip_with_netmask}= Catenate ${ip}/${prefix_length}
677 Should Contain ${ip_data} ${ip_with_netmask}
678 ... msg=IP and netmask pair does not exist.
679
Prashanth Kattif58cce02019-02-06 03:05:14 -0600680Test Teardown Execution
681 [Documentation] Test teardown execution.
682
683 FFDC On Test Case Fail
George Keishing97c93942019-03-04 12:45:07 -0600684 Redfish.Logout
Prashanth Kattia8442512019-06-07 06:47:09 -0500685
686Clear IP Settings On Fail
687 [Documentation] Clear IP settings on fail.
688 [Arguments] ${ip}
689
690 # Description of argument(s):
691 # ip IP address to be deleted.
692
693 Run Keyword If '${TEST STATUS}' == 'FAIL'
694 ... Delete IP Address ${ip}
695
696 Test Teardown Execution
Prashanth Kattiadf0b4e2019-06-10 04:20:30 -0500697
Prashanth Katti7098c972019-07-03 06:56:42 -0500698Verify CLI and Redfish Nameservers
699 [Documentation] Verify that nameservers obtained via Redfish do not
700 ... match those found in /etc/resolv.conf.
701
Tony Lee412c6682020-04-01 17:34:30 +0800702 ${active_channel_config}= Get Active Channel Config
703 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
704
Anves Kumar rayankula91548ea2020-06-18 00:28:13 -0500705 ${redfish_nameservers}= Redfish.Get Attribute
706 ... ${REDFISH_NW_ETH_IFACE}${ethernet_interface} StaticNameServers
Prashanth Katti7098c972019-07-03 06:56:42 -0500707 ${resolve_conf_nameservers}= CLI Get Nameservers
Michael Walsh39c00512019-07-17 10:54:06 -0500708 Rqprint Vars redfish_nameservers resolve_conf_nameservers
Prashanth Katti7098c972019-07-03 06:56:42 -0500709
Sweta Potthurid77ea982021-07-01 04:30:38 -0500710 List Should Contain Sub List ${resolve_conf_nameservers} ${redfish_nameservers}
711 ... msg=The nameservers obtained via Redfish do not match those found in /etc/resolv.conf.
Prashanth Katti7098c972019-07-03 06:56:42 -0500712
713Configure Static Name Servers
714 [Documentation] Configure DNS server on BMC.
Prashanth Kattic85957c2019-07-09 02:01:20 -0500715 [Arguments] ${static_name_servers}=${original_nameservers}
Prashanth Katti3c7b6432019-07-26 06:53:37 -0500716 ... ${valid_status_codes}=${HTTP_OK}
Prashanth Katti7098c972019-07-03 06:56:42 -0500717
George Keishing9cb2e592019-07-12 09:37:33 -0500718 # Description of the argument(s):
Prashanth Katti7098c972019-07-03 06:56:42 -0500719 # static_name_servers A list of static name server IPs to be
720 # configured on the BMC.
721
Tony Lee412c6682020-04-01 17:34:30 +0800722 ${active_channel_config}= Get Active Channel Config
723 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
724
Anves Kumar rayankula6b9fcd12020-12-18 01:03:19 -0600725 ${type} = Evaluate type($static_name_servers).__name__
726 ${static_name_servers}= Set Variable If '${type}'=='str'
727 ... '${static_name_servers}' ${static_name_servers}
728
Prashanth Katti9d995fc2019-09-24 01:29:06 -0500729 # Currently BMC is sending 500 response code instead of 400 for invalid scenarios.
Anves Kumar rayankula91548ea2020-06-18 00:28:13 -0500730 Redfish.Patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
731 ... body={'StaticNameServers': ${static_name_servers}}
Prashanth Katti9d995fc2019-09-24 01:29:06 -0500732 ... valid_status_codes=[${valid_status_codes}, ${HTTP_INTERNAL_SERVER_ERROR}]
Prashanth Kattic85957c2019-07-09 02:01:20 -0500733
Prashanth Kattif247be32019-10-07 04:40:43 -0500734 # Patch operation takes 1 to 3 seconds to set new value.
735 Sleep 3s
736
Prashanth Katti7f9e60f2019-07-26 01:18:41 -0500737 # Check if newly added DNS server is configured on BMC.
738 ${cli_nameservers}= CLI Get Nameservers
Prashanth Katti3c7b6432019-07-26 06:53:37 -0500739 ${cmd_status}= Run Keyword And Return Status
740 ... List Should Contain Sub List ${cli_nameservers} ${static_name_servers}
741
742 Run Keyword If '${valid_status_codes}' == '${HTTP_OK}'
743 ... Should Be True ${cmd_status} == ${True}
744 ... ELSE Should Be True ${cmd_status} == ${False}
Prashanth Katti7f9e60f2019-07-26 01:18:41 -0500745
Prashanth Kattic85957c2019-07-09 02:01:20 -0500746Delete Static Name Servers
747 [Documentation] Delete static name servers.
748
Sweta Potthuridc325932022-06-15 12:51:27 -0500749 DNS Test Setup Execution
Anves Kumar rayankula045814b2020-10-09 09:17:05 -0500750 Configure Static Name Servers static_name_servers=@{EMPTY}
Prashanth Kattic85957c2019-07-09 02:01:20 -0500751
752 # Check if all name servers deleted on BMC.
753 ${nameservers}= CLI Get Nameservers
Sweta Potthuridc325932022-06-15 12:51:27 -0500754 Should Not Contain ${nameservers} ${original_nameservers}
755
756 DNS Test Setup Execution
757
758 Should Be Empty ${original_nameservers}
Prashanth Kattic85957c2019-07-09 02:01:20 -0500759
760DNS Test Setup Execution
761 [Documentation] Do DNS test setup execution.
762
763 Redfish.Login
764
Tony Lee412c6682020-04-01 17:34:30 +0800765 ${active_channel_config}= Get Active Channel Config
766 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
767
Anves Kumar rayankula91548ea2020-06-18 00:28:13 -0500768 ${original_nameservers}= Redfish.Get Attribute
769 ... ${REDFISH_NW_ETH_IFACE}${ethernet_interface} StaticNameServers
Tony Lee412c6682020-04-01 17:34:30 +0800770
Prashanth Kattic85957c2019-07-09 02:01:20 -0500771 Rprint Vars original_nameservers
772 # Set suite variables to trigger restoration during teardown.
773 Set Suite Variable ${original_nameservers}
Prashanth Kattib478d902020-05-08 10:05:32 -0500774
aravinth0510ca054ee2022-06-16 13:26:15 +0000775
Prashanth Kattib478d902020-05-08 10:05:32 -0500776Suite Setup Execution
777 [Documentation] Do suite setup execution.
778
aravinth0510ca054ee2022-06-16 13:26:15 +0000779 # - Get DHCP IPv4 enabled/disabled status from redfish managers URI
780 # - If DHCP IPv4 is enabled ,
781 # - Get DHCP IPv4 settings - ip address, gateway, subnetmask
782 # - And set the same as static IP address
783
784 ${DHCPEnabled}= Get IPv4 DHCP Enabled Status
785 Set Suite Variable ${DHCPEnabled}
786
787 Run Keyword If ${DHCPEnabled}==True
788 ... Run Keywords
789 ... ${ip_addr} ${gateway} ${subnetmask}= Get DHCP IP Info AND
790 ... Add IP Address ${ip_addr} ${subnetmask} ${gateway} AND
791 ... Set Suite Variable ${ip_addr}
792
Prashanth Kattib478d902020-05-08 10:05:32 -0500793 ${test_gateway}= Get BMC Default Gateway
794 Set Suite Variable ${test_gateway}
Prashanth Katti568df5f2020-05-15 06:00:37 -0500795
aravinth0510ca054ee2022-06-16 13:26:15 +0000796
797Suite Teardown Execution
798 [Documentation] Do suite teardown execution.
799
800 # - If the DHCP IPv4 is enabled before suite setup execution
801 # - Restore the DHCP IPv4 to enabled state
802
803 Run Keyword If ${DHCPEnabled}==True
804 ... Enable IPv4 DHCP Settings
805
806
Prashanth Katti568df5f2020-05-15 06:00:37 -0500807Update IP Address
808 [Documentation] Update IP address of BMC.
Anves Kumar rayankula53b80302021-05-21 01:50:03 -0500809 [Arguments] ${ip} ${new_ip} ${netmask} ${gw_ip}
810 ... ${valid_status_codes}=[${HTTP_OK}, ${HTTP_NO_CONTENT}]
Prashanth Katti568df5f2020-05-15 06:00:37 -0500811
812 # Description of argument(s):
813 # ip IP address to be replaced (e.g. "10.7.7.7").
814 # new_ip New IP address to be configured.
815 # netmask Netmask value.
816 # gw_ip Gateway IP address.
817 # valid_status_codes Expected return code from patch operation
818 # (e.g. "200"). See prolog of rest_request
819 # method in redfish_plus.py for details.
820
821 ${empty_dict}= Create Dictionary
822 ${patch_list}= Create List
823 ${ip_data}= Create Dictionary Address=${new_ip} SubnetMask=${netmask} Gateway=${gw_ip}
824
825 # Find the position of IP address to be modified.
826 @{network_configurations}= Get Network Configuration
827 FOR ${network_configuration} IN @{network_configurations}
828 Run Keyword If '${network_configuration['Address']}' == '${ip}'
829 ... Append To List ${patch_list} ${ip_data}
830 ... ELSE Append To List ${patch_list} ${empty_dict}
831 END
832
833 ${ip_found}= Run Keyword And Return Status List Should Contain Value
834 ... ${patch_list} ${ip_data} msg=${ip} does not exist on BMC
835 Pass Execution If ${ip_found} == ${False} ${ip} does not exist on BMC
836
837 # Run patch command only if given IP is found on BMC
838 ${data}= Create Dictionary IPv4StaticAddresses=${patch_list}
839
Anves Kumar rayankulaabf68542021-06-23 00:14:54 -0500840 ${active_channel_config}= Get Active Channel Config
841 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
842
843 Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
844 ... body=&{data} valid_status_codes=${valid_status_codes}
Prashanth Katti568df5f2020-05-15 06:00:37 -0500845
846 # Note: Network restart takes around 15-18s after patch request processing.
847 Sleep ${NETWORK_TIMEOUT}s
848 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
849
850 Verify IP On BMC ${new_ip}
851 Validate Network Config On BMC
Anves Kumar rayankulad4cdd8c2021-01-11 04:10:05 -0600852
853Configure Multiple Static IPv4 Addresses
854 [Documentation] Configure multiple static ipv4 address via Redfish and verify.
855 [Arguments] ${ip_addreses} ${subnet_mask} ${gateway}
856
857 # Description of argument(s):
858 # ip_addreses A list of IP addresses to be added (e.g.["10.7.7.7"]).
859 # subnet_mask Subnet mask for the IP to be added (e.g. "255.255.0.0").
860 # gateway Gateway for the IP to be added (e.g. "10.7.7.1").
861
862 FOR ${ip} IN @{ip_addreses}
863 Add IP Address ${ip} ${subnet_mask} ${gateway}
864 END
865 Validate Network Config On BMC
866
867
868Delete Multiple Static IPv4 Addresses
869 [Documentation] Delete multiple static ipv4 address via Redfish.
870 [Arguments] ${ip_addreses}
871
872 # Description of argument(s):
873 # ip_addreses A list of IP addresses to be deleted (e.g.["10.7.7.7"]).
874
875 FOR ${ip} IN @{ip_addreses}
876 Delete IP Address ${ip}
877 END
878 Validate Network Config On BMC
Anves Kumar rayankulaac0a7ba2021-03-09 08:10:20 -0600879
880Verify Network Response On Specified Host State
881 [Documentation] Verifying the BMC network response when host is on and off.
882 [Arguments] ${host_state}
883
884 # Description of argument(s):
885 # host_state if host_state is on then host is booted to operating system.
886 # if host_state is off then host is power off.
887 # (eg. on, off).
888
889 ${active_channel_config}= Get Active Channel Config
890 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
891
892 Run Keyword If '${host_state}' == 'on'
893 ... Redfish Power On stack_mode=skip
894 ... ELSE
895 ... Redfish Power off stack_mode=skip
896
897 Redfish.Get ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
898 Ping Host ${OPENBMC_HOST}
899
nagarjunb2260784a42022-06-13 10:39:33 +0530900
901Verify IP On Redfish URI
902 [Documentation] Verify given IP on redfish URI.
903 [Arguments] ${ip_address}
904
905 # Description of argument(s):
906 # ip_address Configured IP address which need to verified.
907
908 ${network_configurations}= Get Network Configuration
909
910 FOR ${network_configuration} IN @{network_configurations}
911 ${ip_found}= Set Variable If '${network_configuration['Address']}' == '${ip_address}' ${True}
912 ... ${False}
913 Exit For Loop If ${ip_found}
914 END
915 Run Keyword If '${ip_found}' == '${False}'
916 ... Fail msg=Configured IP address not found on EthernetInterface URI.
aravinth0510ca054ee2022-06-16 13:26:15 +0000917
918
919Enable IPv4 DHCP Settings
920 [Documentation] Set IPv4 DHCP enabled status true/false in redfish URI.
921 [Arguments] ${status}=${True}
922
923 # Description of argument(s):
924 # status IPv4 DHCPEnabled status which needs to be set.
925 # (e.g. True or False)
926
927 ${active_channel_config}= Get Active Channel Config
928 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
929 ${DHCPv4}= Create Dictionary DHCPEnabled=${status}
930
931 ${payload}= Create Dictionary DHCPv4=${DHCPv4}
932 Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface}
933 ... body=&{payload} valid_status_codes=[${HTTP_NO_CONTENT}, ${HTTP_OK}]
934
935 Sleep ${NETWORK_TIMEOUT}s
936 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
937
938
939Get IPv4 DHCP Enabled Status
940 [Documentation] Return IPv4 DHCP enabled status from redfish URI.
941
942 ${active_channel_config}= Get Active Channel Config
943 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
944 ${resp}= Redfish.Get Attribute ${REDFISH_NW_ETH_IFACE}${ethernet_interface} DHCPv4
945 ${status}= Set Variable ${resp['DHCPEnabled']}
946 Return From Keyword ${status}
947
948
949Get DHCP IP Info
950 [Documentation] Return DHCP IP address, gateway and subnetmask from redfish URI.
951
952 ${active_channel_config}= Get Active Channel Config
953 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
954 ${resp_list}= Redfish.Get Attribute ${REDFISH_NW_ETH_IFACE}${ethernet_interface} IPv4Addresses
955 FOR ${resp} IN @{resp_list}
956 Continue For Loop If '${resp['AddressOrigin']}' != 'DHCP'
957 ${ip_addr}= Set Variable ${resp['Address']}
958 ${gateway}= Set Variable ${resp['Gateway']}
959 ${subnetmask}= Set Variable ${resp['SubnetMask']}
960 Return From Keyword ${ip_addr} ${gateway} ${subnetmask}
961 END