blob: 082d63ded40cf755fa29d0f000d40aeeedf65239 [file] [log] [blame]
Vijay06a169d2020-04-23 09:28:24 -05001*** Settings ***
2
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -05003Documentation VMI static/dynamic IP config tests.
Vijay06a169d2020-04-23 09:28:24 -05004
5Resource ../../lib/resource.robot
6Resource ../../lib/bmc_redfish_resource.robot
7Resource ../../lib/openbmc_ffdc.robot
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -05008Resource ../../lib/bmc_redfish_utils.robot
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -05009Library ../../lib/bmc_network_utils.py
Vijay06a169d2020-04-23 09:28:24 -050010
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -050011Suite Setup Suite Setup Execution
Vijay06a169d2020-04-23 09:28:24 -050012Test Teardown FFDC On Test Case Fail
13Suite Teardown Redfish.Logout
14
15*** Variables ***
16
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -050017# users User Name password
18@{ADMIN} admin_user TestPwd123
19@{OPERATOR} operator_user TestPwd123
20@{ReadOnly} readonly_user TestPwd123
21@{NoAccess} noaccess_user TestPwd123
22&{USERS} Administrator=${ADMIN} Operator=${OPERATOR} ReadOnly=${ReadOnly}
23... NoAccess=${NoAccess}
24
Prashanth Katti1ce68212020-11-13 00:39:03 -060025${test_ipv4} 10.6.6.6
26${test_gateway} 10.6.6.1
shrsuman123c1d3fe32020-09-08 05:04:07 -050027${test_netmask} 255.255.252.0
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -050028
Vijay06a169d2020-04-23 09:28:24 -050029&{DHCP_ENABLED} DHCPEnabled=${${True}}
30&{DHCP_DISABLED} DHCPEnabled=${${False}}
31
32&{ENABLE_DHCP} DHCPv4=&{DHCP_ENABLED}
33&{DISABLE_DHCP} DHCPv4=&{DHCP_DISABLED}
Prashanth Katti1ce68212020-11-13 00:39:03 -060034${wait_time} 10s
Vijay06a169d2020-04-23 09:28:24 -050035
36
37*** Test Cases ***
38
39Verify All VMI EthernetInterfaces
40 [Documentation] Verify all VMI ethernet interfaces.
41 [Tags] Verify_All_VMI_EthernetINterfaces
42
43 Verify VMI EthernetInterfaces
44
45
46Verify Existing VMI Network Interface Details
47 [Documentation] Verify existing VMI network interface details.
48 [Tags] Verify_VMI_Network_Interface_Details
49
50 ${vmi_ip}= Get VMI Network Interface Details
51 ${origin}= Set Variable If ${vmi_ip["DHCPv4"]} == ${False} Static DHCP
52
53 Should Not Be Equal ${vmi_ip["DHCPv4"]} ${vmi_ip["IPv4StaticAddresses"]}
54 Should Be Equal As Strings ${origin} ${vmi_ip["IPv4_AddressOrigin"]}
55 Should Be Equal As Strings ${vmi_ip["Id"]} intf0
George Keishingb3ea0952020-07-01 05:03:56 -050056 Should Be Equal As Strings ${vmi_ip["Description"]}
57 ... Ethernet Interface for Virtual Management Interface
58 Should Be Equal As Strings ${vmi_ip["Name"]} Virtual Management Interface
Vijay06a169d2020-04-23 09:28:24 -050059 Should Be True ${vmi_ip["InterfaceEnabled"]}
60
61
62Delete Existing Static VMI IP Address
63 [Documentation] Delete existing static VMI IP address.
64 [Tags] Delete_Existing_Static_VMI_IP_Address
65
66 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
67 Run Keyword If ${curr_origin} == ${True} Set VMI IPv4 Origin ${False} ${HTTP_ACCEPTED}
68
69 Delete VMI IPv4 Address IPv4StaticAddresses valid_status_code=${HTTP_ACCEPTED}
70 ${default}= Set Variable 0.0.0.0
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -050071 Verify VMI Network Interface Details ${default} Static ${default} ${default}
Vijay06a169d2020-04-23 09:28:24 -050072
73
74Verify User Cannot Delete ReadOnly Property IPv4Addresses
75 [Documentation] Verify user cannot delete readonly property IPv4Addresses.
76 [Tags] Verify_User_Cannot_Delete_ReadOnly_Property_IPv4Addresses
77
78 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
79 Run Keyword If ${curr_origin} == ${False} Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED}
80 Delete VMI IPv4 Address IPv4Addresses valid_status_code=${HTTP_BAD_REQUEST}
81
82
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -050083Assign Valid And Invalid Static IPv4 Address To VMI
Vijay06a169d2020-04-23 09:28:24 -050084 [Documentation] Assign static IPv4 address to VMI.
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -050085 [Tags] Assign_Valid_And_Invalid_Static_IPv4_Address_To_VMI
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -060086 [Template] Set Static IPv4 Address To VMI And Verify
87 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
Vijay06a169d2020-04-23 09:28:24 -050088
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -050089 # ip gateway netmask valid_status_code
90 10.5.20.30 0.0.0.0 255.255.252.0 ${HTTP_ACCEPTED}
91 a.3.118.94 0.0.0.0 255.255.252.0 ${HTTP_BAD_REQUEST}
92
Vijay06a169d2020-04-23 09:28:24 -050093
shrsuman123e37b0cc2020-09-02 00:33:42 -050094Add Multiple IP Addreses On VMI Interface And Verify
95 [Documentation] Add multiple IP addreses on VMI interface and verify.
96 [Tags] Add_Multiple_IP_Addreses_On_VMI_Interface_And_Verify
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -060097 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
shrsuman123e37b0cc2020-09-02 00:33:42 -050098
99 ${ip1}= Create dictionary Address=10.5.5.10 SubnetMask=255.255.252.0 Gateway=0.0.0.0
100 ${ip2}= Create dictionary Address=10.5.5.11 SubnetMask=255.255.252.0 Gateway=0.0.0.0
101 ${ip3}= Create dictionary Address=10.5.5.12 SubnetMask=255.255.252.0 Gateway=0.0.0.0
102 ${ips}= Create List ${ip1} ${ip2} ${ip3}
103
shrsuman123e37b0cc2020-09-02 00:33:42 -0500104 Redfish.Patch /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
105 ... body={'IPv4StaticAddresses':${ips}} valid_status_codes=[${HTTP_ACCEPTED}]
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500106 Verify VMI Network Interface Details ${ip1["Address"]} Static ${ip1["Gateway"]} ${ip1["SubnetMask"]}
shrsuman123e37b0cc2020-09-02 00:33:42 -0500107
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500108
shrsuman123e37b0cc2020-09-02 00:33:42 -0500109Modify IP Addresses On VMI Interface And Verify
110 [Documentation] Modify IP addresses on VMI interface and verify.
111 [Tags] Modify_IP_Addresses_On_VMI_Interface_And_Verify
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600112 [Template] Set Static IPv4 Address To VMI And Verify
113 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
shrsuman123e37b0cc2020-09-02 00:33:42 -0500114
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500115 # ip gateway netmask valid_status_code
116 10.5.5.10 0.0.0.0 255.255.252.0 ${HTTP_ACCEPTED}
117 10.5.5.11 0.0.0.0 255.255.252.0 ${HTTP_ACCEPTED}
Vijay06a169d2020-04-23 09:28:24 -0500118
119Switch Between IP Origins On VMI And Verify Details
120 [Documentation] Switch between IP origins on VMI and verify details.
121 [Tags] Switch_Between_IP_Origins_On_VMI_And_Verify_Details
122
123 Switch VMI IPv4 Origin And Verify Details
124 Switch VMI IPv4 Origin And Verify Details
125
126
127Verify Persistency Of VMI IPv4 Details After Host Reboot
128 [Documentation] Verify persistency of VMI IPv4 details after host reboot.
129 [Tags] Verify_Persistency_Of_VMI_IPv4_Details_After_Host_Reboot
130
131 # Verifying persistency of dynamic address.
132 Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED}
133 ${default}= Set Variable 0.0.0.0
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500134 Verify VMI Network Interface Details ${default} DHCP ${default} ${default}
Vijay06a169d2020-04-23 09:28:24 -0500135
136 # Verifying persistency of static address.
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600137 Switch VMI IPv4 Origin And Verify Details
138 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
Vijay06a169d2020-04-23 09:28:24 -0500139
140
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500141Delete VMI Static IP Address And Verify
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500142 [Documentation] Delete VMI static IP address and verify.
143 [Tags] Delete_VMI_Static_IP_Address_And_Verify
144 [Teardown] Test Teardown Execution
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500145
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600146 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
147 Delete VMI IPv4 Address
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500148 ${resp}= Redfish.Get
149 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
150 Should Be Empty ${resp.dict["IPv4Addresses"]}
151
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500152
shrsuman123c1d3fe32020-09-08 05:04:07 -0500153Verify Successful VMI IP Static Configuration On HOST Boot After Session Delete
154 [Documentation] Verify VMI IP static Configuration On HOST Boot After session deleted.
155 [Tags] Verify_Successful_VMI_IP_Static_Configuration_On_HOST_Boot_After_Session_Delete
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500156 [Teardown] Run keywords Delete VMI IPv4 Address IPv4Addresses AND Test Teardown Execution
shrsuman123c1d3fe32020-09-08 05:04:07 -0500157
158 Set Static IPv4 Address To VMI ${test_ipv4} ${test_gateway} ${test_netmask}
159
160 ${session_info}= Get Redfish Session Info
161 Redfish.Delete ${session_info["location"]}
162
163 # Create a new Redfish session
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500164 Redfish Power Off
165 Redfish Power On
shrsuman123c1d3fe32020-09-08 05:04:07 -0500166
167 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask}
168
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500169
shrsuman123c1d3fe32020-09-08 05:04:07 -0500170Verify Persistency Of VMI DHCP IP Configuration After Multiple HOST Reboots
171 [Documentation] Verify Persistency Of VMI DHCP IP configuration After Multiple HOST Reboots
172 [Tags] Verify_Persistency_Of_VMI_DHCP_IP_Configuration_After_Multiple_HOST_Reboots
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500173 [Teardown] Test Teardown Execution
shrsuman123c1d3fe32020-09-08 05:04:07 -0500174
175 ${LOOP_COUNT}= Set Variable ${3}
176 Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED}
177 Run Keywords Redfish Power Off AND Redfish Power On
178 ${vmi_ip_config}= Get VMI Network Interface Details
179 # Verifying persistency of dynamic address after multiple reboots.
180 Repeat Keyword ${LOOP_COUNT} times
181 ... Verify VMI Network Interface Details ${vmi_ip_config["IPv4_Address"]} DHCP ${vmi_ip_config["IPv4_Gateway"]}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500182 ... ${vmi_ip_config["IPv4_SubnetMask"]}
183
184
185Enable DHCP When Static IP Configured And Verify Static IP
186 [Documentation] Enable DHCP when static ip configured and verify static ip
187 [Tags] Enable_DHCP_when_Static_IP_Configured_And_Verify_Static_IP
188 [Teardown] Test Teardown Execution
189
190 Verify Assigning Static IPv4 Address To VMI ${test_ipv4} ${test_gateway} ${test_netmask}
191 Set VMI IPv4 Origin ${True}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500192 ${vmi_network_conf}= Get VMI Network Interface Details
193 Should Not Be Equal As Strings ${test_ipv4} ${vmi_network_conf["IPv4_Address"]}
194
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500195
shrsuman123e37b0cc2020-09-02 00:33:42 -0500196Verify VMI Static IP Configuration Persist On BMC Reset Before Host Boot
197 [Documentation] Verify VMI static IP configuration persist on BMC reset.
198 [Tags] Verify_VMI_Static_IP_Configuration_Persist_On_BMC_Reset_Before_Host_Boot
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600199 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail
shrsuman123e37b0cc2020-09-02 00:33:42 -0500200
201 Set Static IPv4 Address To VMI ${test_ipv4} ${test_gateway} ${test_netmask}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500202 OBMC Reboot (off)
203 Redfish Power On
shrsuman123e37b0cc2020-09-02 00:33:42 -0500204 # Verifying the VMI static configuration
205 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask}
206
207
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500208Verify To Configure VMI Static IP Address With Different User Roles
209 [Documentation] Verify to configure vmi static ip address with different user roles.
210 [Tags] Verify_To_Configure_VMI_Static_IP_Address_With_Different_User_Roles
211 [Setup] Create Users With Different Roles users=${USERS} force=${True}
212 [Template] Config VMI Static IP Address Using Different Users
213 [Teardown] Delete BMC Users Using Redfish
214
215 # username password ip_address gateway nemask valid_status_code
216 admin_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_ACCEPTED}
217 operator_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
218 readonly_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
219 noaccess_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
220
221
222Verify To Delete VMI Static IP Address With Different User Roles
223 [Documentation] Verify to delete vmi static IP address with different user roles.
224 [Tags] Verify_To_Delete_VMI_Static_IP_Address_With_Different_User_Roles
225 [Setup] Create Users With Different Roles users=${USERS} force=${True}
226 [Template] Delete VMI Static IP Address Using Different Users
227 [Teardown] Delete BMC Users Using Redfish
228
229 # username password valid_status_code
230 admin_user TestPwd123 ${HTTP_ACCEPTED}
231 operator_user TestPwd123 ${HTTP_FORBIDDEN}
232 readonly_user TestPwd123 ${HTTP_FORBIDDEN}
233 noaccess_user TestPwd123 ${HTTP_FORBIDDEN}
234
235
236Verify To Update VMI Static IP Address With Different User Roles
237 [Documentation] Verify to update vmi static IP address with different user roles.
238 [Tags] Verify_To_Update_VMI_Static_IP_Address_With_Different_User_Roles_And_Verify
239 [Setup] Create Users With Different Roles users=${USERS} force=${True}
240 [Template] Config VMI Static IP Address Using Different Users
241 [Teardown] Delete BMC Users Using Redfish
242
243 # username password ip_address gateway nemask valid_status_code
244 admin_user TestPwd123 10.5.10.20 0.0.0.0 255.255.0.0 ${HTTP_ACCEPTED}
245 operator_user TestPwd123 10.5.10.30 0.0.0.0 255.255.0.0 ${HTTP_FORBIDDEN}
246 readonly_user TestPwd123 10.5.20.40 0.0.0.0 255.255.0.0 ${HTTP_FORBIDDEN}
247 noaccess_user TestPwd123 10.5.30.50 0.0.0.0 255.255.0.0 ${HTTP_FORBIDDEN}
248
249
250Verify To Read VMI Network Configuration With Different User Roles
251 [Documentation] Verify to read vmi network configuration with different user roles.
252 [Tags] Verify_To_Read_VMI_Network_Configuration_Via_Different_User_Roles
253 [Setup] Create Users With Different Roles users=${USERS} force=${True}
254 [Template] Read VMI Static IP Address Using Different Users
255 [Teardown] Delete BMC Users Using Redfish
256
257 # username password valid_status_code
258 admin_user TestPwd123 ${HTTP_OK}
259 operator_user TestPwd123 ${HTTP_OK}
260 readonly_user TestPwd123 ${HTTP_OK}
261 noaccess_user TestPwd123 ${HTTP_FORBIDDEN}
262
shrsuman123e37b0cc2020-09-02 00:33:42 -0500263
Vijay06a169d2020-04-23 09:28:24 -0500264*** Keywords ***
265
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500266Suite Setup Execution
267 [Documentation] Do test setup execution task.
268
269 Redfish.Login
270 Redfish Power On
271 ${active_channel_config}= Get Active Channel Config
272 Set Suite Variable ${active_channel_config}
273 ${resp}= Redfish.Get
274 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
275 ${ip_resp}= Evaluate json.loads('''${resp.text}''') json
276 ${length}= Get Length ${ip_resp["IPv4StaticAddresses"]}
277 ${vmi_network_conf}= Run Keyword If ${length} != ${0} Get VMI Network Interface Details
278 Set Suite Variable ${vmi_network_conf}
279
280
281Test Teardown Execution
282 [Documentation] Do test teardown execution task.
283
284 FFDC On Test Case Fail
285 ${curr_mode}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
286 Run Keyword If ${curr_mode} == ${True} Set VMI IPv4 Origin ${False}
287 Run Keyword If ${vmi_network_conf} != ${None}
288 ... Verify Assigning Static IPv4 Address To VMI ${vmi_network_conf["IPv4_Address"]}
289 ... ${vmi_network_conf["IPv4_Gateway"]} ${vmi_network_conf["IPv4_SubnetMask"]}
290
291
Vijay06a169d2020-04-23 09:28:24 -0500292Get VMI Network Interface Details
293 [Documentation] Get VMI network interface details.
294 [Arguments] ${valid_status_code}=${HTTP_OK}
295
296 # Description of argument(s):
297 # valid_status_code Expected valid status code from GET request.
298
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500299 # Note: It returns a dictionary of VMI eth0 parameters.
Vijay06a169d2020-04-23 09:28:24 -0500300
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500301 ${active_channel_config}= Get Active Channel Config
302 ${resp}= Redfish.Get
303 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
Vijay06a169d2020-04-23 09:28:24 -0500304 ... valid_status_codes=[${valid_status_code}]
305
306 ${ip_resp}= Evaluate json.loads('''${resp.text}''') json
307
308 ${static_exists}= Run Keyword And Ignore Error
309 ... Set Variable ${ip_resp["IPv4StaticAddresses"][0]["Address"]}
310 ${static_exists}= Set Variable If '${static_exists[0]}' == 'PASS' ${True} ${False}
311
312 ${vmi_ip}= Create Dictionary DHCPv4=${${ip_resp["DHCPv4"]["DHCPEnabled"]}} Id=${ip_resp["Id"]}
313 ... Description=${ip_resp["Description"]} IPv4_Address=${ip_resp["IPv4Addresses"][0]["Address"]}
314 ... IPv4_AddressOrigin=${ip_resp["IPv4Addresses"][0]["AddressOrigin"]} Name=${ip_resp["Name"]}
Sushil Singh810234d2020-05-13 12:12:03 -0500315 ... IPv4_Gateway=${ip_resp["IPv4Addresses"][0]["Gateway"]}
316 ... InterfaceEnabled=${${ip_resp["InterfaceEnabled"]}}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500317 ... IPv4_SubnetMask=${ip_resp["IPv4Addresses"][0]["SubnetMask"]}
Vijay06a169d2020-04-23 09:28:24 -0500318 ... IPv4StaticAddresses=${${static_exists}}
319
320 [Return] &{vmi_ip}
321
322
323Get Immediate Child Parameter From VMI Network Interface
324 [Documentation] Get immediate child parameter from VMI network interface.
325 [Arguments] ${parameter} ${valid_status_code}=${HTTP_OK}
326
327 # Description of argument(s):
328 # parameter parameter for which value is required. Ex: DHCPEnabled, MACAddress etc.
329 # valid_status_code Expected valid status code from GET request.
330
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500331 ${active_channel_config}= Get Active Channel Config
332 ${resp}= Redfish.Get
333 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
Vijay06a169d2020-04-23 09:28:24 -0500334 ... valid_status_codes=[${valid_status_code}]
335
336 ${ip_resp}= Evaluate json.loads('''${resp.text}''') json
337 ${value}= Set Variable If '${parameter}' != 'DHCPEnabled' ${ip_resp["${parameter}"]}
338 ... ${ip_resp["DHCPv4"]["${parameter}"]}
339
340 [Return] ${value}
341
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600342
Vijay06a169d2020-04-23 09:28:24 -0500343Verify VMI EthernetInterfaces
344 [Documentation] Verify VMI ethernet interfaces.
345 [Arguments] ${valid_status_code}=${HTTP_OK}
346
347 # Description of argument(s):
348 # valid_status_code Expected valid status code from GET request.
349
350 ${resp}= Redfish.Get /redfish/v1/Systems/hypervisor/EthernetInterfaces
351 ... valid_status_codes=[${valid_status_code}]
352
353 ${resp}= Evaluate json.loads('''${resp.text}''') json
354 ${interfaces}= Set Variable ${resp["Members"]}
355
356 Should Be Equal As Strings ${interfaces[0]}[@odata.id]
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500357 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth0
Vijay06a169d2020-04-23 09:28:24 -0500358 Should Be Equal As Strings ${interfaces[1]}[@odata.id]
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500359 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth1
Vijay06a169d2020-04-23 09:28:24 -0500360
361 Should Be Equal ${resp["Members@odata.count"]} ${2}
362
363
364Verify VMI Network Interface Details
365 [Documentation] Verify VMI network interface details.
366 [Arguments] ${ip} ${origin} ${gateway} ${netmask}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500367 ... ${valid_status_code}=${HTTP_OK}
Vijay06a169d2020-04-23 09:28:24 -0500368
369 # Description of argument(s):
370 # ip VMI IPv4 address.
371 # origin Origin of IPv4 address eg. Static or DHCP.
372 # gateway Gateway for VMI IP.
373 # netmask Subnetmask for VMI IP.
374 # valid_status_code Expected valid status code from GET request. Default is HTTP_OK.
Vijay06a169d2020-04-23 09:28:24 -0500375
Vijay06a169d2020-04-23 09:28:24 -0500376 ${vmi_ip}= Get VMI Network Interface Details ${valid_status_code}
377 Should Be Equal As Strings ${origin} ${vmi_ip["IPv4_AddressOrigin"]}
378 Should Be Equal As Strings ${gateway} ${vmi_ip["IPv4_Gateway"]}
379 Should Be Equal As Strings ${netmask} ${vmi_ip["IPv4_SubnetMask"]}
Vijay06a169d2020-04-23 09:28:24 -0500380 Should Be Equal As Strings ${ip} ${vmi_ip["IPv4_Address"]}
381
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600382
383Set Static IPv4 Address To VMI And Verify
Vijay06a169d2020-04-23 09:28:24 -0500384 [Documentation] Set static IPv4 address to VMI.
385 [Arguments] ${ip} ${gateway} ${netmask} ${valid_status_code}=${HTTP_ACCEPTED}
386
387 # Description of argument(s):
388 # ip VMI IPv4 address.
389 # gateway Gateway for VMI IP.
390 # netmask Subnetmask for VMI IP.
391 # valid_status_code Expected valid status code from GET request. Default is HTTP_ACCEPTED.
392
393 ${data}= Set Variable
394 ... {"IPv4StaticAddresses": [{"Address": "${ip}","SubnetMask": "${netmask}","Gateway": "${gateway}"}]}
395
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500396 ${active_channel_config}= Get Active Channel Config
397 ${resp}= Redfish.Patch
398 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
399 ... body=${data} valid_status_codes=[${valid_status_code}]
Prashanth Katti1ce68212020-11-13 00:39:03 -0600400
401 # Wait few seconds for new configuration to get populated on runtime.
402 Sleep ${wait_time}
Vijay06a169d2020-04-23 09:28:24 -0500403
Vijay06a169d2020-04-23 09:28:24 -0500404 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500405 Verify VMI Network Interface Details ${ip} Static ${gateway} ${netmask}
Vijay06a169d2020-04-23 09:28:24 -0500406
407
408Delete VMI IPv4 Address
409 [Documentation] Delete VMI IPv4 address.
410 [Arguments] ${delete_param}=IPv4StaticAddresses ${valid_status_code}=${HTTP_ACCEPTED}
411
412 # Description of argument(s):
413 # delete_param Parameter to be deleted eg. IPv4StaticAddresses or IPv4Addresses.
414 # Default is IPv4StaticAddresses.
415 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_OK.
416
417 ${data}= Set Variable {"${delete_param}": [${Null}]}
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500418 ${active_channel_config}= Get Active Channel Config
419 ${resp}= Redfish.Patch
420 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
421 ... body=${data} valid_status_codes=[${valid_status_code}]
Vijay06a169d2020-04-23 09:28:24 -0500422
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600423 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
424 ${resp}= Redfish.Get
425 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
426 Should Be Empty ${resp.dict["IPv4StaticAddresses"]}
427
Vijay06a169d2020-04-23 09:28:24 -0500428
429Set VMI IPv4 Origin
430 [Documentation] Set VMI IPv4 origin.
431 [Arguments] ${dhcp_enabled}=${False} ${valid_status_code}=${HTTP_ACCEPTED}
432
433 # Description of argument(s):
434 # dhcp_enabled True if user wants to enable DHCP. Default is Static, hence value is set to False.
435 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_OK.
436
437 ${data}= Set Variable If ${dhcp_enabled} == ${False} ${DISABLE_DHCP} ${ENABLE_DHCP}
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500438 ${resp}= Redfish.Patch /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth0 body=${data}
Vijay06a169d2020-04-23 09:28:24 -0500439 ... valid_status_codes=[${valid_status_code}]
440
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600441 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
442 ${resp}= Redfish.Get
443 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
444 Should Be Equal ${resp.dict["DHCPv4"]["DHCPEnabled"]} ${dhcp_enabled}
445
Vijay06a169d2020-04-23 09:28:24 -0500446
447Switch VMI IPv4 Origin And Verify Details
448 [Documentation] Switch VMI IPv4 origin and verify details.
Vijay06a169d2020-04-23 09:28:24 -0500449
450 ${curr_mode}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
451 ${dhcp_enabled}= Set Variable If ${curr_mode} == ${False} ${True} ${False}
452
453 ${default}= Set Variable 0.0.0.0
454 ${origin}= Set Variable If ${curr_mode} == ${False} DHCP Static
455 Set VMI IPv4 Origin ${dhcp_enabled} ${HTTP_ACCEPTED}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500456 Verify VMI Network Interface Details ${default} ${origin} ${default} ${default}
Vijay06a169d2020-04-23 09:28:24 -0500457
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500458
459Delete VMI Static IP Address Using Different Users
460 [Documentation] Update user role and delete vmi static IP address.
461 [Arguments] ${username} ${password} ${valid_status_code}
462 [Teardown] Run Keywords Redfish.Login AND
463 ... Verify Assigning Static IPv4 Address To VMI ${test_ipv4} ${test_gateway}
464 ... ${test_netmask} ${HTTP_ACCEPTED} AND Redfish.Logout
465
466 # Description of argument(s):
467 # username The host username.
468 # password The host password.
469 # valid_status_code The expected valid status code.
470
471 Redfish.Login ${username} ${password}
472 Delete VMI IPv4 Address delete_param=IPv4StaticAddresses valid_status_code=${valid_status_code}
473 Redfish.Logout
474
475
476Config VMI Static IP Address Using Different Users
477 [Documentation] Update user role and update vmi static ip address.
478 [Arguments] ${username} ${password} ${ip} ${gateway} ${netmask}
479 ... ${valid_status_code}
480
481 # Description of argument(s):
482 # username The host username.
483 # password The host password.
484 # ip IP address to be added (e.g. "10.7.7.7").
485 # subnet_mask Subnet mask for the IP to be added
486 # (e.g. "255.255.0.0").
487 # gateway Gateway for the IP to be added (e.g. "10.7.7.1").
488 # valid_status_code The expected valid status code.
489
490 Redfish.Login ${username} ${password}
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600491 Set Static IPv4 Address To VMI And Verify ${ip} ${gateway} ${netmask} ${valid_status_code}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500492 Redfish.Logout
493
494
495Read VMI Static IP Address Using Different Users
496 [Documentation] Update user role and read vmi static ip address.
497 [Arguments] ${username} ${password} ${valid_status_code}
498
499 # Description of argument(s):
500 # username The host username.
501 # password The host password.
502 # valid_status_code The expected valid status code.
503
504 Redfish.Login ${username} ${password}
505 Redfish.Get
506 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
507 ... valid_status_codes=[${valid_status_code}]
508 Redfish.Logout
509
510
511Delete BMC Users Using Redfish
512 [Documentation] Delete BMC users via redfish.
513
514 Redfish.Login
515 Delete BMC Users Via Redfish users=${USERS}