blob: dbbe581f936cd0c6eab1e24426a8db9da3a7acf8 [file] [log] [blame]
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -05001*** Settings ***
2
3Documentation Module to test IPMI network functionality.
4Resource ../lib/ipmi_client.robot
5Resource ../lib/openbmc_ffdc.robot
Rahul Maheshwaria7c39032019-09-18 02:15:01 -05006Resource ../lib/bmc_network_utils.robot
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -05007Library ../lib/ipmi_utils.py
8Library ../lib/gen_robot_valid.py
Tony Leeea741302019-11-08 11:01:58 +08009Library ../lib/var_funcs.py
10Library ../lib/bmc_network_utils.py
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -050011
Tony Leeea741302019-11-08 11:01:58 +080012Suite Setup Redfish.Login
13Test Setup Printn
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -050014Test Teardown FFDC On Test Case Fail
15
16Force Tags IPMI_Network
17
Rahul Maheshwaridf04d922019-07-30 12:15:36 -050018
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -050019*** Variables ***
20
21${initial_lan_config} &{EMPTY}
22
23
24*** Test Cases ***
25
Rahul Maheshwaridf04d922019-07-30 12:15:36 -050026Retrieve IP Address Via IPMI And Verify Using Redfish
27 [Documentation] Retrieve IP address using IPMI and verify using Redfish.
28 [Tags] Retrieve_IP_Address_Via_IPMI_And_Verify_Using_Redish
29
Tony Leeea741302019-11-08 11:01:58 +080030 ${active_channel_config}= Get Active Channel Config
31 :FOR ${channel_number} IN @{active_channel_config.keys()}
32 \ Verify Channel Info ${channel_number} IPv4StaticAddresses ${active_channel_config}
33 END
Rahul Maheshwaridf04d922019-07-30 12:15:36 -050034
Prashanth Katti9bebccb2019-09-25 06:38:04 -050035Retrieve Default Gateway Via IPMI And Verify
36 [Documentation] Retrieve default gateway via IPMI and verify it's existence on the BMC.
37 [Tags] Retrieve_Default_Gateway_Via_IPMI_And_Verify
Rahul Maheshwaridf04d922019-07-30 12:15:36 -050038
39 ${lan_print_ipmi}= Get LAN Print Dict
40
Prashanth Katti9bebccb2019-09-25 06:38:04 -050041 Verify Gateway On BMC ${lan_print_ipmi['Default Gateway IP']}
Rahul Maheshwaridf04d922019-07-30 12:15:36 -050042
43
44Retrieve MAC Address Via IPMI And Verify Using Redfish
45 [Documentation] Retrieve MAC address via IPMI and verify using Redfish.
46 [Tags] Retrieve_MAC_Address_Via_IPMI_And_Verify_Using_Redfish
47
Tony Leeea741302019-11-08 11:01:58 +080048 ${active_channel_config}= Get Active Channel Config
49 :FOR ${channel_number} IN @{active_channel_config.keys()}
50 \ Verify Channel Info ${channel_number} MACAddress ${active_channel_config}
51 END
Rahul Maheshwaridf04d922019-07-30 12:15:36 -050052
53
Rahul Maheshwaria7c39032019-09-18 02:15:01 -050054Test Valid IPMI Channels Supported
55 [Documentation] Verify IPMI channels supported on a given system.
56 [Tags] Test_Valid_IPMI_Channels_Supported
57
58 ${channel_count}= Get Physical Network Interface Count
59
60 # Note: IPMI network channel logically starts from 1.
61 :FOR ${channel_number} IN RANGE 1 ${channel_count}
62 \ Run IPMI Standard Command lan print ${channel_number}
63
64
65Test Invalid IPMI Channel Response
66 [Documentation] Verify invalid IPMI channels supported response.
67 [Tags] Test_Invalid_IPMI_Channel_Response
68
69 ${channel_count}= Get Physical Network Interface Count
70
71 # To target invalid channel, increment count.
72 ${channel_number}= Evaluate ${channel_count} + 1
73
74 # Example of invalid channel:
75 # $ ipmitool -I lanplus -H xx.xx.xx.xx -P password lan print 3
76 # Get Channel Info command failed: Parameter out of range
77 # Invalid channel: 3
78
79 ${stdout}= Run External IPMI Standard Command
80 ... lan print ${channel_number} fail_on_err=${0}
81 Should Contain ${stdout} Invalid channel
82 ... msg=IPMI channel ${channel_number} is invalid but seen working.
83
84
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -050085Verify IPMI Inband Network Configuration
86 [Documentation] Verify BMC network configuration via inband IPMI.
87 [Tags] Verify_IPMI_Inband_Network_Configuration
88 [Teardown] Run Keywords Restore Configuration AND FFDC On Test Case Fail
89
90 Redfish Power On
Tony Leec762a7a2019-12-30 17:12:50 +080091 ${initial_lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -050092 Set Suite Variable ${initial_lan_config}
93
94 Set IPMI Inband Network Configuration 10.10.10.10 255.255.255.0 10.10.10.10
95 Sleep 10
96
Tony Leec762a7a2019-12-30 17:12:50 +080097 ${lan_print_output}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -050098 Valid Value lan_print_output['IP Address'] ["10.10.10.10"]
99 Valid Value lan_print_output['Subnet Mask'] ["255.255.255.0"]
100 Valid Value lan_print_output['Default Gateway IP'] ["10.10.10.10"]
101
102
Sushma M M08adaa02020-01-23 03:25:19 -0600103Get IP Address Source And Verify Using Redfish
104 [Documentation] Get IP address source and verify it using Redfish.
105 [Tags] Get_IP_Address_Source_And_Verify_Using_Redfish
106
Tony Lee5a200142020-02-11 13:33:05 +0800107 ${active_channel_config}= Get Active Channel Config
108 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER}
109
110 ${ipv4_addresses}= Redfish.Get Attribute
111 ... /redfish/v1/Managers/bmc/EthernetInterfaces/${active_channel_config['${CHANNEL_NUMBER}']['name']} IPv4Addresses
112
113 FOR ${ipv4_address} IN @{ipv4_addresses}
114 ${ip_address_source}= Set Variable if '${ipv4_address['Address']}' == '${lan_config['IP Address']}'
115 ... ${ipv4_address['AddressOrigin']} Address
116 Exit For Loop IF "${ip_address_source}" != 'None'
117 END
118
Sushma M M08adaa02020-01-23 03:25:19 -0600119 Valid Value lan_config['IP Address Source'] [${ip_address_source}]
120
121
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500122*** Keywords ***
123
Rahul Maheshwaria7c39032019-09-18 02:15:01 -0500124Get Physical Network Interface Count
125 [Documentation] Return valid physical network interfaces count.
126 # Example:
127 # link/ether 22:3a:7f:70:92:cb brd ff:ff:ff:ff:ff:ff
128 # link/ether 0e:8e:0d:6b:e9:e4 brd ff:ff:ff:ff:ff:ff
129
130 ${mac_entry_list}= Get BMC MAC Address List
131 ${mac_unique_list}= Remove Duplicates ${mac_entry_list}
132 ${physical_interface_count}= Get Length ${mac_unique_list}
133
134 [Return] ${physical_interface_count}
135
136
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500137Set IPMI Inband Network Configuration
138 [Documentation] Run sequence of standard IPMI command in-band and set
139 ... the IP configuration.
140 [Arguments] ${ip} ${netmask} ${gateway} ${login}=${1}
141
142 # Description of argument(s):
143 # ip The IP address to be set using ipmitool-inband.
144 # netmask The Netmask to be set using ipmitool-inband.
145 # gateway The Gateway address to be set using ipmitool-inband.
146
147 Run Inband IPMI Standard Command
Tony Leec762a7a2019-12-30 17:12:50 +0800148 ... lan set ${CHANNEL_NUMBER} ipsrc static login_host=${login}
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500149 Run Inband IPMI Standard Command
Tony Leec762a7a2019-12-30 17:12:50 +0800150 ... lan set ${CHANNEL_NUMBER} ipaddr ${ip} login_host=${0}
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500151 Run Inband IPMI Standard Command
Tony Leec762a7a2019-12-30 17:12:50 +0800152 ... lan set ${CHANNEL_NUMBER} netmask ${netmask} login_host=${0}
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500153 Run Inband IPMI Standard Command
Tony Leec762a7a2019-12-30 17:12:50 +0800154 ... lan set ${CHANNEL_NUMBER} defgw ipaddr ${gateway} login_host=${0}
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500155
156
157Restore Configuration
158 [Documentation] Restore the configuration to its pre-test state
Naman Navin Hegde9e8c0d82019-08-11 15:22:44 -0500159 ${length}= Get Length ${initial_lan_config}
160 Return From Keyword If ${length} == ${0}
161
162 Set IPMI Inband Network Configuration ${initial_lan_config['IP Address']}
163 ... ${initial_lan_config['Subnet Mask']}
164 ... ${initial_lan_config['Default Gateway IP']} login=${0}
Rahul Maheshwaridf04d922019-07-30 12:15:36 -0500165
Tony Leeea741302019-11-08 11:01:58 +0800166
167Verify Channel Info
168 [Documentation] Verify the channel info.
169 [Arguments] ${channel_number} ${network_parameter} ${active_channel_config}
170
171 Run Keyword If '${network_parameter}' == 'IPv4StaticAddresses'
172 ... Verify IPv4 Static Address ${channel_number} ${active_channel_config}
173 ... ELSE IF '${network_parameter}' == 'MACAddress'
174 ... Verify MAC Address ${channel_number} ${active_channel_config}
175
176
177Verify IPv4 Static Address
178 [Documentation] Verify the IPv4 Static Address.
179 [Arguments] ${channel_number} ${active_channel_config}
180
181 ${lan_print_ipmi}= Get LAN Print Dict ${channel_number}
182 ${ipv4_static_addresses}= Redfish.Get Attribute
183 ... ${REDFISH_NW_ETH_IFACE}${active_channel_config['${channel_number}']['name']} IPv4StaticAddresses
184 ${redfish_ips}= Nested Get Address ${ipv4_static_addresses}
185 Rprint Vars lan_print_ipmi ipv4_static_addresses redfish_ips
186 Valid Value lan_print_ipmi['IP Address'] ${redfish_ips}
187
188
189Verify MAC Address
190 [Documentation] Verify the MAC Address.
191 [Arguments] ${channel_number} ${active_channel_config}
192
193 ${lan_print_ipmi}= Get LAN Print Dict ${channel_number}
194 ${redfish_mac_address}= Redfish.Get Attribute
195 ... ${REDFISH_NW_ETH_IFACE}${active_channel_config['${channel_number}']['name']} MACAddress
196 Rprint Vars lan_print_ipmi redfish_mac_address
197 Valid Value lan_print_ipmi['MAC Address'] ['${redfish_mac_address}']