blob: 19b953305a94921e51174f7356589d56a0d63f19 [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
shrsuman123c1d3fe32020-09-08 05:04:07 -0500175 Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED}
shrsuman123c1d3fe32020-09-08 05:04:07 -0500176 ${vmi_ip_config}= Get VMI Network Interface Details
177 # Verifying persistency of dynamic address after multiple reboots.
shrsuman123f559cbe2021-01-06 05:40:45 -0600178 FOR ${i} IN RANGE ${2}
179 Redfish Power Off
180 Redfish Power On
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"]}
shrsuman123f559cbe2021-01-06 05:40:45 -0600183 END
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500184
185
186Enable DHCP When Static IP Configured And Verify Static IP
187 [Documentation] Enable DHCP when static ip configured and verify static ip
188 [Tags] Enable_DHCP_when_Static_IP_Configured_And_Verify_Static_IP
189 [Teardown] Test Teardown Execution
190
shrsuman123f559cbe2021-01-06 05:40:45 -0600191 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500192 Set VMI IPv4 Origin ${True}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500193 ${vmi_network_conf}= Get VMI Network Interface Details
194 Should Not Be Equal As Strings ${test_ipv4} ${vmi_network_conf["IPv4_Address"]}
195
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500196
shrsuman123e37b0cc2020-09-02 00:33:42 -0500197Verify VMI Static IP Configuration Persist On BMC Reset Before Host Boot
198 [Documentation] Verify VMI static IP configuration persist on BMC reset.
199 [Tags] Verify_VMI_Static_IP_Configuration_Persist_On_BMC_Reset_Before_Host_Boot
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600200 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail
shrsuman123e37b0cc2020-09-02 00:33:42 -0500201
202 Set Static IPv4 Address To VMI ${test_ipv4} ${test_gateway} ${test_netmask}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500203 OBMC Reboot (off)
204 Redfish Power On
shrsuman123e37b0cc2020-09-02 00:33:42 -0500205 # Verifying the VMI static configuration
206 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask}
207
208
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500209Verify To Configure VMI Static IP Address With Different User Roles
210 [Documentation] Verify to configure vmi static ip address with different user roles.
211 [Tags] Verify_To_Configure_VMI_Static_IP_Address_With_Different_User_Roles
212 [Setup] Create Users With Different Roles users=${USERS} force=${True}
213 [Template] Config VMI Static IP Address Using Different Users
214 [Teardown] Delete BMC Users Using Redfish
215
216 # username password ip_address gateway nemask valid_status_code
217 admin_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_ACCEPTED}
218 operator_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
219 readonly_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
220 noaccess_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
221
222
223Verify To Delete VMI Static IP Address With Different User Roles
224 [Documentation] Verify to delete vmi static IP address with different user roles.
225 [Tags] Verify_To_Delete_VMI_Static_IP_Address_With_Different_User_Roles
226 [Setup] Create Users With Different Roles users=${USERS} force=${True}
227 [Template] Delete VMI Static IP Address Using Different Users
228 [Teardown] Delete BMC Users Using Redfish
229
230 # username password valid_status_code
231 admin_user TestPwd123 ${HTTP_ACCEPTED}
232 operator_user TestPwd123 ${HTTP_FORBIDDEN}
233 readonly_user TestPwd123 ${HTTP_FORBIDDEN}
234 noaccess_user TestPwd123 ${HTTP_FORBIDDEN}
235
236
237Verify To Update VMI Static IP Address With Different User Roles
238 [Documentation] Verify to update vmi static IP address with different user roles.
239 [Tags] Verify_To_Update_VMI_Static_IP_Address_With_Different_User_Roles_And_Verify
240 [Setup] Create Users With Different Roles users=${USERS} force=${True}
241 [Template] Config VMI Static IP Address Using Different Users
242 [Teardown] Delete BMC Users Using Redfish
243
244 # username password ip_address gateway nemask valid_status_code
245 admin_user TestPwd123 10.5.10.20 0.0.0.0 255.255.0.0 ${HTTP_ACCEPTED}
246 operator_user TestPwd123 10.5.10.30 0.0.0.0 255.255.0.0 ${HTTP_FORBIDDEN}
247 readonly_user TestPwd123 10.5.20.40 0.0.0.0 255.255.0.0 ${HTTP_FORBIDDEN}
248 noaccess_user TestPwd123 10.5.30.50 0.0.0.0 255.255.0.0 ${HTTP_FORBIDDEN}
249
250
251Verify To Read VMI Network Configuration With Different User Roles
252 [Documentation] Verify to read vmi network configuration with different user roles.
253 [Tags] Verify_To_Read_VMI_Network_Configuration_Via_Different_User_Roles
254 [Setup] Create Users With Different Roles users=${USERS} force=${True}
255 [Template] Read VMI Static IP Address Using Different Users
256 [Teardown] Delete BMC Users Using Redfish
257
258 # username password valid_status_code
259 admin_user TestPwd123 ${HTTP_OK}
260 operator_user TestPwd123 ${HTTP_OK}
261 readonly_user TestPwd123 ${HTTP_OK}
262 noaccess_user TestPwd123 ${HTTP_FORBIDDEN}
263
shrsuman123b361d412020-09-30 06:17:23 -0500264Enable DHCP On VMI Network Via Different Users Roles And Verify
265 [Documentation] Enable DHCP On VMI Network Via Different Users Roles And Verify.
266 [Tags] Enable_DHCP_On_VMI_Network_Via_Different_Users_Roles_And_Verify
267 [Setup] Create Users With Different Roles users=${USERS} force=${True}
268 [Template] Update User Role And Set VMI IPv4 Origin
269 [Teardown] Delete BMC Users Using Redfish
270
271 # username password dhcp_enabled valid_status_code
272 admin_user TestPwd123 ${True} ${HTTP_ACCEPTED}
273 operator_user TestPwd123 ${True} ${HTTP_FORBIDDEN}
274 readonly_user TestPwd123 ${True} ${HTTP_FORBIDDEN}
275 noaccess_user TestPwd123 ${True} ${HTTP_FORBIDDEN}
276
277Disable DHCP On VMI Network Via Different Users Roles And Verify
278 [Documentation] Disable DHCP On VMI Network Via Different Users Roles And Verify.
279 [Tags] Disable_DHCP_On_VMI_Network_Via_Different_Users_Roles_And_Verify
280 [Setup] Create Users With Different Roles users=${USERS} force=${True}
281 [Template] Update User Role And Set VMI IPv4 Origin
282 [Teardown] Delete BMC Users Using Redfish
283
284 # username password dhcp_enabled valid_status_code
285 admin_user TestPwd123 ${False} ${HTTP_ACCEPTED}
286 operator_user TestPwd123 ${False} ${HTTP_FORBIDDEN}
287 readonly_user TestPwd123 ${False} ${HTTP_FORBIDDEN}
288 noaccess_user TestPwd123 ${False} ${HTTP_FORBIDDEN}
289
shrsuman123e37b0cc2020-09-02 00:33:42 -0500290
Anves Kumar rayankula55b939e2020-08-12 04:19:01 -0500291Enable And Disable DHCP And Verify
292 [Documentation] verify enable DHCP and disable DHCP.
293 [Tags] Enabled_And_Disabled_DHCP_Verify
294
295 Set VMI IPv4 Origin ${True}
296 ${default}= Set Variable 0.0.0.0
297 Verify VMI Network Interface Details ${default} DHCP ${default} ${default}
298 Set VMI IPv4 Origin ${False}
299 Verify VMI Network Interface Details ${default} Static ${default} ${default}
300
301
302Multiple Times Enable And Disable DHCP And Verify
303 [Documentation] Enable and Disable DHCP in a loop and verify VMI gets an IP address from DHCP
304 ... each time when DHCP is enabled
305 [Tags] Multiple_Times_Enable_And_Disable_DHCP_And_Verify
306
307 ${default}= Set Variable 0.0.0.0
308 FOR ${i} IN RANGE ${2}
309 Set VMI IPv4 Origin ${True}
310 Verify VMI Network Interface Details ${default} DHCP ${default} ${default}
311 Set VMI IPv4 Origin ${False}
312 Verify VMI Network Interface Details ${default} Static ${default} ${default}
313 END
314
315
Vijay06a169d2020-04-23 09:28:24 -0500316*** Keywords ***
317
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500318Suite Setup Execution
319 [Documentation] Do test setup execution task.
320
321 Redfish.Login
322 Redfish Power On
323 ${active_channel_config}= Get Active Channel Config
324 Set Suite Variable ${active_channel_config}
325 ${resp}= Redfish.Get
326 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
327 ${ip_resp}= Evaluate json.loads('''${resp.text}''') json
328 ${length}= Get Length ${ip_resp["IPv4StaticAddresses"]}
329 ${vmi_network_conf}= Run Keyword If ${length} != ${0} Get VMI Network Interface Details
330 Set Suite Variable ${vmi_network_conf}
331
332
333Test Teardown Execution
334 [Documentation] Do test teardown execution task.
335
336 FFDC On Test Case Fail
337 ${curr_mode}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
338 Run Keyword If ${curr_mode} == ${True} Set VMI IPv4 Origin ${False}
339 Run Keyword If ${vmi_network_conf} != ${None}
shrsuman123f559cbe2021-01-06 05:40:45 -0600340 ... Set Static IPv4 Address To VMI And Verify ${vmi_network_conf["IPv4_Address"]}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500341 ... ${vmi_network_conf["IPv4_Gateway"]} ${vmi_network_conf["IPv4_SubnetMask"]}
342
343
Vijay06a169d2020-04-23 09:28:24 -0500344Get VMI Network Interface Details
345 [Documentation] Get VMI network interface details.
346 [Arguments] ${valid_status_code}=${HTTP_OK}
347
348 # Description of argument(s):
349 # valid_status_code Expected valid status code from GET request.
350
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500351 # Note: It returns a dictionary of VMI eth0 parameters.
Vijay06a169d2020-04-23 09:28:24 -0500352
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500353 ${active_channel_config}= Get Active Channel Config
354 ${resp}= Redfish.Get
355 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
Vijay06a169d2020-04-23 09:28:24 -0500356 ... valid_status_codes=[${valid_status_code}]
357
358 ${ip_resp}= Evaluate json.loads('''${resp.text}''') json
359
360 ${static_exists}= Run Keyword And Ignore Error
361 ... Set Variable ${ip_resp["IPv4StaticAddresses"][0]["Address"]}
362 ${static_exists}= Set Variable If '${static_exists[0]}' == 'PASS' ${True} ${False}
363
364 ${vmi_ip}= Create Dictionary DHCPv4=${${ip_resp["DHCPv4"]["DHCPEnabled"]}} Id=${ip_resp["Id"]}
365 ... Description=${ip_resp["Description"]} IPv4_Address=${ip_resp["IPv4Addresses"][0]["Address"]}
366 ... IPv4_AddressOrigin=${ip_resp["IPv4Addresses"][0]["AddressOrigin"]} Name=${ip_resp["Name"]}
Sushil Singh810234d2020-05-13 12:12:03 -0500367 ... IPv4_Gateway=${ip_resp["IPv4Addresses"][0]["Gateway"]}
368 ... InterfaceEnabled=${${ip_resp["InterfaceEnabled"]}}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500369 ... IPv4_SubnetMask=${ip_resp["IPv4Addresses"][0]["SubnetMask"]}
Vijay06a169d2020-04-23 09:28:24 -0500370 ... IPv4StaticAddresses=${${static_exists}}
371
372 [Return] &{vmi_ip}
373
374
375Get Immediate Child Parameter From VMI Network Interface
376 [Documentation] Get immediate child parameter from VMI network interface.
377 [Arguments] ${parameter} ${valid_status_code}=${HTTP_OK}
378
379 # Description of argument(s):
380 # parameter parameter for which value is required. Ex: DHCPEnabled, MACAddress etc.
381 # valid_status_code Expected valid status code from GET request.
382
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500383 ${active_channel_config}= Get Active Channel Config
384 ${resp}= Redfish.Get
385 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
Vijay06a169d2020-04-23 09:28:24 -0500386 ... valid_status_codes=[${valid_status_code}]
387
388 ${ip_resp}= Evaluate json.loads('''${resp.text}''') json
389 ${value}= Set Variable If '${parameter}' != 'DHCPEnabled' ${ip_resp["${parameter}"]}
390 ... ${ip_resp["DHCPv4"]["${parameter}"]}
391
392 [Return] ${value}
393
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600394
Vijay06a169d2020-04-23 09:28:24 -0500395Verify VMI EthernetInterfaces
396 [Documentation] Verify VMI ethernet interfaces.
397 [Arguments] ${valid_status_code}=${HTTP_OK}
398
399 # Description of argument(s):
400 # valid_status_code Expected valid status code from GET request.
401
402 ${resp}= Redfish.Get /redfish/v1/Systems/hypervisor/EthernetInterfaces
403 ... valid_status_codes=[${valid_status_code}]
404
405 ${resp}= Evaluate json.loads('''${resp.text}''') json
406 ${interfaces}= Set Variable ${resp["Members"]}
407
408 Should Be Equal As Strings ${interfaces[0]}[@odata.id]
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500409 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth0
Vijay06a169d2020-04-23 09:28:24 -0500410 Should Be Equal As Strings ${interfaces[1]}[@odata.id]
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500411 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth1
Vijay06a169d2020-04-23 09:28:24 -0500412
413 Should Be Equal ${resp["Members@odata.count"]} ${2}
414
415
416Verify VMI Network Interface Details
417 [Documentation] Verify VMI network interface details.
418 [Arguments] ${ip} ${origin} ${gateway} ${netmask}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500419 ... ${valid_status_code}=${HTTP_OK}
Vijay06a169d2020-04-23 09:28:24 -0500420
421 # Description of argument(s):
422 # ip VMI IPv4 address.
423 # origin Origin of IPv4 address eg. Static or DHCP.
424 # gateway Gateway for VMI IP.
425 # netmask Subnetmask for VMI IP.
426 # valid_status_code Expected valid status code from GET request. Default is HTTP_OK.
Vijay06a169d2020-04-23 09:28:24 -0500427
Vijay06a169d2020-04-23 09:28:24 -0500428 ${vmi_ip}= Get VMI Network Interface Details ${valid_status_code}
429 Should Be Equal As Strings ${origin} ${vmi_ip["IPv4_AddressOrigin"]}
430 Should Be Equal As Strings ${gateway} ${vmi_ip["IPv4_Gateway"]}
431 Should Be Equal As Strings ${netmask} ${vmi_ip["IPv4_SubnetMask"]}
Vijay06a169d2020-04-23 09:28:24 -0500432 Should Be Equal As Strings ${ip} ${vmi_ip["IPv4_Address"]}
433
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600434
435Set Static IPv4 Address To VMI And Verify
Vijay06a169d2020-04-23 09:28:24 -0500436 [Documentation] Set static IPv4 address to VMI.
437 [Arguments] ${ip} ${gateway} ${netmask} ${valid_status_code}=${HTTP_ACCEPTED}
438
439 # Description of argument(s):
440 # ip VMI IPv4 address.
441 # gateway Gateway for VMI IP.
442 # netmask Subnetmask for VMI IP.
443 # valid_status_code Expected valid status code from GET request. Default is HTTP_ACCEPTED.
444
445 ${data}= Set Variable
446 ... {"IPv4StaticAddresses": [{"Address": "${ip}","SubnetMask": "${netmask}","Gateway": "${gateway}"}]}
447
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500448 ${active_channel_config}= Get Active Channel Config
449 ${resp}= Redfish.Patch
450 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
451 ... body=${data} valid_status_codes=[${valid_status_code}]
Prashanth Katti1ce68212020-11-13 00:39:03 -0600452
453 # Wait few seconds for new configuration to get populated on runtime.
454 Sleep ${wait_time}
Vijay06a169d2020-04-23 09:28:24 -0500455
Vijay06a169d2020-04-23 09:28:24 -0500456 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500457 Verify VMI Network Interface Details ${ip} Static ${gateway} ${netmask}
Vijay06a169d2020-04-23 09:28:24 -0500458
459
460Delete VMI IPv4 Address
461 [Documentation] Delete VMI IPv4 address.
462 [Arguments] ${delete_param}=IPv4StaticAddresses ${valid_status_code}=${HTTP_ACCEPTED}
463
464 # Description of argument(s):
465 # delete_param Parameter to be deleted eg. IPv4StaticAddresses or IPv4Addresses.
466 # Default is IPv4StaticAddresses.
467 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_OK.
468
469 ${data}= Set Variable {"${delete_param}": [${Null}]}
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500470 ${active_channel_config}= Get Active Channel Config
471 ${resp}= Redfish.Patch
472 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
473 ... body=${data} valid_status_codes=[${valid_status_code}]
Vijay06a169d2020-04-23 09:28:24 -0500474
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600475 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
476 ${resp}= Redfish.Get
477 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
478 Should Be Empty ${resp.dict["IPv4StaticAddresses"]}
479
Vijay06a169d2020-04-23 09:28:24 -0500480
481Set VMI IPv4 Origin
482 [Documentation] Set VMI IPv4 origin.
483 [Arguments] ${dhcp_enabled}=${False} ${valid_status_code}=${HTTP_ACCEPTED}
484
485 # Description of argument(s):
486 # dhcp_enabled True if user wants to enable DHCP. Default is Static, hence value is set to False.
487 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_OK.
488
489 ${data}= Set Variable If ${dhcp_enabled} == ${False} ${DISABLE_DHCP} ${ENABLE_DHCP}
Anves Kumar rayankulaaa33b052020-07-22 04:24:51 -0500490 ${resp}= Redfish.Patch /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth0 body=${data}
Vijay06a169d2020-04-23 09:28:24 -0500491 ... valid_status_codes=[${valid_status_code}]
shrsuman123b361d412020-09-30 06:17:23 -0500492 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
493 ${resp}= Redfish.Get
494 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
495 Should Be Equal ${resp.dict["DHCPv4"]["DHCPEnabled"]} ${dhcp_enabled}
Vijay06a169d2020-04-23 09:28:24 -0500496
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600497 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
498 ${resp}= Redfish.Get
499 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
500 Should Be Equal ${resp.dict["DHCPv4"]["DHCPEnabled"]} ${dhcp_enabled}
501
Vijay06a169d2020-04-23 09:28:24 -0500502
503Switch VMI IPv4 Origin And Verify Details
504 [Documentation] Switch VMI IPv4 origin and verify details.
Vijay06a169d2020-04-23 09:28:24 -0500505
506 ${curr_mode}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
507 ${dhcp_enabled}= Set Variable If ${curr_mode} == ${False} ${True} ${False}
508
509 ${default}= Set Variable 0.0.0.0
510 ${origin}= Set Variable If ${curr_mode} == ${False} DHCP Static
511 Set VMI IPv4 Origin ${dhcp_enabled} ${HTTP_ACCEPTED}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500512 Verify VMI Network Interface Details ${default} ${origin} ${default} ${default}
Vijay06a169d2020-04-23 09:28:24 -0500513
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500514
515Delete VMI Static IP Address Using Different Users
516 [Documentation] Update user role and delete vmi static IP address.
517 [Arguments] ${username} ${password} ${valid_status_code}
518 [Teardown] Run Keywords Redfish.Login AND
shrsuman123f559cbe2021-01-06 05:40:45 -0600519 ... Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500520 ... ${test_netmask} ${HTTP_ACCEPTED} AND Redfish.Logout
521
522 # Description of argument(s):
523 # username The host username.
524 # password The host password.
525 # valid_status_code The expected valid status code.
526
527 Redfish.Login ${username} ${password}
528 Delete VMI IPv4 Address delete_param=IPv4StaticAddresses valid_status_code=${valid_status_code}
529 Redfish.Logout
530
531
532Config VMI Static IP Address Using Different Users
533 [Documentation] Update user role and update vmi static ip address.
534 [Arguments] ${username} ${password} ${ip} ${gateway} ${netmask}
535 ... ${valid_status_code}
536
537 # Description of argument(s):
538 # username The host username.
539 # password The host password.
540 # ip IP address to be added (e.g. "10.7.7.7").
541 # subnet_mask Subnet mask for the IP to be added
542 # (e.g. "255.255.0.0").
543 # gateway Gateway for the IP to be added (e.g. "10.7.7.1").
544 # valid_status_code The expected valid status code.
545
546 Redfish.Login ${username} ${password}
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600547 Set Static IPv4 Address To VMI And Verify ${ip} ${gateway} ${netmask} ${valid_status_code}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500548 Redfish.Logout
549
550
551Read VMI Static IP Address Using Different Users
552 [Documentation] Update user role and read vmi static ip address.
553 [Arguments] ${username} ${password} ${valid_status_code}
554
555 # Description of argument(s):
556 # username The host username.
557 # password The host password.
558 # valid_status_code The expected valid status code.
559
560 Redfish.Login ${username} ${password}
561 Redfish.Get
562 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']}
563 ... valid_status_codes=[${valid_status_code}]
564 Redfish.Logout
565
566
567Delete BMC Users Using Redfish
568 [Documentation] Delete BMC users via redfish.
569
570 Redfish.Login
571 Delete BMC Users Via Redfish users=${USERS}
shrsuman123b361d412020-09-30 06:17:23 -0500572
573Update User Role And Set VMI IPv4 Origin
574 [Documentation] Update User Role And Set VMI IPv4 Origin.
575 [Arguments] ${username} ${password} ${dhcp_enabled} ${valid_status_code}
576
577 # Description of argument(s):
578 # username The host username.
579 # password The host password.
580 # dhcp_enabled Indicates whether dhcp should be enabled
581 # (${True}, ${False}).
582 # valid_status_code The expected valid status code.
583
584 Redfish.Login ${username} ${password}
585 Set VMI IPv4 Origin ${dhcp_enabled} ${valid_status_code}
586 Redfish.Logout