blob: dbcac25143b55af6cd765e0aed49532f644abe32 [file] [log] [blame]
Michael Walsh1b0ceb22017-05-31 16:03:01 -05001*** Settings ***
2Resource ../lib/utils.robot
3Resource ../lib/connection_client.robot
4Resource ../lib/boot_utils.robot
George Keishing58e47232018-02-12 10:35:15 -06005Library ../lib/gen_misc.py
George Keishingbf724772018-02-21 08:57:16 -06006Library ../lib/utils.py
Tony Lee9f6b2042020-04-27 20:20:43 +08007Library ../lib/bmc_network_utils.py
Michael Walsh1b0ceb22017-05-31 16:03:01 -05008
9*** Variables ***
10# MAC input from user.
11${MAC_ADDRESS} ${EMPTY}
12
13
14*** Keywords ***
15
Michael Walsh1b0ceb22017-05-31 16:03:01 -050016Check And Reset MAC
17 [Documentation] Update BMC with user input MAC address.
18 [Arguments] ${mac_address}=${MAC_ADDRESS}
19
20 # Description of argument(s):
21 # mac_address The mac address (e.g. 00:01:6c:80:02:28).
22
Tony Lee8094d382020-04-02 13:14:47 +080023 ${active_channel_config}= Get Active Channel Config
24 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
25
Michael Walsh1b0ceb22017-05-31 16:03:01 -050026 Should Not Be Empty ${mac_address}
27 Open Connection And Log In
Joy Onyerikwu9b668972018-05-22 19:10:43 -050028 ${bmc_mac_addr} ${stderr} ${rc}= BMC Execute Command
Tony Lee8094d382020-04-02 13:14:47 +080029 ... cat /sys/class/net/${ethernet_interface}/address
Michael Walsh1b0ceb22017-05-31 16:03:01 -050030 Run Keyword If '${mac_address.lower()}' != '${bmc_mac_addr.lower()}'
31 ... Set MAC Address
32
Michael Walsh1b0ceb22017-05-31 16:03:01 -050033
Michael Walsh1b0ceb22017-05-31 16:03:01 -050034Set MAC Address
35 [Documentation] Update eth0 with input MAC address.
36 [Arguments] ${mac_address}=${MAC_ADDRESS}
37
38 # Description of argument(s):
39 # mac_address The mac address (e.g. 00:01:6c:80:02:28).
40
Tony Lee8094d382020-04-02 13:14:47 +080041 ${active_channel_config}= Get Active Channel Config
42 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
43
Michael Walsh1b0ceb22017-05-31 16:03:01 -050044 Write fw_setenv ethaddr ${mac_address}
45 OBMC Reboot (off)
Sunil Md1c4f272017-07-07 09:03:24 -050046
47 # Take SSH session post BMC reboot.
48 Open Connection And Log In
Joy Onyerikwu9b668972018-05-22 19:10:43 -050049 ${bmc_mac_addr} ${stderr} ${rc}= BMC Execute Command
Tony Lee8094d382020-04-02 13:14:47 +080050 ... cat /sys/class/net/${ethernet_interface}/address
Michael Walsh1b0ceb22017-05-31 16:03:01 -050051 Should Be Equal ${bmc_mac_addr} ${mac_address} ignore_case=True
52
Prashanth Kattie79c5402017-06-08 07:40:49 -050053
54Get BMC IP Info
55 [Documentation] Get system IP address and prefix length.
56
Prashanth Kattie79c5402017-06-08 07:40:49 -050057
58 # Get system IP address and prefix length details using "ip addr"
59 # Sample Output of "ip addr":
60 # 1: eth0: <BROADCAST,MULTIAST> mtu 1500 qdisc mq state UP qlen 1000
61 # link/ether xx:xx:xx:xx:xx:xx brd ff:ff:ff:ff:ff:ff
62 # inet xx.xx.xx.xx/24 brd xx.xx.xx.xx scope global eth0
63
Tony Lee412c6682020-04-01 17:34:30 +080064 ${active_channel_config}= Get Active Channel Config
65 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
Joy Onyerikwu9b668972018-05-22 19:10:43 -050066 ${cmd_output} ${stderr} ${rc}= BMC Execute Command
Tony Lee412c6682020-04-01 17:34:30 +080067 ... /sbin/ip addr | grep ${ethernet_interface}
Prashanth Kattie79c5402017-06-08 07:40:49 -050068
69 # Get line having IP address details.
70 ${lines}= Get Lines Containing String ${cmd_output} inet
71
72 # List IP address details.
73 @{ip_components}= Split To Lines ${lines}
74
75 @{ip_data}= Create List
76
77 # Get all IP addresses and prefix lengths on system.
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -050078 FOR ${ip_component} IN @{ip_components}
79 @{if_info}= Split String ${ip_component}
80 ${ip_n_prefix}= Get From List ${if_info} 1
81 Append To List ${ip_data} ${ip_n_prefix}
82 END
Prashanth Kattie79c5402017-06-08 07:40:49 -050083
84 [Return] ${ip_data}
85
86Get BMC Route Info
87 [Documentation] Get system route info.
88
Prashanth Kattie79c5402017-06-08 07:40:49 -050089
90 # Sample output of "ip route":
91 # default via xx.xx.xx.x dev eth0
92 # xx.xx.xx.0/23 dev eth0 src xx.xx.xx.xx
93 # xx.xx.xx.0/24 dev eth0 src xx.xx.xx.xx
94
Joy Onyerikwu9b668972018-05-22 19:10:43 -050095 ${cmd_output} ${stderr} ${rc}= BMC Execute Command
96 ... /sbin/ip route
Prashanth Kattie79c5402017-06-08 07:40:49 -050097
98 [Return] ${cmd_output}
99
George Keishing02651f02018-04-11 02:07:16 -0500100# TODO: openbmc/openbmc-test-automation#1331
Prashanth Kattie79c5402017-06-08 07:40:49 -0500101Get BMC MAC Address
102 [Documentation] Get system MAC address.
103
Prashanth Kattie79c5402017-06-08 07:40:49 -0500104
105 # Sample output of "ip addr | grep ether":
106 # link/ether xx.xx.xx.xx.xx.xx brd ff:ff:ff:ff:ff:ff
107
Tony Lee8094d382020-04-02 13:14:47 +0800108 ${active_channel_config}= Get Active Channel Config
109 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
110
Joy Onyerikwu9b668972018-05-22 19:10:43 -0500111 ${cmd_output} ${stderr} ${rc}= BMC Execute Command
Tony Lee8094d382020-04-02 13:14:47 +0800112 ... /sbin/ip addr | grep ${ethernet_interface} -A 1 | grep ether
Prashanth Kattie79c5402017-06-08 07:40:49 -0500113
Prashanth Katti9819b162017-12-12 05:38:59 -0600114 # Split the line and return MAC address.
115 # Split list data:
116 # link/ether | xx:xx:xx:xx:xx:xx | brd | ff:ff:ff:ff:ff:ff
117
118 @{words}= Split String ${cmd_output}
119
120 [Return] ${words[1]}
Prashanth Katti40fb8ca2017-07-25 06:47:23 -0500121
George Keishing02651f02018-04-11 02:07:16 -0500122
123Get BMC MAC Address List
124 [Documentation] Get system MAC address
125
126 # Sample output of "ip addr | grep ether":
127 # link/ether xx.xx.xx.xx.xx.xx brd ff:ff:ff:ff:ff:ff
128
Joy Onyerikwu9b668972018-05-22 19:10:43 -0500129 ${cmd_output} ${stderr} ${rc}= BMC Execute Command
130 ... /sbin/ip addr | grep ether
George Keishing02651f02018-04-11 02:07:16 -0500131
132 # Split the line and return MAC address.
133 # Split list data:
134 # link/ether | xx:xx:xx:xx:xx:xx | brd | ff:ff:ff:ff:ff:ff
135 # link/ether | xx:xx:xx:xx:xx:xx | brd | ff:ff:ff:ff:ff:ff
136
137 ${mac_list}= Create List
Joy Onyerikwu9b668972018-05-22 19:10:43 -0500138 @{lines}= Split To Lines ${cmd_output}
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500139 FOR ${line} IN @{lines}
140 @{words}= Split String ${line}
141 Append To List ${mac_list} ${words[1]}
142 END
George Keishing02651f02018-04-11 02:07:16 -0500143
144 [Return] ${mac_list}
145
Prashanth Katti40fb8ca2017-07-25 06:47:23 -0500146Get BMC Hostname
147 [Documentation] Get BMC hostname.
148
Prashanth Kattic068faa2019-04-16 00:57:22 -0500149 # Sample output of "hostname":
150 # test_hostname
Prashanth Katti40fb8ca2017-07-25 06:47:23 -0500151
Prashanth Kattic068faa2019-04-16 00:57:22 -0500152 ${output} ${stderr} ${rc}= BMC Execute Command hostname
Prashanth Katti40fb8ca2017-07-25 06:47:23 -0500153
154 [Return] ${output}
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500155
shrsuman123fdc51d22020-08-18 06:51:09 -0500156Get FW_Env MAC Address
157 [Documentation] Get FW_Env MAC address.
158
159 # Sample output of "fw_printenv | grep ethaddr"
160 # ethaddr=xx:xx:xx:xx:xx:xx:xx
161
162 ${cmd_output} ${stderr} ${rc}= BMC Execute Command
163 ... /sbin/fw_printenv | grep ethaddr
164
165 # Split the line and return MAC address.
166 # Split list data:
167 # ethaddr | xx:xx:xx:xx:xx:xx:xx
168
169 @{words}= Split String ${cmd_output} =
170
171 [Return] ${words[1]}
172
173
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500174Get List Of IP Address Via REST
175 [Documentation] Get list of IP address via REST.
176 [Arguments] @{ip_uri_list}
177
178 # Description of argument(s):
179 # ip_uri_list List of IP objects.
180 # Example:
181 # "data": [
182 # "/xyz/openbmc_project/network/eth0/ipv4/e9767624",
183 # "/xyz/openbmc_project/network/eth0/ipv4/31f4ce8b"
184 # ],
185
186 ${ip_list}= Create List
187
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500188 FOR ${ip_uri} IN @{ip_uri_list}
189 ${ip_addr}= Read Attribute ${ip_uri} Address
190 Append To List ${ip_list} ${ip_addr}
191 END
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500192
193 [Return] @{ip_list}
194
195Delete IP And Object
196 [Documentation] Delete IP and object.
197 [Arguments] ${ip_addr} @{ip_uri_list}
198
199 # Description of argument(s):
200 # ip_addr IP address to be deleted.
201 # ip_uri_list List of IP object URIs.
202
203 # Find IP object having this IP address.
204
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500205 FOR ${ip_uri} IN @{ip_uri_list}
206 ${ip_addr1}= Read Attribute ${ip_uri} Address
207 Run Keyword If '${ip_addr}' == '${ip_addr1}' Exit For Loop
208 END
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500209
210 # If the given IP address is not configured, return.
211 # Otherwise, delete the IP and object.
212
213 Run Keyword And Return If '${ip_addr}' != '${ip_addr1}'
214 ... Pass Execution IP address to be deleted is not configured.
215
216 Run Keyword And Ignore Error OpenBMC Delete Request ${ip_uri}
217
218 # After any modification on network interface, BMC restarts network
Prashanth Katti549c63a2018-07-17 06:13:37 -0500219 # module, wait until it is reachable. Then wait 15 seconds for new
220 # configuration to be updated on BMC.
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500221
Prashanth Katti549c63a2018-07-17 06:13:37 -0500222 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
223 ... ${NETWORK_RETRY_TIME}
224 Sleep 15s
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500225
226 # Verify whether deleted IP address is removed from BMC system.
227
228 ${ip_data}= Get BMC IP Info
Prashanth Katti160faf62017-09-07 01:05:56 -0500229 Should Not Contain Match ${ip_data} ${ip_addr}*
Prashanth Katti90f9ff22017-08-11 06:17:12 -0500230 ... msg=IP address not deleted.
Prashanth Kattidf2e4fdf2018-02-07 07:04:13 -0600231
George Keishing58e47232018-02-12 10:35:15 -0600232Get First Non Pingable IP From Subnet
233 [Documentation] Find first non-pingable IP from the subnet and return it.
234 [Arguments] ${host}=${OPENBMC_HOST}
Prashanth Kattidf2e4fdf2018-02-07 07:04:13 -0600235
236 # Description of argument(s):
George Keishing58e47232018-02-12 10:35:15 -0600237 # host Any valid host name or IP address
238 # (e.g. "machine1" or "9.xx.xx.31").
Prashanth Kattidf2e4fdf2018-02-07 07:04:13 -0600239
George Keishing58e47232018-02-12 10:35:15 -0600240 # Non-pingable IP is unused IP address in the subnet.
241 ${host_name} ${ip_addr}= Get Host Name IP
Prashanth Kattidf2e4fdf2018-02-07 07:04:13 -0600242
243 # Split IP address into network part and host part.
244 # IP address will have 4 octets xx.xx.xx.xx.
245 # Sample output after split:
246 # split_ip [xx.xx.xx, xx]
247
248 ${split_ip}= Split String From Right ${ip_addr} . 1
249 # First element in list is Network part.
250 ${network_part}= Get From List ${split_ip} 0
251
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500252 FOR ${octet4} IN RANGE 1 255
253 ${new_ip}= Catenate ${network_part}.${octet4}
254 ${status}= Run Keyword And Return Status Ping Host ${new_ip}
255 # If IP is non-pingable, return it.
256 Return From Keyword If '${status}' == 'False' ${new_ip}
257 END
Prashanth Kattidf2e4fdf2018-02-07 07:04:13 -0600258
George Keishing58e47232018-02-12 10:35:15 -0600259 Fail msg=No non-pingable IP could be found in subnet ${network_part}.
Prashanth Kattidf2e4fdf2018-02-07 07:04:13 -0600260
George Keishingbf724772018-02-21 08:57:16 -0600261
262Validate MAC On BMC
263 [Documentation] Validate MAC on BMC.
264 [Arguments] ${mac_addr}
265
266 # Description of argument(s):
267 # mac_addr MAC address of the BMC.
268
269 ${system_mac}= Get BMC MAC Address
shrsuman123fdc51d22020-08-18 06:51:09 -0500270 ${mac_new_addr}= Truncate MAC Address ${system_mac} ${mac_addr}
George Keishingbf724772018-02-21 08:57:16 -0600271
shrsuman123fdc51d22020-08-18 06:51:09 -0500272 ${status}= Compare MAC Address ${system_mac} ${mac_new_addr}
George Keishingbf724772018-02-21 08:57:16 -0600273 Should Be True ${status}
shrsuman123fdc51d22020-08-18 06:51:09 -0500274 ... msg=MAC address ${system_mac} does not match ${mac_new_addr}.
275
276Validate MAC On FW_Env
277 [Documentation] Validate MAC on FW_Env.
278 [Arguments] ${mac_addr}
279
280 # Description of argument(s):
281 # mac_addr MAC address of the BMC.
282
283 ${fw_env_addr}= Get FW_Env MAC Address
284 ${mac_new_addr}= Truncate MAC Address ${fw_env_addr} ${mac_addr}
285
286 ${status}= Compare MAC Address ${fw_env_addr} ${mac_new_addr}
287 Should Be True ${status}
288 ... msg=MAC address ${fw_env_addr} does not match ${mac_new_addr}.
289
290Truncate MAC Address
291 [Arguments] ${sys_mac_addr} ${user_mac_addr}
292 # Description of argument(s):
293 # sys_mac_addr MAC address of the BMC.
294 # user_mac_addr user provided MAC address.
295
296 ${mac_byte}= Set Variable ${0}
297 @{user_mac_list}= Split String ${user_mac_addr} :
298 @{sys_mac_list}= Split String ${sys_mac_addr} :
299 ${user_new_mac_list} Create List
300
301 # Truncate extra bytes and bits from MAC address
302 FOR ${mac_item} IN @{sys_mac_list}
303 ${invalid_mac_byte} = Get Regexp Matches ${user_mac_list}[${mac_byte}] [^A-Za-z0-9]+
304 Return From Keyword If ${invalid_mac_byte} ${user_mac_addr}
305 ${mac_int} = Convert To Integer ${user_mac_list}[${mac_byte}] 16
306 ${user_mac_len} = Get Length ${user_mac_list}
307 ${user_mac_byte}= Run Keyword IF ${mac_int} >= ${256} Truncate MAC Bits ${user_mac_list}[${mac_byte}]
308 ... ELSE Set Variable ${user_mac_list}[${mac_byte}]
309
310 Append To List ${user_new_mac_list} ${user_mac_byte}
311 ${mac_byte} = Set Variable ${mac_byte + 1}
312 Exit For Loop If '${mac_byte}' == '${user_mac_len}'
313
314 END
315 ${user_new_mac_string}= Evaluate ":".join(${user_new_mac_list})
316 [Return] ${user_new_mac_string}
317
318Truncate MAC Bits
319 [Arguments] ${user_mac_addr_byte}
320 # Description of argument(s):
321 # user_mac_addr_byte user provided MAC address byte to truncate bits
322
323 ${user_mac_addr_int}= Convert To List ${user_mac_addr_byte}
324 ${user_mac_addr_byte}= Get Slice From List ${user_mac_addr_int} 0 2
325 ${user_mac_addr_byte_string}= Evaluate "".join(${user_mac_addr_byte})
326 [Return] ${user_mac_addr_byte_string}
George Keishingbf724772018-02-21 08:57:16 -0600327
Daniel Gonzalezbfd8aff2018-03-27 10:20:37 -0600328
329Run Build Net
330 [Documentation] Run build_net to preconfigure the ethernet interfaces.
331
332 OS Execute Command build_net help y y
Gunnar Mills7732c7e2018-08-14 11:54:24 -0500333 # Run pingum to check if the "build_net" was run correctly done.
Daniel Gonzalezbfd8aff2018-03-27 10:20:37 -0600334 ${output} ${stderr} ${rc}= OS Execute Command pingum
Prashanth Katti549c63a2018-07-17 06:13:37 -0500335 Should Contain ${output} All networks ping Ok
Sushil Singhf661a102019-06-04 00:52:48 -0500336
337
338Configure Hostname
339 [Documentation] Configure hostname on BMC via Redfish.
340 [Arguments] ${hostname}
341
342 # Description of argument(s):
343 # hostname A hostname value which is to be configured on BMC.
344
345 ${data}= Create Dictionary HostName=${hostname}
346 Redfish.patch ${REDFISH_NW_PROTOCOL_URI} body=&{data}
George Keishing5041d6d2020-01-14 12:19:06 -0600347 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NO_CONTENT}]
Sushil Singhf661a102019-06-04 00:52:48 -0500348
Naman Navin Hegde53691452019-07-30 00:22:37 -0500349
350Verify IP On BMC
351 [Documentation] Verify IP on BMC.
352 [Arguments] ${ip}
353
354 # Description of argument(s):
355 # ip IP address to be verified (e.g. "10.7.7.7").
356
357 # Get IP address details on BMC using IP command.
358 @{ip_data}= Get BMC IP Info
359 Should Contain Match ${ip_data} ${ip}/*
360 ... msg=IP address does not exist.
361
362
363Verify Gateway On BMC
364 [Documentation] Verify gateway on BMC.
365 [Arguments] ${gateway_ip}=0.0.0.0
366
367 # Description of argument(s):
368 # gateway_ip Gateway IP address.
369
370 ${route_info}= Get BMC Route Info
371
372 # If gateway IP is empty or 0.0.0.0 it will not have route entry.
373
374 Run Keyword If '${gateway_ip}' == '0.0.0.0'
375 ... Pass Execution Gateway IP is "0.0.0.0".
376 ... ELSE
377 ... Should Contain ${route_info} ${gateway_ip}
378 ... msg=Gateway IP address not matching.
379
380
381Get BMC DNS Info
382 [Documentation] Get system DNS info.
383
384
385 # Sample output of "resolv.conf":
386 # ### Generated manually via dbus settings ###
387 # nameserver 8.8.8.8
388
389 ${cmd_output} ${stderr} ${rc}= BMC Execute Command
390 ... cat /etc/resolv.conf
391
392 [Return] ${cmd_output}
393
394
395CLI Get Nameservers
396 [Documentation] Get the nameserver IPs from /etc/resolv.conf and return as a list.
397
398 # Example of /etc/resolv.conf data:
399 # nameserver x.x.x.x
400 # nameserver y.y.y.y
401
402 ${stdout} ${stderr} ${rc}= BMC Execute Command egrep nameserver /etc/resolv.conf | cut -f2- -d ' '
403 ${nameservers}= Split String ${stdout}
404
405 [Return] ${nameservers}
Anvesh Kumar Rayankulaada25db2020-02-19 01:29:17 -0600406
407
408Get Network Configuration
409 [Documentation] Get network configuration.
410 # Sample output:
411 #{
412 # "@odata.context": "/redfish/v1/$metadata#EthernetInterface.EthernetInterface",
413 # "@odata.id": "/redfish/v1/Managers/bmc/EthernetInterfaces/eth0",
414 # "@odata.type": "#EthernetInterface.v1_2_0.EthernetInterface",
415 # "Description": "Management Network Interface",
416 # "IPv4Addresses": [
417 # {
418 # "Address": "169.254.xx.xx",
419 # "AddressOrigin": "IPv4LinkLocal",
420 # "Gateway": "0.0.0.0",
421 # "SubnetMask": "255.255.0.0"
422 # },
423 # {
424 # "Address": "xx.xx.xx.xx",
425 # "AddressOrigin": "Static",
426 # "Gateway": "xx.xx.xx.1",
427 # "SubnetMask": "xx.xx.xx.xx"
428 # }
429 # ],
430 # "Id": "eth0",
431 # "MACAddress": "xx:xx:xx:xx:xx:xx",
432 # "Name": "Manager Ethernet Interface",
433 # "SpeedMbps": 0,
434 # "VLAN": {
435 # "VLANEnable": false,
436 # "VLANId": 0
437 # }
Tony Lee412c6682020-04-01 17:34:30 +0800438
439
Tony Lee9f6b2042020-04-27 20:20:43 +0800440 ${active_channel_config}= Get Active Channel Config
Tony Lee412c6682020-04-01 17:34:30 +0800441 ${resp}= Redfish.Get ${REDFISH_NW_ETH_IFACE}${active_channel_config['${CHANNEL_NUMBER}']['name']}
442
Anvesh Kumar Rayankulaada25db2020-02-19 01:29:17 -0600443 @{network_configurations}= Get From Dictionary ${resp.dict} IPv4StaticAddresses
444 [Return] @{network_configurations}
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600445
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500446
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600447Add IP Address
448 [Documentation] Add IP Address To BMC.
449 [Arguments] ${ip} ${subnet_mask} ${gateway}
450 ... ${valid_status_codes}=${HTTP_OK}
451
452 # Description of argument(s):
453 # ip IP address to be added (e.g. "10.7.7.7").
454 # subnet_mask Subnet mask for the IP to be added
455 # (e.g. "255.255.0.0").
456 # gateway Gateway for the IP to be added (e.g. "10.7.7.1").
457 # valid_status_codes Expected return code from patch operation
458 # (e.g. "200"). See prolog of rest_request
459 # method in redfish_plus.py for details.
460
461 ${empty_dict}= Create Dictionary
462 ${ip_data}= Create Dictionary Address=${ip}
463 ... SubnetMask=${subnet_mask} Gateway=${gateway}
464
465 ${patch_list}= Create List
466 ${network_configurations}= Get Network Configuration
467 ${num_entries}= Get Length ${network_configurations}
468
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500469 FOR ${INDEX} IN RANGE 0 ${num_entries}
470 Append To List ${patch_list} ${empty_dict}
471 END
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600472
Anves Kumar rayankula53b80302021-05-21 01:50:03 -0500473 ${valid_status_codes}= Run Keyword If '${valid_status_codes}' == '${HTTP_OK}'
474 ... Set Variable ${HTTP_OK},${HTTP_NO_CONTENT}
475 ... ELSE Set Variable ${valid_status_codes}
476
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600477 # We need not check for existence of IP on BMC while adding.
478 Append To List ${patch_list} ${ip_data}
479 ${data}= Create Dictionary IPv4StaticAddresses=${patch_list}
480
Tony Lee412c6682020-04-01 17:34:30 +0800481 ${active_channel_config}= Get Active Channel Config
482 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
483
484 Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} body=&{data}
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600485 ... valid_status_codes=[${valid_status_codes}]
486
Anves Kumar rayankula53b80302021-05-21 01:50:03 -0500487 Return From Keyword If '${valid_status_codes}' != '${HTTP_OK},${HTTP_NO_CONTENT}'
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600488
489 # Note: Network restart takes around 15-18s after patch request processing.
490 Sleep ${NETWORK_TIMEOUT}s
491 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
492
493 Verify IP On BMC ${ip}
494 Validate Network Config On BMC
495
496
497Delete IP Address
498 [Documentation] Delete IP Address Of BMC.
499 [Arguments] ${ip} ${valid_status_codes}=${HTTP_OK}
500
501 # Description of argument(s):
502 # ip IP address to be deleted (e.g. "10.7.7.7").
503 # valid_status_codes Expected return code from patch operation
504 # (e.g. "200"). See prolog of rest_request
505 # method in redfish_plus.py for details.
506
507 ${empty_dict}= Create Dictionary
508 ${patch_list}= Create List
509
510 @{network_configurations}= Get Network Configuration
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500511 FOR ${network_configuration} IN @{network_configurations}
512 Run Keyword If '${network_configuration['Address']}' == '${ip}'
513 ... Append To List ${patch_list} ${null}
514 ... ELSE Append To List ${patch_list} ${empty_dict}
515 END
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600516
517 ${ip_found}= Run Keyword And Return Status List Should Contain Value
518 ... ${patch_list} ${null} msg=${ip} does not exist on BMC
519 Pass Execution If ${ip_found} == ${False} ${ip} does not exist on BMC
520
521 # Run patch command only if given IP is found on BMC
522 ${data}= Create Dictionary IPv4StaticAddresses=${patch_list}
523
Tony Lee412c6682020-04-01 17:34:30 +0800524 ${active_channel_config}= Get Active Channel Config
525 ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']}
526
527 Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} body=&{data}
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600528 ... valid_status_codes=[${valid_status_codes}]
529
530 # Note: Network restart takes around 15-18s after patch request processing
531 Sleep ${NETWORK_TIMEOUT}s
532 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
533
534 ${delete_status}= Run Keyword And Return Status Verify IP On BMC ${ip}
535 Run Keyword If '${valid_status_codes}' == '${HTTP_OK}'
536 ... Should Be True '${delete_status}' == '${False}'
537 ... ELSE Should Be True '${delete_status}' == '${True}'
538
539 Validate Network Config On BMC
540
541
542Validate Network Config On BMC
543 [Documentation] Check that network info obtained via redfish matches info
544 ... obtained via CLI.
545
546 @{network_configurations}= Get Network Configuration
547 ${ip_data}= Get BMC IP Info
Anvesh Kumar Rayankulae354c1c2020-03-09 06:01:13 -0500548 FOR ${network_configuration} IN @{network_configurations}
549 Should Contain Match ${ip_data} ${network_configuration['Address']}/*
550 ... msg=IP address does not exist.
551 END
552
553
554Create VLAN
555 [Documentation] Create a VLAN.
556 [Arguments] ${id} ${interface}=eth0 ${expected_result}=valid
557
558 # Description of argument(s):
559 # id The VLAN ID (e.g. '53').
560 # interface The physical interface for the VLAN(e.g. 'eth0').
561 # expected_result Expected status of VLAN configuration.
562
563 @{data_vlan_id}= Create List ${interface} ${id}
564 ${data}= Create Dictionary data=@{data_vlan_id}
565 ${resp}= OpenBMC Post Request ${vlan_resource} data=${data}
566 ${resp.status_code}= Convert To String ${resp.status_code}
567 ${status}= Run Keyword And Return Status
568 ... Valid Value resp.status_code ["${HTTP_OK}"]
569
570 Run Keyword If '${expected_result}' == 'error'
571 ... Should Be Equal ${status} ${False}
572 ... msg=Configuration of an invalid VLAN ID Failed.
573 ... ELSE
574 ... Should Be Equal ${status} ${True}
575 ... msg=Configuration of a valid VLAN ID Failed.
576
577 Sleep ${NETWORK_TIMEOUT}s
578
579
580Configure Network Settings On VLAN
581 [Documentation] Configure network settings.
582 [Arguments] ${id} ${ip_addr} ${prefix_len} ${gateway_ip}=${gateway}
583 ... ${expected_result}=valid ${interface}=eth0
584
585 # Description of argument(s):
586 # id The VLAN ID (e.g. '53').
587 # ip_addr IP address of VLAN Interface.
588 # prefix_len Prefix length of VLAN Interface.
589 # gateway_ip Gateway IP address of VLAN Interface.
590 # expected_result Expected status of network setting configuration.
591 # interface Physical Interface on which the VLAN is defined.
592
593 @{ip_parm_list}= Create List ${network_resource}
594 ... ${ip_addr} ${prefix_len} ${gateway_ip}
595
596 ${data}= Create Dictionary data=@{ip_parm_list}
597
598 Run Keyword And Ignore Error OpenBMC Post Request
599 ... ${NETWORK_MANAGER}${interface}_${id}/action/IP data=${data}
600
601 # After any modification on network interface, BMC restarts network
602 # module, wait until it is reachable. Then wait 15 seconds for new
603 # configuration to be updated on BMC.
604
605 Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT}
606 ... ${NETWORK_RETRY_TIME}
607 Sleep ${NETWORK_TIMEOUT}s
608
609 # Verify whether new IP address is populated on BMC system.
610 # It should not allow to configure invalid settings.
611 ${status}= Run Keyword And Return Status
612 ... Verify IP On BMC ${ip_addr}
613
614 Run Keyword If '${expected_result}' == 'error'
615 ... Should Be Equal ${status} ${False}
616 ... msg=Configuration of invalid IP Failed.
617 ... ELSE
618 ... Should Be Equal ${status} ${True}
619 ... msg=Configuration of valid IP Failed.
Prashanth Katti3dc8cc32020-03-04 11:11:01 -0600620
Prashanth Kattib478d902020-05-08 10:05:32 -0500621
622Get BMC Default Gateway
623 [Documentation] Get system default gateway.
624
625 ${route_info}= Get BMC Route Info
626
627 ${lines}= Get Lines Containing String ${route_info} default via
628 @{gateway_list}= Split To Lines ${lines}
629
630 # Extract first default gateway and return.
631 @{default_gw}= Split String ${gateway_list[0]}
632
633 [Return] ${default_gw[2]}