blob: 25b9d2f5c150bfcbdd15bc78c10722f19b1e3930 [file] [log] [blame]
Vijay06a169d2020-04-23 09:28:24 -05001*** Settings ***
2
Megha GN80ef5ca2022-06-09 00:29:57 -05003Documentation VMI static/dynamic IP config tests.
Vijay06a169d2020-04-23 09:28:24 -05004
Megha GN80ef5ca2022-06-09 00:29:57 -05005Resource ../../lib/external_intf/vmi_utils.robot
Vijay06a169d2020-04-23 09:28:24 -05006
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -05007Suite Setup Suite Setup Execution
Vijay06a169d2020-04-23 09:28:24 -05008Test Teardown FFDC On Test Case Fail
George Keishing4e0978d2022-07-27 10:21:18 -05009Suite Teardown Run Keyword And Ignore Error Suite Teardown Execution
Vijay06a169d2020-04-23 09:28:24 -050010
George Keishing725e0662022-07-20 22:18:14 -050011Force Tags vmi_interface_test
12
Vijay06a169d2020-04-23 09:28:24 -050013*** Variables ***
14
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -050015# users User Name password
16@{ADMIN} admin_user TestPwd123
17@{OPERATOR} operator_user TestPwd123
18@{ReadOnly} readonly_user TestPwd123
Megha GN80ef5ca2022-06-09 00:29:57 -050019&{USERS} Administrator=${ADMIN} ReadOnly=${ReadOnly}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -050020
Prashanth Katti1ce68212020-11-13 00:39:03 -060021${test_ipv4} 10.6.6.6
22${test_gateway} 10.6.6.1
shrsuman123c1d3fe32020-09-08 05:04:07 -050023${test_netmask} 255.255.252.0
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -050024
Vijay06a169d2020-04-23 09:28:24 -050025&{DHCP_ENABLED} DHCPEnabled=${${True}}
26&{DHCP_DISABLED} DHCPEnabled=${${False}}
27
28&{ENABLE_DHCP} DHCPv4=&{DHCP_ENABLED}
29&{DISABLE_DHCP} DHCPv4=&{DHCP_DISABLED}
Prashanth Katti1ce68212020-11-13 00:39:03 -060030${wait_time} 10s
Vijay06a169d2020-04-23 09:28:24 -050031
32
33*** Test Cases ***
34
35Verify All VMI EthernetInterfaces
36 [Documentation] Verify all VMI ethernet interfaces.
shrsuman1235c7e4d72021-04-16 05:42:57 -050037 [Tags] Verify_All_VMI_EthernetInterfaces
Vijay06a169d2020-04-23 09:28:24 -050038
39 Verify VMI EthernetInterfaces
40
41
42Verify Existing VMI Network Interface Details
43 [Documentation] Verify existing VMI network interface details.
shrsuman1235c7e4d72021-04-16 05:42:57 -050044 [Tags] Verify_Existing_VMI_Network_Interface_Details
Vijay06a169d2020-04-23 09:28:24 -050045
46 ${vmi_ip}= Get VMI Network Interface Details
47 ${origin}= Set Variable If ${vmi_ip["DHCPv4"]} == ${False} Static DHCP
Vijay06a169d2020-04-23 09:28:24 -050048 Should Not Be Equal ${vmi_ip["DHCPv4"]} ${vmi_ip["IPv4StaticAddresses"]}
shrsuman123bfb851b2021-07-02 04:59:16 -050049 Should Be Equal As Strings ${vmi_ip["Id"]} ${ethernet_interface}
George Keishingb3ea0952020-07-01 05:03:56 -050050 Should Be Equal As Strings ${vmi_ip["Description"]}
shrsuman1235c7e4d72021-04-16 05:42:57 -050051 ... Hypervisor's Virtual Management Ethernet Interface
52 Should Be Equal As Strings ${vmi_ip["Name"]} Hypervisor Ethernet Interface
Vijay06a169d2020-04-23 09:28:24 -050053 Should Be True ${vmi_ip["InterfaceEnabled"]}
shrsuman1235c7e4d72021-04-16 05:42:57 -050054 Run Keyword If ${vmi_ip["IPv4StaticAddresses"]} != @{empty}
55 ... Verify VMI Network Interface Details ${vmi_ip["IPv4_Address"]}
56 ... ${origin} ${vmi_ip["IPv4_Gateway"]} ${vmi_ip["IPv4_SubnetMask"]}
Vijay06a169d2020-04-23 09:28:24 -050057
58
59Delete Existing Static VMI IP Address
60 [Documentation] Delete existing static VMI IP address.
61 [Tags] Delete_Existing_Static_VMI_IP_Address
62
63 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
64 Run Keyword If ${curr_origin} == ${True} Set VMI IPv4 Origin ${False} ${HTTP_ACCEPTED}
65
shrsuman1235c7e4d72021-04-16 05:42:57 -050066 Delete VMI IPv4 Address
Vijay06a169d2020-04-23 09:28:24 -050067
68
69Verify User Cannot Delete ReadOnly Property IPv4Addresses
70 [Documentation] Verify user cannot delete readonly property IPv4Addresses.
71 [Tags] Verify_User_Cannot_Delete_ReadOnly_Property_IPv4Addresses
72
73 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
shrsuman1235c7e4d72021-04-16 05:42:57 -050074 Run Keyword If ${curr_origin} == ${True} Set VMI IPv4 Origin ${False} ${HTTP_ACCEPTED}
75 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
shrsuman123b25343d2021-09-22 04:33:47 -050076 Delete VMI IPv4 Address IPv4Addresses valid_status_code=${HTTP_FORBIDDEN}
Vijay06a169d2020-04-23 09:28:24 -050077
78
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -050079Assign Valid And Invalid Static IPv4 Address To VMI
Vijay06a169d2020-04-23 09:28:24 -050080 [Documentation] Assign static IPv4 address to VMI.
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -050081 [Tags] Assign_Valid_And_Invalid_Static_IPv4_Address_To_VMI
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -060082 [Template] Set Static IPv4 Address To VMI And Verify
83 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
Vijay06a169d2020-04-23 09:28:24 -050084
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -050085 # ip gateway netmask valid_status_code
Shradha Sumanc7df7db2021-03-08 05:16:44 -060086 10.5.20.30 10.5.20.1 255.255.252.0 ${HTTP_ACCEPTED}
87 a.3.118.94 10.5.20.1 255.255.252.0 ${HTTP_BAD_REQUEST}
Anves Kumar rayankula81fd9db2021-05-10 02:39:51 -050088 10.5.20 10.5.20.1 255.255.252.0 ${HTTP_BAD_REQUEST}
89 10.5.20.-5 10.5.20.1 255.255.252.0 ${HTTP_BAD_REQUEST}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -050090
Vijay06a169d2020-04-23 09:28:24 -050091
George Keishing16b3c7b2021-01-28 09:23:37 -060092Add Multiple IP Addresses On VMI Interface And Verify
93 [Documentation] Add multiple IP addresses on VMI interface and verify.
94 [Tags] Add_Multiple_IP_Addresses_On_VMI_Interface_And_Verify
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -060095 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
shrsuman123e37b0cc2020-09-02 00:33:42 -050096
Shradha Sumanc7df7db2021-03-08 05:16:44 -060097 ${ip1}= Create dictionary Address=10.5.5.10 SubnetMask=255.255.252.0 Gateway=10.5.5.1
98 ${ip2}= Create dictionary Address=10.5.5.11 SubnetMask=255.255.252.0 Gateway=10.5.5.1
99 ${ip3}= Create dictionary Address=10.5.5.12 SubnetMask=255.255.252.0 Gateway=10.5.5.1
shrsuman123e37b0cc2020-09-02 00:33:42 -0500100 ${ips}= Create List ${ip1} ${ip2} ${ip3}
101
shrsuman123bfb851b2021-07-02 04:59:16 -0500102 Redfish.Patch /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface}
shrsuman123993a5c92021-04-19 06:40:16 -0500103 ... body={'IPv4StaticAddresses':${ips}} valid_status_codes=[${HTTP_BAD_REQUEST}]
shrsuman123e37b0cc2020-09-02 00:33:42 -0500104
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500105
shrsuman123e37b0cc2020-09-02 00:33:42 -0500106Modify IP Addresses On VMI Interface And Verify
107 [Documentation] Modify IP addresses on VMI interface and verify.
108 [Tags] Modify_IP_Addresses_On_VMI_Interface_And_Verify
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600109 [Template] Set Static IPv4 Address To VMI And Verify
110 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
shrsuman123e37b0cc2020-09-02 00:33:42 -0500111
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500112 # ip gateway netmask valid_status_code
Shradha Sumanc7df7db2021-03-08 05:16:44 -0600113 10.5.5.10 10.5.5.1 255.255.252.0 ${HTTP_ACCEPTED}
114 10.5.5.11 10.5.5.1 255.255.252.0 ${HTTP_ACCEPTED}
Vijay06a169d2020-04-23 09:28:24 -0500115
Megha GN80ef5ca2022-06-09 00:29:57 -0500116
Vijay06a169d2020-04-23 09:28:24 -0500117Switch Between IP Origins On VMI And Verify Details
118 [Documentation] Switch between IP origins on VMI and verify details.
119 [Tags] Switch_Between_IP_Origins_On_VMI_And_Verify_Details
120
121 Switch VMI IPv4 Origin And Verify Details
122 Switch VMI IPv4 Origin And Verify Details
123
124
125Verify Persistency Of VMI IPv4 Details After Host Reboot
126 [Documentation] Verify persistency of VMI IPv4 details after host reboot.
127 [Tags] Verify_Persistency_Of_VMI_IPv4_Details_After_Host_Reboot
128
129 # Verifying persistency of dynamic address.
130 Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED}
Anves Kumar rayankula7936eee2021-04-19 05:38:36 -0500131 Redfish Power Off stack_mode=skip
132 Redfish Power On
Vijay06a169d2020-04-23 09:28:24 -0500133 ${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
Anves Kumar rayankula7936eee2021-04-19 05:38:36 -0500138 Redfish Power Off stack_mode=skip
139 Redfish Power On
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600140 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
Vijay06a169d2020-04-23 09:28:24 -0500141
142
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500143Delete VMI Static IP Address And Verify
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500144 [Documentation] Delete VMI static IP address and verify.
145 [Tags] Delete_VMI_Static_IP_Address_And_Verify
146 [Teardown] Test Teardown Execution
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500147
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600148 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
149 Delete VMI IPv4 Address
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500150
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500151
shrsuman123c1d3fe32020-09-08 05:04:07 -0500152Verify Successful VMI IP Static Configuration On HOST Boot After Session Delete
153 [Documentation] Verify VMI IP static Configuration On HOST Boot After session deleted.
154 [Tags] Verify_Successful_VMI_IP_Static_Configuration_On_HOST_Boot_After_Session_Delete
shrsuman123b25343d2021-09-22 04:33:47 -0500155 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution
shrsuman123c1d3fe32020-09-08 05:04:07 -0500156
shrsuman12375e77062020-09-18 01:08:45 -0500157 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
shrsuman123c1d3fe32020-09-08 05:04:07 -0500158
159 ${session_info}= Get Redfish Session Info
160 Redfish.Delete ${session_info["location"]}
161
162 # Create a new Redfish session
shrsuman1235c7e4d72021-04-16 05:42:57 -0500163 Redfish.Login
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
George Keishing538f1742022-03-14 05:00:55 -0500181 Verify VMI Network Interface Details ${vmi_ip_config["IPv4_Address"]}
182 ... DHCP ${vmi_ip_config["IPv4_Gateway"]} ${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
George Keishing4203fad2022-01-31 12:22:33 -0600188 [Tags] Enable_DHCP_When_Static_IP_Configured_And_Verify_Static_IP
Shradha Sumanc7df7db2021-03-08 05:16:44 -0600189 [Setup] Redfish Power On
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500190 [Teardown] Test Teardown Execution
191
shrsuman123f559cbe2021-01-06 05:40:45 -0600192 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500193 Set VMI IPv4 Origin ${True}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500194 ${vmi_network_conf}= Get VMI Network Interface Details
195 Should Not Be Equal As Strings ${test_ipv4} ${vmi_network_conf["IPv4_Address"]}
196
Anves Kumar rayankula9fa524a2020-08-18 06:40:18 -0500197
shrsuman123e37b0cc2020-09-02 00:33:42 -0500198Verify VMI Static IP Configuration Persist On BMC Reset Before Host Boot
199 [Documentation] Verify VMI static IP configuration persist on BMC reset.
200 [Tags] Verify_VMI_Static_IP_Configuration_Persist_On_BMC_Reset_Before_Host_Boot
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600201 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail
shrsuman123e37b0cc2020-09-02 00:33:42 -0500202
shrsuman12375e77062020-09-18 01:08:45 -0500203 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
Megha GNbe428592022-07-21 10:33:02 -0500204 Redfish OBMC Reboot (off) stack_mode=skip
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500205 Redfish Power On
shrsuman123e37b0cc2020-09-02 00:33:42 -0500206 # Verifying the VMI static configuration
207 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask}
208
Megha GN80ef5ca2022-06-09 00:29:57 -0500209
shrsuman12375e77062020-09-18 01:08:45 -0500210Add Static IP When Host Poweroff And Verify On Poweron
211 [Documentation] Add Static IP When Host Poweroff And Verify on power on
212 [Tags] Add_Static_IP_When_Host_Poweroff_And_Verify_On_Poweron
213 [Setup] Redfish Power Off
214 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail
215
216 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
217 Redfish Power On
218 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask}
219
Megha GN80ef5ca2022-06-09 00:29:57 -0500220
shrsuman12375e77062020-09-18 01:08:45 -0500221Add VMI Static IP When Host Poweroff And Verify Static IP On BMC Reset
222 [Documentation] Add Static IP When Host Poweroff And Verify Static IP On BMC Reset.
223 [Tags] Add_VMI_Static_IP_When_Host_Poweroff_And_Verify_Static_IP_On_BMC_Reset
224 [Setup] Redfish Power Off
225 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail
226
227 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
Megha GNbe428592022-07-21 10:33:02 -0500228 Redfish OBMC Reboot (off) stack_mode=skip
shrsuman12375e77062020-09-18 01:08:45 -0500229 Redfish Power On
230 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask}
231
Megha GN80ef5ca2022-06-09 00:29:57 -0500232
shrsuman12375e77062020-09-18 01:08:45 -0500233Enable DHCP When No Static IP Configured And Verify DHCP IP
234 [Documentation] Enable DHCP when no static ip configured and verify dhcp ip
235 [Tags] Enable_DHCP_When_No_Static_IP_Configured_And_Verify_DHCP_IP
236 [Setup] Run Keyword And Ignore Error Delete VMI IPv4 Address
237 [Teardown] Test Teardown Execution
238
239 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
240 Run Keyword If ${curr_origin} == ${False} Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED}
241 ${vmi_ip_config}= Get VMI Network Interface Details
George Keishing538f1742022-03-14 05:00:55 -0500242 Verify VMI Network Interface Details ${vmi_ip_config["IPv4_Address"]}
243 ... DHCP ${vmi_ip_config["IPv4_Gateway"]} ${vmi_ip_config["IPv4_SubnetMask"]}
shrsuman12375e77062020-09-18 01:08:45 -0500244
Megha GN80ef5ca2022-06-09 00:29:57 -0500245
shrsuman12375e77062020-09-18 01:08:45 -0500246Verify User Cannot Delete VMI DHCP IP Address
247 [Documentation] Verify user cannot delete VMI DHCP IP Address
248 [Tags] Verify_User_Cannot_Delete_VMI_DHCP_IP_Address
249 [Setup] Set VMI IPv4 Origin ${True}
250 [Teardown] Test Teardown Execution
251
shrsuman123b25343d2021-09-22 04:33:47 -0500252 Delete VMI IPv4 Address IPv4Addresses valid_status_code=${HTTP_FORBIDDEN}
shrsuman12375e77062020-09-18 01:08:45 -0500253 ${resp}= Redfish.Get
shrsuman123bfb851b2021-07-02 04:59:16 -0500254 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface}
shrsuman12375e77062020-09-18 01:08:45 -0500255 Should Not Be Empty ${resp.dict["IPv4Addresses"]}
256
Megha GN80ef5ca2022-06-09 00:29:57 -0500257
shrsuman12375e77062020-09-18 01:08:45 -0500258Enable DHCP When Static IP Configured DHCP Server Unavailable And Verify IP
259 [Documentation] Enable DHCP When Static IP Configured And DHCP Server Unavailable And Verify No IP.
260 [Tags] Enable_DHCP_When_Static_IP_Configured_DHCP_Server_Unavailable_And_Verify_IP
261 [Teardown] Test Teardown Execution
262
263 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask}
264 Set VMI IPv4 Origin ${True}
265 ${default}= Set Variable 0.0.0.0
266 Verify VMI Network Interface Details ${default} DHCP ${default} ${default}
267
shrsuman123e37b0cc2020-09-02 00:33:42 -0500268
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500269Verify To Configure VMI Static IP Address With Different User Roles
270 [Documentation] Verify to configure vmi static ip address with different user roles.
271 [Tags] Verify_To_Configure_VMI_Static_IP_Address_With_Different_User_Roles
272 [Setup] Create Users With Different Roles users=${USERS} force=${True}
273 [Template] Config VMI Static IP Address Using Different Users
274 [Teardown] Delete BMC Users Using Redfish
275
276 # username password ip_address gateway nemask valid_status_code
277 admin_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_ACCEPTED}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500278 readonly_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
Megha GN80ef5ca2022-06-09 00:29:57 -0500279
280
281Verify To Configure VMI Static IP Address With Operator User Role
282 [Documentation] Verify to configure vmi static ip address with operator user role.
283 [Tags] Verify_To_Configure_VMI_Static_IP_Address_With_Operator_User_Role
284 [Setup] Create Users With Different Roles users=${USERS} force=${True}
285 [Template] Config VMI Static IP Address Using Different Users
286 [Teardown] Delete BMC Users Using Redfish
287
288 # username password ip_address gateway nemask valid_status_code
289 operator_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500290
291
292Verify To Delete VMI Static IP Address With Different User Roles
293 [Documentation] Verify to delete vmi static IP address with different user roles.
294 [Tags] Verify_To_Delete_VMI_Static_IP_Address_With_Different_User_Roles
295 [Setup] Create Users With Different Roles users=${USERS} force=${True}
296 [Template] Delete VMI Static IP Address Using Different Users
297 [Teardown] Delete BMC Users Using Redfish
298
299 # username password valid_status_code
300 admin_user TestPwd123 ${HTTP_ACCEPTED}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500301 readonly_user TestPwd123 ${HTTP_FORBIDDEN}
Megha GN80ef5ca2022-06-09 00:29:57 -0500302
303
304Verify To Delete VMI Static IP Address With Operator User Role
305 [Documentation] Verify to delete vmi static IP address with operator user role.
306 [Tags] Verify_To_Delete_VMI_Static_IP_Address_With_Operator_User_Role
307 [Setup] Create Users With Different Roles users=${USERS} force=${True}
308 [Template] Delete VMI Static IP Address Using Different Users
309 [Teardown] Delete BMC Users Using Redfish
310
311 # username password valid_status_code
312 operator_user TestPwd123 ${HTTP_FORBIDDEN}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500313
314
315Verify To Update VMI Static IP Address With Different User Roles
316 [Documentation] Verify to update vmi static IP address with different user roles.
George Keishing4203fad2022-01-31 12:22:33 -0600317 [Tags] Verify_To_Update_VMI_Static_IP_Address_With_Different_User_Roles
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500318 [Setup] Create Users With Different Roles users=${USERS} force=${True}
319 [Template] Config VMI Static IP Address Using Different Users
320 [Teardown] Delete BMC Users Using Redfish
321
Shradha Sumanc7df7db2021-03-08 05:16:44 -0600322 # username password ip_address gateway netmask valid_status_code
323 admin_user TestPwd123 10.5.10.20 10.5.10.1 255.255.0.0 ${HTTP_ACCEPTED}
Shradha Sumanc7df7db2021-03-08 05:16:44 -0600324 readonly_user TestPwd123 10.5.20.40 10.5.20.1 255.255.0.0 ${HTTP_FORBIDDEN}
Megha GN80ef5ca2022-06-09 00:29:57 -0500325
326
327Verify To Update VMI Static IP Address With Operator User Role
328 [Documentation] Verify to update vmi static IP address with operator user role.
329 [Tags] Verify_To_Update_VMI_Static_IP_Address_With_Operator_User_Role
330 [Setup] Create Users With Different Roles users=${USERS} force=${True}
331 [Template] Config VMI Static IP Address Using Different Users
332 [Teardown] Delete BMC Users Using Redfish
333
334 # username password ip_address gateway netmask valid_status_code
335 operator_user TestPwd123 10.5.10.30 10.5.10.1 255.255.0.0 ${HTTP_FORBIDDEN}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500336
337
338Verify To Read VMI Network Configuration With Different User Roles
339 [Documentation] Verify to read vmi network configuration with different user roles.
George Keishing4203fad2022-01-31 12:22:33 -0600340 [Tags] Verify_To_Read_VMI_Network_Configuration_With_Different_User_Roles
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500341 [Setup] Create Users With Different Roles users=${USERS} force=${True}
342 [Template] Read VMI Static IP Address Using Different Users
343 [Teardown] Delete BMC Users Using Redfish
344
345 # username password valid_status_code
346 admin_user TestPwd123 ${HTTP_OK}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500347 readonly_user TestPwd123 ${HTTP_OK}
Megha GN80ef5ca2022-06-09 00:29:57 -0500348
349
350Verify To Read VMI Network Configuration With Operator User Role
351 [Documentation] Verify to read vmi network configuration with operator user role.
352 [Tags] Verify_To_Read_VMI_Network_Configuration_With_Operator_User_Role
353 [Setup] Create Users With Different Roles users=${USERS} force=${True}
354 [Template] Read VMI Static IP Address Using Different Users
355 [Teardown] Delete BMC Users Using Redfish
356
357 # username password valid_status_code
358 operator_user TestPwd123 ${HTTP_FORBIDDEN}
359
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500360
shrsuman123b361d412020-09-30 06:17:23 -0500361Enable DHCP On VMI Network Via Different Users Roles And Verify
362 [Documentation] Enable DHCP On VMI Network Via Different Users Roles And Verify.
363 [Tags] Enable_DHCP_On_VMI_Network_Via_Different_Users_Roles_And_Verify
364 [Setup] Create Users With Different Roles users=${USERS} force=${True}
365 [Template] Update User Role And Set VMI IPv4 Origin
366 [Teardown] Delete BMC Users Using Redfish
367
368 # username password dhcp_enabled valid_status_code
369 admin_user TestPwd123 ${True} ${HTTP_ACCEPTED}
shrsuman123b361d412020-09-30 06:17:23 -0500370 readonly_user TestPwd123 ${True} ${HTTP_FORBIDDEN}
Megha GN80ef5ca2022-06-09 00:29:57 -0500371
372
373Enable DHCP On VMI Network Via Operator User Role And Verify
374 [Documentation] Enable DHCP On VMI Network Via Operator User Role And Verify.
375 [Tags] Enable_DHCP_On_VMI_Network_Via_Operator_User_Role_And_Verify
376 [Setup] Create Users With Different Roles users=${USERS} force=${True}
377 [Template] Update User Role And Set VMI IPv4 Origin
378 [Teardown] Delete BMC Users Using Redfish
379
380 # username password dhcp_enabled valid_status_code
381 operator_user TestPwd123 ${True} ${HTTP_FORBIDDEN}
382
shrsuman123b361d412020-09-30 06:17:23 -0500383
384Disable DHCP On VMI Network Via Different Users Roles And Verify
385 [Documentation] Disable DHCP On VMI Network Via Different Users Roles And Verify.
386 [Tags] Disable_DHCP_On_VMI_Network_Via_Different_Users_Roles_And_Verify
387 [Setup] Create Users With Different Roles users=${USERS} force=${True}
388 [Template] Update User Role And Set VMI IPv4 Origin
389 [Teardown] Delete BMC Users Using Redfish
390
391 # username password dhcp_enabled valid_status_code
392 admin_user TestPwd123 ${False} ${HTTP_ACCEPTED}
shrsuman123b361d412020-09-30 06:17:23 -0500393 readonly_user TestPwd123 ${False} ${HTTP_FORBIDDEN}
Megha GN80ef5ca2022-06-09 00:29:57 -0500394
395
396Disable DHCP On VMI Network Via Operator User Role And Verify
397 [Documentation] Disable DHCP On VMI Network Via Operator User Role And Verify.
398 [Tags] Disable_DHCP_On_VMI_Network_Via_Operator_User_Role_And_Verify
399 [Setup] Create Users With Different Roles users=${USERS} force=${True}
400 [Template] Update User Role And Set VMI IPv4 Origin
401 [Teardown] Delete BMC Users Using Redfish
402
403 # username password dhcp_enabled valid_status_code
404 operator_user TestPwd123 ${False} ${HTTP_FORBIDDEN}
shrsuman123b361d412020-09-30 06:17:23 -0500405
shrsuman123e37b0cc2020-09-02 00:33:42 -0500406
Anves Kumar rayankula55b939e2020-08-12 04:19:01 -0500407Enable And Disable DHCP And Verify
408 [Documentation] verify enable DHCP and disable DHCP.
George Keishing4203fad2022-01-31 12:22:33 -0600409 [Tags] Enable_And_Disable_DHCP_And_Verify
Anves Kumar rayankula55b939e2020-08-12 04:19:01 -0500410
411 Set VMI IPv4 Origin ${True}
412 ${default}= Set Variable 0.0.0.0
413 Verify VMI Network Interface Details ${default} DHCP ${default} ${default}
414 Set VMI IPv4 Origin ${False}
Megha GN80ef5ca2022-06-09 00:29:57 -0500415 Verify VMI Network Interface Details ${default} Static ${default} ${default}
Anves Kumar rayankula55b939e2020-08-12 04:19:01 -0500416
417
418Multiple Times Enable And Disable DHCP And Verify
419 [Documentation] Enable and Disable DHCP in a loop and verify VMI gets an IP address from DHCP
420 ... each time when DHCP is enabled
421 [Tags] Multiple_Times_Enable_And_Disable_DHCP_And_Verify
422
423 ${default}= Set Variable 0.0.0.0
424 FOR ${i} IN RANGE ${2}
425 Set VMI IPv4 Origin ${True}
426 Verify VMI Network Interface Details ${default} DHCP ${default} ${default}
427 Set VMI IPv4 Origin ${False}
Megha GN80ef5ca2022-06-09 00:29:57 -0500428 Verify VMI Network Interface Details ${default} Static ${default} ${default}
Anves Kumar rayankula55b939e2020-08-12 04:19:01 -0500429 END
430
431
Anves Kumar rayankula81fd9db2021-05-10 02:39:51 -0500432Assign Static IPv4 Address With Invalid Netmask To VMI
433 [Documentation] Assign static IPv4 address with invalid netmask and expect error.
434 [Tags] Assign_Static_IPv4_Address_With_Invalid_Netmask_To_VMI
435 [Template] Set Static IPv4 Address To VMI And Verify
436
437 # ip gateway netmask valid_status_code
438 ${test_ipv4} ${test_gateway} 255.256.255.0 ${HTTP_BAD_REQUEST}
439 ${test_ipv4} ${test_gateway} ff.ff.ff.ff ${HTTP_BAD_REQUEST}
440 ${test_ipv4} ${test_gateway} 255.255.253.0 ${HTTP_BAD_REQUEST}
441
442
443Assign Static IPv4 Address With Invalid Gateway To VMI
444 [Documentation] Add static IPv4 address with invalid gateway and expect error.
445 [Tags] Assign_Static_IPv4_Address_With_Invalid_Gateway_To_VMI
446 [Template] Set Static IPv4 Address To VMI And Verify
447
448 # ip gateway netmask valid_status_code
449 ${test_ipv4} @@@.%%.44.11 ${test_netmask} ${HTTP_BAD_REQUEST}
450 ${test_ipv4} 0xa.0xb.0xc.0xd ${test_netmask} ${HTTP_BAD_REQUEST}
451 ${test_ipv4} 10.3.36 ${test_netmask} ${HTTP_BAD_REQUEST}
452 ${test_ipv4} 10.3.36.-10 ${test_netmask} ${HTTP_BAD_REQUEST}
453
454
Vijay06a169d2020-04-23 09:28:24 -0500455*** Keywords ***
456
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500457Suite Setup Execution
458 [Documentation] Do test setup execution task.
459
460 Redfish.Login
461 Redfish Power On
462 ${active_channel_config}= Get Active Channel Config
463 Set Suite Variable ${active_channel_config}
shrsuman123bfb851b2021-07-02 04:59:16 -0500464 Set Suite Variable ${ethernet_interface} ${active_channel_config['${CHANNEL_NUMBER}']['name']}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500465 ${resp}= Redfish.Get
shrsuman123bfb851b2021-07-02 04:59:16 -0500466 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface}
shrsuman12362e5be52021-05-20 02:42:59 -0500467 ${ip_resp}= Evaluate json.loads(r'''${resp.text}''') json
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500468 ${length}= Get Length ${ip_resp["IPv4StaticAddresses"]}
469 ${vmi_network_conf}= Run Keyword If ${length} != ${0} Get VMI Network Interface Details
470 Set Suite Variable ${vmi_network_conf}
471
472
473Test Teardown Execution
474 [Documentation] Do test teardown execution task.
475
476 FFDC On Test Case Fail
477 ${curr_mode}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
478 Run Keyword If ${curr_mode} == ${True} Set VMI IPv4 Origin ${False}
479 Run Keyword If ${vmi_network_conf} != ${None}
shrsuman123f559cbe2021-01-06 05:40:45 -0600480 ... Set Static IPv4 Address To VMI And Verify ${vmi_network_conf["IPv4_Address"]}
Anves Kumar rayankulad7deb892020-08-24 02:58:20 -0500481 ... ${vmi_network_conf["IPv4_Gateway"]} ${vmi_network_conf["IPv4_SubnetMask"]}
482
483
Vijay06a169d2020-04-23 09:28:24 -0500484Get Immediate Child Parameter From VMI Network Interface
485 [Documentation] Get immediate child parameter from VMI network interface.
486 [Arguments] ${parameter} ${valid_status_code}=${HTTP_OK}
487
488 # Description of argument(s):
489 # parameter parameter for which value is required. Ex: DHCPEnabled, MACAddress etc.
490 # valid_status_code Expected valid status code from GET request.
491
Anves Kumar rayankula358c41d2020-08-14 04:53:06 -0500492 ${resp}= Redfish.Get
shrsuman123bfb851b2021-07-02 04:59:16 -0500493 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface}
Vijay06a169d2020-04-23 09:28:24 -0500494 ... valid_status_codes=[${valid_status_code}]
495
shrsuman12362e5be52021-05-20 02:42:59 -0500496 ${ip_resp}= Evaluate json.loads(r'''${resp.text}''') json
Vijay06a169d2020-04-23 09:28:24 -0500497 ${value}= Set Variable If '${parameter}' != 'DHCPEnabled' ${ip_resp["${parameter}"]}
498 ... ${ip_resp["DHCPv4"]["${parameter}"]}
499
500 [Return] ${value}
501
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600502
Vijay06a169d2020-04-23 09:28:24 -0500503Switch VMI IPv4 Origin And Verify Details
504 [Documentation] Switch VMI IPv4 origin and verify details.
Vijay06a169d2020-04-23 09:28:24 -0500505
Anves Kumar rayankula7936eee2021-04-19 05:38:36 -0500506 ${dhcp_mode_before}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
Anves Kumar rayankulae7dc89a2021-04-28 04:29:38 -0500507 ${dhcp_enabled}= Set Variable If ${dhcp_mode_before} == ${False} ${True} ${False}
Vijay06a169d2020-04-23 09:28:24 -0500508
509 ${default}= Set Variable 0.0.0.0
Anves Kumar rayankulae7dc89a2021-04-28 04:29:38 -0500510 ${origin}= Set Variable If ${dhcp_mode_before} == ${False} DHCP Static
Vijay06a169d2020-04-23 09:28:24 -0500511 Set VMI IPv4 Origin ${dhcp_enabled} ${HTTP_ACCEPTED}
Anves Kumar rayankula7936eee2021-04-19 05:38:36 -0500512
513 ${dhcp_mode_after}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled
514 Should Not Be Equal ${dhcp_mode_before} ${dhcp_mode_after}
515
516 Run Keyword If ${dhcp_mode_after} == ${True}
517 ... Verify VMI Network Interface Details ${default} ${origin} ${default} ${default}
Vijay06a169d2020-04-23 09:28:24 -0500518
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500519
520Delete VMI Static IP Address Using Different Users
521 [Documentation] Update user role and delete vmi static IP address.
522 [Arguments] ${username} ${password} ${valid_status_code}
523 [Teardown] Run Keywords Redfish.Login AND
shrsuman123f559cbe2021-01-06 05:40:45 -0600524 ... Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500525 ... ${test_netmask} ${HTTP_ACCEPTED} AND Redfish.Logout
526
527 # Description of argument(s):
528 # username The host username.
529 # password The host password.
530 # valid_status_code The expected valid status code.
531
Megha GN80ef5ca2022-06-09 00:29:57 -0500532 # TODO: operator_user role is not yet supported.
533 Skip If '${username}' == 'operator_user'
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500534 Redfish.Login ${username} ${password}
535 Delete VMI IPv4 Address delete_param=IPv4StaticAddresses valid_status_code=${valid_status_code}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500536
537
538Config VMI Static IP Address Using Different Users
539 [Documentation] Update user role and update vmi static ip address.
540 [Arguments] ${username} ${password} ${ip} ${gateway} ${netmask}
541 ... ${valid_status_code}
542
543 # Description of argument(s):
544 # username The host username.
545 # password The host password.
546 # ip IP address to be added (e.g. "10.7.7.7").
547 # subnet_mask Subnet mask for the IP to be added
548 # (e.g. "255.255.0.0").
549 # gateway Gateway for the IP to be added (e.g. "10.7.7.1").
550 # valid_status_code The expected valid status code.
551
Megha GN80ef5ca2022-06-09 00:29:57 -0500552 # TODO: operator_user role is not yet supported.
553 Skip If '${username}' == 'operator_user'
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500554 Redfish.Login ${username} ${password}
Anves Kumar rayankula1b64d942020-11-17 02:44:02 -0600555 Set Static IPv4 Address To VMI And Verify ${ip} ${gateway} ${netmask} ${valid_status_code}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500556
557
558Read VMI Static IP Address Using Different Users
559 [Documentation] Update user role and read vmi static ip address.
560 [Arguments] ${username} ${password} ${valid_status_code}
561
562 # Description of argument(s):
563 # username The host username.
564 # password The host password.
565 # valid_status_code The expected valid status code.
566
Megha GN80ef5ca2022-06-09 00:29:57 -0500567 # TODO: operator_user role is not yet supported.
568 Skip If '${username}' == 'operator_user'
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500569 Redfish.Login ${username} ${password}
570 Redfish.Get
shrsuman123bfb851b2021-07-02 04:59:16 -0500571 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface}
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500572 ... valid_status_codes=[${valid_status_code}]
Anves Kumar rayankulad5de2072020-09-30 06:24:11 -0500573
574
575Delete BMC Users Using Redfish
576 [Documentation] Delete BMC users via redfish.
577
578 Redfish.Login
579 Delete BMC Users Via Redfish users=${USERS}
shrsuman123b361d412020-09-30 06:17:23 -0500580
Sweta Potthurid52b2732021-08-12 12:48:24 -0500581
shrsuman123b361d412020-09-30 06:17:23 -0500582Update User Role And Set VMI IPv4 Origin
583 [Documentation] Update User Role And Set VMI IPv4 Origin.
584 [Arguments] ${username} ${password} ${dhcp_enabled} ${valid_status_code}
585
586 # Description of argument(s):
587 # username The host username.
588 # password The host password.
589 # dhcp_enabled Indicates whether dhcp should be enabled
590 # (${True}, ${False}).
591 # valid_status_code The expected valid status code.
592
Megha GNbe428592022-07-21 10:33:02 -0500593 # TODO: operator_user role is not yet supported.
594 Skip If '${username}' == 'operator_user'
shrsuman123b361d412020-09-30 06:17:23 -0500595 Redfish.Login ${username} ${password}
596 Set VMI IPv4 Origin ${dhcp_enabled} ${valid_status_code}
shrsuman123bfb851b2021-07-02 04:59:16 -0500597
Sweta Potthurid52b2732021-08-12 12:48:24 -0500598
shrsuman123bfb851b2021-07-02 04:59:16 -0500599Suite Teardown Execution
600 [Documentation] Do suite teardown execution task.
601
602 Run Keyword If ${vmi_network_conf} != ${None}
603 ... Set Static IPv4 Address To VMI And Verify ${vmi_network_conf["IPv4_Address"]}
604 ... ${vmi_network_conf["IPv4_Gateway"]} ${vmi_network_conf["IPv4_SubnetMask"]}
shrsuman123b25343d2021-09-22 04:33:47 -0500605 Delete All Redfish Sessions
shrsuman123bfb851b2021-07-02 04:59:16 -0500606 Redfish.Logout