blob: 1ff585e692ac13abee93e76e3e2a03d84c0a730a [file] [log] [blame]
Sweta Potthurid52b2732021-08-12 12:48:24 -05001*** Settings ***
2Documentation Vmi network utilities keywords.
3
4Resource ../../lib/resource.robot
5Resource ../../lib/bmc_redfish_resource.robot
6Resource ../../lib/openbmc_ffdc.robot
7Resource ../../lib/bmc_redfish_utils.robot
8Resource ../../lib/state_manager.robot
shrsuman1237ba02f32021-08-26 04:50:56 -05009Resource ../../lib/bmc_network_utils.robot
Sweta Potthurid52b2732021-08-12 12:48:24 -050010Library ../../lib/bmc_network_utils.py
11
12*** Variables ***
13
shrsuman1237e9b2122021-09-28 06:06:16 -050014&{DHCP_ENABLED} DHCPEnabled=${True}
15&{DHCP_DISABLED} DHCPEnabled=${False}
16
17&{ENABLE_DHCP} DHCPv4=&{DHCP_ENABLED}
18&{DISABLE_DHCP} DHCPv4=&{DHCP_DISABLED}
19
Sweta Potthurid52b2732021-08-12 12:48:24 -050020${wait_time} 10s
shrsuman123a0355782021-10-18 05:56:56 -050021${ethernet_interface} eth0
Sweta Potthurid52b2732021-08-12 12:48:24 -050022
23*** Keywords ***
24
25Set Static IPv4 Address To VMI And Verify
26 [Documentation] Set static IPv4 address to VMI.
27 [Arguments] ${ip} ${gateway} ${netmask} ${valid_status_code}=${HTTP_ACCEPTED}
shrsuman123a0355782021-10-18 05:56:56 -050028 ... ${interface}=${ethernet_interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -050029
30 # Description of argument(s):
31 # ip VMI IPv4 address.
32 # gateway Gateway for VMI IP.
33 # netmask Subnetmask for VMI IP.
34 # valid_status_code Expected valid status code from GET request. Default is HTTP_ACCEPTED.
shrsuman123298e8042021-08-20 07:36:21 -050035 # interface VMI interface (eg. eth0 or eth1).
Sweta Potthurid52b2732021-08-12 12:48:24 -050036
shrsuman123298e8042021-08-20 07:36:21 -050037 ${ip_details}= Create dictionary Address=${ip} SubnetMask=${netmask} Gateway=${gateway}
38 ${ip_data}= Create List ${ip_details}
39 ${resp}= Redfish.Patch /redfish/v1/Systems/hypervisor/EthernetInterfaces/${interface}
40 ... body={'IPv4StaticAddresses':${ip_data}} valid_status_codes=[${valid_status_code}]
Sweta Potthurid52b2732021-08-12 12:48:24 -050041
42 # Wait few seconds for new configuration to get populated on runtime.
43 Sleep ${wait_time}
44
45 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
46 ${host_power_state} ${host_state}= Redfish Get Host State
47 Run Keyword If '${host_power_state}' == 'On' and '${host_state}' == 'Enabled'
shrsuman123298e8042021-08-20 07:36:21 -050048 ... Verify VMI Network Interface Details ${ip} Static ${gateway} ${netmask} ${interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -050049
50Verify VMI Network Interface Details
51 [Documentation] Verify VMI network interface details.
52 [Arguments] ${ip} ${origin} ${gateway} ${netmask}
shrsuman123a0355782021-10-18 05:56:56 -050053 ... ${interface}=${ethernet_interface} ${valid_status_code}=${HTTP_OK}
Sweta Potthurid52b2732021-08-12 12:48:24 -050054
55 # Description of argument(s):
56 # ip VMI IPv4 address.
57 # origin Origin of IPv4 address eg. Static or DHCP.
58 # gateway Gateway for VMI IP.
59 # netmask Subnetmask for VMI IP.
shrsuman123298e8042021-08-20 07:36:21 -050060 # interface VMI interface (eg. eth0 or eth1).
Sweta Potthurid52b2732021-08-12 12:48:24 -050061 # valid_status_code Expected valid status code from GET request. Default is HTTP_OK.
62
shrsuman123298e8042021-08-20 07:36:21 -050063 ${vmi_ip}= Get VMI Network Interface Details ${interface} ${valid_status_code}
Sweta Potthurid52b2732021-08-12 12:48:24 -050064 Should Be Equal As Strings ${origin} ${vmi_ip["IPv4_AddressOrigin"]}
65 Should Be Equal As Strings ${gateway} ${vmi_ip["IPv4_Gateway"]}
66 Should Be Equal As Strings ${netmask} ${vmi_ip["IPv4_SubnetMask"]}
67 Should Be Equal As Strings ${ip} ${vmi_ip["IPv4_Address"]}
68
69Delete VMI IPv4 Address
70 [Documentation] Delete VMI IPv4 address.
71 [Arguments] ${delete_param}=IPv4StaticAddresses ${valid_status_code}=${HTTP_ACCEPTED}
shrsuman123a0355782021-10-18 05:56:56 -050072 ... ${interface}=${ethernet_interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -050073
74 # Description of argument(s):
75 # delete_param Parameter to be deleted eg. IPv4StaticAddresses or IPv4Addresses.
76 # Default is IPv4StaticAddresses.
77 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_OK.
shrsuman123298e8042021-08-20 07:36:21 -050078 # interface VMI interface (eg. eth0 or eth1).
Sweta Potthurid52b2732021-08-12 12:48:24 -050079
80 ${data}= Set Variable {"${delete_param}": [${Null}]}
81 ${resp}= Redfish.Patch
shrsuman123298e8042021-08-20 07:36:21 -050082 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -050083 ... body=${data} valid_status_codes=[${valid_status_code}]
84
85 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
shrsuman123a3759b32021-11-02 02:50:42 -050086
87 # Wait few seconds for configuration to get effective.
88 Sleep ${wait_time}
shrsuman123298e8042021-08-20 07:36:21 -050089 ${vmi_ip}= Get VMI Network Interface Details ${interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -050090 Should Be Empty ${vmi_ip["IPv4_Address"]}
91
92Set VMI IPv4 Origin
93 [Documentation] Set VMI IPv4 origin.
94 [Arguments] ${dhcp_enabled}=${False} ${valid_status_code}=${HTTP_ACCEPTED}
shrsuman123a0355782021-10-18 05:56:56 -050095 ... ${interface}=${ethernet_interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -050096
97 # Description of argument(s):
98 # dhcp_enabled True if user wants to enable DHCP. Default is Static, hence value is set to False.
99 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_OK.
shrsuman123298e8042021-08-20 07:36:21 -0500100 # interface VMI interface (eg. eth0 or eth1).
Sweta Potthurid52b2732021-08-12 12:48:24 -0500101
102 ${data}= Set Variable If ${dhcp_enabled} == ${False} ${DISABLE_DHCP} ${ENABLE_DHCP}
103 ${resp}= Redfish.Patch
shrsuman123298e8042021-08-20 07:36:21 -0500104 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -0500105 ... body=${data} valid_status_codes=[${valid_status_code}]
106
107 Sleep ${wait_time}
108 Return From Keyword If ${valid_status_code} != ${HTTP_ACCEPTED}
109 ${resp}= Redfish.Get
shrsuman123298e8042021-08-20 07:36:21 -0500110 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -0500111 Should Be Equal ${resp.dict["DHCPv4"]["DHCPEnabled"]} ${dhcp_enabled}
112
113Get VMI Network Interface Details
114 [Documentation] Get VMI network interface details.
shrsuman123a0355782021-10-18 05:56:56 -0500115 [Arguments] ${interface}=${ethernet_interface} ${valid_status_code}=${HTTP_OK}
Sweta Potthurid52b2732021-08-12 12:48:24 -0500116
117 # Description of argument(s):
shrsuman123298e8042021-08-20 07:36:21 -0500118 # interface VMI interface (eg. eth0 or eth1).
Sweta Potthurid52b2732021-08-12 12:48:24 -0500119 # valid_status_code Expected valid status code from GET request.
120
121 # Note: It returns a dictionary of VMI ethernet interface parameters.
122
123 ${resp}= Redfish.Get
shrsuman123298e8042021-08-20 07:36:21 -0500124 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${interface}
Sweta Potthurid52b2732021-08-12 12:48:24 -0500125 ... valid_status_codes=[${valid_status_code}]
126
127 ${ip_resp}= Evaluate json.loads(r'''${resp.text}''') json
128
129 ${ip_exists}= Set Variable If ${ip_resp["IPv4Addresses"]} == @{empty} ${False} ${True}
130 ${static_exists}= Set Variable If ${ip_resp["IPv4StaticAddresses"]} == @{empty} ${False} ${True}
131
132 ${vmi_ip}= Run Keyword If ${ip_exists} == ${True}
133 ... Create Dictionary DHCPv4=${${ip_resp["DHCPv4"]["DHCPEnabled"]}} Id=${ip_resp["Id"]}
134 ... Description=${ip_resp["Description"]} IPv4_Address=${ip_resp["IPv4Addresses"][0]["Address"]}
135 ... IPv4_AddressOrigin=${ip_resp["IPv4Addresses"][0]["AddressOrigin"]} Name=${ip_resp["Name"]}
136 ... IPv4_Gateway=${ip_resp["IPv4Addresses"][0]["Gateway"]}
137 ... InterfaceEnabled=${${ip_resp["InterfaceEnabled"]}}
138 ... IPv4_SubnetMask=${ip_resp["IPv4Addresses"][0]["SubnetMask"]}
139 ... IPv4StaticAddresses=${${static_exists}}
140 ... ELSE
141 ... Create Dictionary DHCPv4=${${ip_resp["DHCPv4"]["DHCPEnabled"]}} Id=${ip_resp["Id"]}
142 ... Description=${ip_resp["Description"]} IPv4StaticAddresses=${ip_resp["IPv4StaticAddresses"]}
143 ... IPv4_Address=${ip_resp["IPv4Addresses"]} Name=${ip_resp["Name"]}
144 ... InterfaceEnabled=${${ip_resp["InterfaceEnabled"]}}
145
146 [Return] &{vmi_ip}
147
shrsuman123298e8042021-08-20 07:36:21 -0500148
149Get VMI Interfaces
150 [Documentation] Get VMI network interface.
151 [Arguments] ${valid_status_code}=${HTTP_OK}
152
153 # Description of argument(s):
154 # valid_status_code Expected valid status code from GET request.
155 # By default set to ${HTTP_OK}.
156
157 ${resp}= Redfish.Get /redfish/v1/Systems/hypervisor/EthernetInterfaces
158 ... valid_status_codes=[${valid_status_code}]
159
160 ${resp}= Evaluate json.loads(r'''${resp.text}''') json
161 ${interfaces_uri}= Set Variable ${resp["Members"]}
162 ${interface_list}= Create List
163 ${number_of_interfaces}= Get Length ${interfaces_uri}
164 FOR ${interface} IN RANGE ${number_of_interfaces}
165 ${_} ${interface_value}= Split String From Right ${interfaces_uri[${interface}]}[@odata.id] / 1
166 Append To List ${interface_list} ${interface_value}
167 END
168
169 [Return] @{interface_list}
170
171
Sweta Potthurid52b2732021-08-12 12:48:24 -0500172Verify VMI EthernetInterfaces
173 [Documentation] Verify VMI ethernet interfaces.
174 [Arguments] ${valid_status_code}=${HTTP_OK}
175
176 # Description of argument(s):
177 # valid_status_code Expected valid status code from GET request.
178
179 ${resp}= Redfish.Get /redfish/v1/Systems/hypervisor/EthernetInterfaces
180 ... valid_status_codes=[${valid_status_code}]
181
182 ${resp}= Evaluate json.loads(r'''${resp.text}''') json
183 ${interfaces}= Set Variable ${resp["Members"]}
184
185 ${number_of_interfaces}= Get Length ${interfaces}
186 FOR ${i} IN RANGE ${number_of_interfaces}
187 Should Be Equal As Strings ${interfaces[${i}]}[@odata.id]
188 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/eth${i}
189 END
190 Should Be Equal ${resp["Members@odata.count"]} ${number_of_interfaces}
shrsuman1237ba02f32021-08-26 04:50:56 -0500191
192Get And Set Static VMI IP
193 [Documentation] Get a suitable VMI IP and set it.
194 [Arguments] ${host}=${OPENBMC_HOST} ${network_active_channel}=${CHANNEL_NUMBER}
195 ... ${interface}=eth0 ${valid_status_code}=${HTTP_ACCEPTED}
196
197 # Description of argument(s):
198 # host BMC host name or IP address.
199 # network_active_channel Ethernet channel number (e.g.1 or 2).
200 # interface VMI interface (eg. eth0 or eth1).
201 # valid_status_code Expected valid status code from PATCH request. Default is HTTP_ACCEPTED.
202
203 ${vmi_ip}= Get First Non Pingable IP From Subnet ${host}
204 ${bmc_ip_data}= Get Network Configuration ${network_active_channel}
205
206 Set Static IPv4 Address To VMI And Verify ${vmi_ip} ${bmc_ip_data[0]['Gateway']}
207 ... ${bmc_ip_data[0]['SubnetMask']} ${valid_status_code} ${interface}
208
209 [Return] ${vmi_ip} ${bmc_ip_data}