Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Network interface configuration and verification |
| 3 | ... tests. |
| 4 | |
George Keishing | 5d46755 | 2019-02-08 23:30:48 -0600 | [diff] [blame] | 5 | Resource ../../lib/bmc_redfish_resource.robot |
| 6 | Resource ../../lib/bmc_network_utils.robot |
| 7 | Resource ../../lib/openbmc_ffdc.robot |
Prashanth Katti | 747ce9d | 2019-02-07 07:23:48 -0600 | [diff] [blame] | 8 | Library ../../lib/bmc_network_utils.py |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 9 | Library Collections |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 10 | |
aravinth0510 | ca054ee | 2022-06-16 13:26:15 +0000 | [diff] [blame] | 11 | Suite Setup Suite Setup Execution |
| 12 | Suite Teardown Suite Teardown Execution |
| 13 | Test Setup Test Setup Execution |
| 14 | Test Teardown Test Teardown Execution |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 15 | |
Prashanth Katti | f34fafa | 2019-06-20 05:04:40 -0500 | [diff] [blame] | 16 | Force Tags Network_Conf_Test |
| 17 | |
Prashanth Katti | 23efc6e | 2019-03-13 06:07:15 -0500 | [diff] [blame] | 18 | *** Variables *** |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 19 | ${test_hostname} openbmc |
| 20 | ${test_ipv4_addr} 10.7.7.7 |
| 21 | ${test_ipv4_invalid_addr} 0.0.1.a |
| 22 | ${test_subnet_mask} 255.255.0.0 |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 23 | ${broadcast_ip} 10.7.7.255 |
| 24 | ${loopback_ip} 127.0.0.2 |
| 25 | ${multicast_ip} 224.6.6.6 |
| 26 | ${out_of_range_ip} 10.7.7.256 |
Prashanth Katti | 568df5f | 2020-05-15 06:00:37 -0500 | [diff] [blame] | 27 | ${test_ipv4_addr2} 10.7.7.8 |
Prashanth Katti | 23efc6e | 2019-03-13 06:07:15 -0500 | [diff] [blame] | 28 | |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 29 | # Valid netmask is 4 bytes long and has continuous block of 1s. |
Prashanth Katti | 040c8c1 | 2019-05-31 04:42:05 -0500 | [diff] [blame] | 30 | # Maximum valid value in each octet is 255 and least value is 0. |
| 31 | # 253 is not valid, as binary value is 11111101. |
| 32 | ${invalid_netmask} 255.255.253.0 |
| 33 | ${alpha_netmask} ff.ff.ff.ff |
| 34 | # Maximum value of octet in netmask is 255. |
| 35 | ${out_of_range_netmask} 255.256.255.0 |
| 36 | ${more_byte_netmask} 255.255.255.0.0 |
| 37 | ${less_byte_netmask} 255.255.255 |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 38 | ${threshold_netmask} 255.255.255.255 |
| 39 | ${lowest_netmask} 128.0.0.0 |
| 40 | |
| 41 | # There will be 4 octets in IP address (e.g. xx.xx.xx.xx) |
| 42 | # but trying to configure xx.xx.xx |
| 43 | ${less_octet_ip} 10.3.36 |
| 44 | |
| 45 | # For the address 10.6.6.6, the 10.6.6.0 portion describes the |
| 46 | # network ID and the 6 describe the host. |
| 47 | |
| 48 | ${network_id} 10.7.7.0 |
| 49 | ${hex_ip} 0xa.0xb.0xc.0xd |
| 50 | ${negative_ip} 10.-7.-7.7 |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 51 | @{static_name_servers} 10.5.5.5 |
Prashanth Katti | 3c7b643 | 2019-07-26 06:53:37 -0500 | [diff] [blame] | 52 | @{null_value} null |
Prashanth Katti | afe16b7 | 2019-08-02 00:29:45 -0500 | [diff] [blame] | 53 | @{empty_dictionary} {} |
| 54 | @{string_value} aa.bb.cc.dd |
| 55 | |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 56 | *** Test Cases *** |
| 57 | |
| 58 | Get IP Address And Verify |
| 59 | [Documentation] Get IP Address And Verify. |
George Keishing | 5d46755 | 2019-02-08 23:30:48 -0600 | [diff] [blame] | 60 | [Tags] Get_IP_Address_And_Verify |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 61 | |
Sushil Singh | 5062114 | 2020-06-16 11:12:21 -0500 | [diff] [blame] | 62 | FOR ${network_configuration} IN @{network_configurations} |
| 63 | Verify IP On BMC ${network_configuration['Address']} |
| 64 | END |
Prashanth Katti | 747ce9d | 2019-02-07 07:23:48 -0600 | [diff] [blame] | 65 | |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 66 | Get Netmask And Verify |
| 67 | [Documentation] Get Netmask And Verify. |
George Keishing | 5d46755 | 2019-02-08 23:30:48 -0600 | [diff] [blame] | 68 | [Tags] Get_Netmask_And_Verify |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 69 | |
Sushil Singh | 5062114 | 2020-06-16 11:12:21 -0500 | [diff] [blame] | 70 | FOR ${network_configuration} IN @{network_configurations} |
| 71 | Verify Netmask On BMC ${network_configuration['SubnetMask']} |
| 72 | END |
Prashanth Katti | 747ce9d | 2019-02-07 07:23:48 -0600 | [diff] [blame] | 73 | |
Prashanth Katti | 2ec9d8b | 2019-02-12 05:20:19 -0600 | [diff] [blame] | 74 | Get Gateway And Verify |
| 75 | [Documentation] Get gateway and verify it's existence on the BMC. |
| 76 | [Tags] Get_Gateway_And_Verify |
| 77 | |
Sushil Singh | 5062114 | 2020-06-16 11:12:21 -0500 | [diff] [blame] | 78 | FOR ${network_configuration} IN @{network_configurations} |
| 79 | Verify Gateway On BMC ${network_configuration['Gateway']} |
| 80 | END |
Prashanth Katti | 2ec9d8b | 2019-02-12 05:20:19 -0600 | [diff] [blame] | 81 | |
| 82 | Get MAC Address And Verify |
| 83 | [Documentation] Get MAC address and verify it's existence on the BMC. |
| 84 | [Tags] Get_MAC_Address_And_Verify |
| 85 | |
Tony Lee | 412c668 | 2020-04-01 17:34:30 +0800 | [diff] [blame] | 86 | ${active_channel_config}= Get Active Channel Config |
| 87 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 88 | |
| 89 | ${resp}= Redfish.Get ${REDFISH_NW_ETH_IFACE}${ethernet_interface} |
Prashanth Katti | 2ec9d8b | 2019-02-12 05:20:19 -0600 | [diff] [blame] | 90 | ${macaddr}= Get From Dictionary ${resp.dict} MACAddress |
| 91 | Validate MAC On BMC ${macaddr} |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 92 | |
Prashanth Katti | 2c5c3bb | 2019-02-14 04:23:07 -0600 | [diff] [blame] | 93 | Verify All Configured IP And Netmask |
| 94 | [Documentation] Verify all configured IP and netmask on BMC. |
| 95 | [Tags] Verify_All_Configured_IP_And_Netmask |
| 96 | |
Sushil Singh | 5062114 | 2020-06-16 11:12:21 -0500 | [diff] [blame] | 97 | FOR ${network_configuration} IN @{network_configurations} |
| 98 | Verify IP And Netmask On BMC ${network_configuration['Address']} |
| 99 | ... ${network_configuration['SubnetMask']} |
| 100 | END |
Prashanth Katti | 2c5c3bb | 2019-02-14 04:23:07 -0600 | [diff] [blame] | 101 | |
Prashanth Katti | 23efc6e | 2019-03-13 06:07:15 -0500 | [diff] [blame] | 102 | Get Hostname And Verify |
| 103 | [Documentation] Get hostname via Redfish and verify. |
| 104 | [Tags] Get_Hostname_And_Verify |
| 105 | |
| 106 | ${hostname}= Redfish_Utils.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName |
| 107 | |
| 108 | Validate Hostname On BMC ${hostname} |
| 109 | |
| 110 | Configure Hostname And Verify |
| 111 | [Documentation] Configure hostname via Redfish and verify. |
| 112 | [Tags] Configure_Hostname_And_Verify |
shrsuman123 | 578276c | 2020-08-04 04:28:58 -0500 | [diff] [blame] | 113 | [Teardown] Run Keywords |
| 114 | ... Configure Hostname ${hostname} AND Validate Hostname On BMC ${hostname} |
Prashanth Katti | 23efc6e | 2019-03-13 06:07:15 -0500 | [diff] [blame] | 115 | |
Prashanth Katti | adf0b4e | 2019-06-10 04:20:30 -0500 | [diff] [blame] | 116 | ${hostname}= Redfish_Utils.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName |
Prashanth Katti | 23efc6e | 2019-03-13 06:07:15 -0500 | [diff] [blame] | 117 | |
Prashanth Katti | adf0b4e | 2019-06-10 04:20:30 -0500 | [diff] [blame] | 118 | Configure Hostname ${test_hostname} |
Prashanth Katti | 23efc6e | 2019-03-13 06:07:15 -0500 | [diff] [blame] | 119 | Validate Hostname On BMC ${test_hostname} |
| 120 | |
nagarjunb22 | 60784a4 | 2022-06-13 10:39:33 +0530 | [diff] [blame] | 121 | # Verify configured hostname via redfish. |
| 122 | ${new_hostname}= Redfish_Utils.Get Attribute ${REDFISH_NW_PROTOCOL_URI} HostName |
| 123 | Should Be Equal ${new_hostname} ${test_hostname} |
| 124 | |
Prashanth Katti | adf0b4e | 2019-06-10 04:20:30 -0500 | [diff] [blame] | 125 | |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 126 | Add Valid IPv4 Address And Verify |
| 127 | [Documentation] Add IPv4 Address via Redfish and verify. |
George Keishing | 0c8100f | 2022-01-13 00:24:57 -0600 | [diff] [blame] | 128 | [Tags] Add_Valid_IPv4_Address_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 129 | [Teardown] Run Keywords |
| 130 | ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 131 | |
| 132 | Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway} |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 133 | |
| 134 | Add Invalid IPv4 Address And Verify |
| 135 | [Documentation] Add Invalid IPv4 Address via Redfish and verify. |
George Keishing | 0c8100f | 2022-01-13 00:24:57 -0600 | [diff] [blame] | 136 | [Tags] Add_Invalid_IPv4_Address_And_Verify |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 137 | |
| 138 | Add IP Address ${test_ipv4_invalid_addr} ${test_subnet_mask} |
| 139 | ... ${test_gateway} valid_status_codes=${HTTP_BAD_REQUEST} |
| 140 | |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 141 | Configure Out Of Range IP |
| 142 | [Documentation] Configure out-of-range IP address. |
| 143 | [Tags] Configure_Out_Of_Range_IP |
| 144 | [Template] Add IP Address |
| 145 | |
| 146 | # ip subnet_mask gateway valid_status_codes |
| 147 | ${out_of_range_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 148 | |
| 149 | Configure Broadcast IP |
| 150 | [Documentation] Configure broadcast IP address. |
| 151 | [Tags] Configure_Broadcast_IP |
| 152 | [Template] Add IP Address |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 153 | [Teardown] Clear IP Settings On Fail ${broadcast_ip} |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 154 | |
| 155 | # ip subnet_mask gateway valid_status_codes |
| 156 | ${broadcast_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 157 | |
| 158 | Configure Multicast IP |
| 159 | [Documentation] Configure multicast IP address. |
| 160 | [Tags] Configure_Multicast_IP |
| 161 | [Template] Add IP Address |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 162 | [Teardown] Clear IP Settings On Fail ${multicast_ip} |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 163 | |
| 164 | # ip subnet_mask gateway valid_status_codes |
| 165 | ${multicast_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 166 | |
| 167 | Configure Loopback IP |
| 168 | [Documentation] Configure loopback IP address. |
| 169 | [Tags] Configure_Loopback_IP |
| 170 | [Template] Add IP Address |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 171 | [Teardown] Clear IP Settings On Fail ${loopback_ip} |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 172 | |
| 173 | # ip subnet_mask gateway valid_status_codes |
| 174 | ${loopback_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 175 | |
| 176 | Add Valid IPv4 Address And Check Persistency |
nagarjunb22 | 60784a4 | 2022-06-13 10:39:33 +0530 | [diff] [blame] | 177 | [Documentation] Add IPv4 address and check persistency. |
George Keishing | 0c8100f | 2022-01-13 00:24:57 -0600 | [diff] [blame] | 178 | [Tags] Add_Valid_IPv4_Address_And_Check_Persistency |
nagarjunb22 | 60784a4 | 2022-06-13 10:39:33 +0530 | [diff] [blame] | 179 | [Teardown] Run Keywords |
| 180 | ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 181 | |
| 182 | Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway} |
| 183 | |
| 184 | # Reboot BMC and verify persistency. |
Sweta Potthuri | 63f0b10 | 2022-08-03 23:11:46 -0500 | [diff] [blame] | 185 | Redfish OBMC Reboot (off) stack_mode=skip |
George Keishing | 5c49874 | 2019-08-09 02:14:44 -0500 | [diff] [blame] | 186 | Redfish.Login |
Prashanth Katti | b36a752 | 2019-05-22 05:32:39 -0500 | [diff] [blame] | 187 | Verify IP On BMC ${test_ipv4_addr} |
nagarjunb22 | 60784a4 | 2022-06-13 10:39:33 +0530 | [diff] [blame] | 188 | Verify IP On Redfish URI ${test_ipv4_addr} |
| 189 | |
Vijay | de3bf7b | 2019-04-16 04:56:09 -0500 | [diff] [blame] | 190 | |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 191 | Add Fourth Octet Threshold IP And Verify |
| 192 | [Documentation] Add fourth octet threshold IP and verify. |
| 193 | [Tags] Add_Fourth_Octet_Threshold_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 194 | [Teardown] Run Keywords |
| 195 | ... Delete IP Address 10.7.7.254 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 196 | |
| 197 | Add IP Address 10.7.7.254 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 198 | |
| 199 | Add Fourth Octet Lowest IP And Verify |
| 200 | [Documentation] Add fourth octet lowest IP and verify. |
| 201 | [Tags] Add_Fourth_Octet_Lowest_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 202 | [Teardown] Run Keywords |
| 203 | ... Delete IP Address 10.7.7.1 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 204 | |
| 205 | Add IP Address 10.7.7.1 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 206 | |
| 207 | Add Third Octet Threshold IP And Verify |
| 208 | [Documentation] Add third octet threshold IP and verify. |
| 209 | [Tags] Add_Third_Octet_Threshold_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 210 | [Teardown] Run Keywords |
| 211 | ... Delete IP Address 10.7.255.7 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 212 | |
| 213 | Add IP Address 10.7.255.7 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 214 | |
| 215 | Add Third Octet Lowest IP And Verify |
| 216 | [Documentation] Add third octet lowest IP and verify. |
| 217 | [Tags] Add_Third_Octet_Lowest_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 218 | [Teardown] Run Keywords |
| 219 | ... Delete IP Address 10.7.0.7 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 220 | |
| 221 | Add IP Address 10.7.0.7 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 222 | |
| 223 | Add Second Octet Threshold IP And Verify |
| 224 | [Documentation] Add second octet threshold IP and verify. |
| 225 | [Tags] Add_Second_Octet_Threshold_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 226 | [Teardown] Run Keywords |
| 227 | ... Delete IP Address 10.255.7.7 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 228 | |
| 229 | Add IP Address 10.255.7.7 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 230 | |
| 231 | Add Second Octet Lowest IP And Verify |
| 232 | [Documentation] Add second octet lowest IP and verify. |
| 233 | [Tags] Add_Second_Octet_Lowest_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 234 | [Teardown] Run Keywords |
| 235 | ... Delete IP Address 10.0.7.7 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 236 | |
| 237 | Add IP Address 10.0.7.7 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 238 | |
| 239 | Add First Octet Threshold IP And Verify |
| 240 | [Documentation] Add first octet threshold IP and verify. |
| 241 | [Tags] Add_First_Octet_Threshold_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 242 | [Teardown] Run Keywords |
Anves Kumar rayankula | f757b10 | 2020-07-27 20:41:36 -0500 | [diff] [blame] | 243 | ... Delete IP Address 223.7.7.7 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 244 | |
| 245 | Add IP Address 223.7.7.7 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 246 | |
| 247 | Add First Octet Lowest IP And Verify |
| 248 | [Documentation] Add first octet lowest IP and verify. |
| 249 | [Tags] Add_First_Octet_Lowest_IP_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 250 | [Teardown] Run Keywords |
| 251 | ... Delete IP Address 1.7.7.7 AND Test Teardown Execution |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 252 | |
| 253 | Add IP Address 1.7.7.7 ${test_subnet_mask} ${test_gateway} |
Prashanth Katti | 6cedca2 | 2019-05-30 02:31:11 -0500 | [diff] [blame] | 254 | |
Prashanth Katti | 040c8c1 | 2019-05-31 04:42:05 -0500 | [diff] [blame] | 255 | Configure Invalid Netmask |
| 256 | [Documentation] Verify error while setting invalid netmask. |
| 257 | [Tags] Configure_Invalid_Netmask |
| 258 | [Template] Add IP Address |
| 259 | |
| 260 | # ip subnet_mask gateway valid_status_codes |
| 261 | ${test_ipv4_addr} ${invalid_netmask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 262 | |
| 263 | Configure Out Of Range Netmask |
| 264 | [Documentation] Verify error while setting out of range netmask. |
| 265 | [Tags] Configure_Out_Of_Range_Netmask |
| 266 | [Template] Add IP Address |
| 267 | |
| 268 | # ip subnet_mask gateway valid_status_codes |
| 269 | ${test_ipv4_addr} ${out_of_range_netmask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 270 | |
| 271 | Configure Alpha Netmask |
| 272 | [Documentation] Verify error while setting alpha netmask. |
| 273 | [Tags] Configure_Alpha_Netmask |
| 274 | [Template] Add IP Address |
| 275 | |
| 276 | # ip subnet_mask gateway valid_status_codes |
| 277 | ${test_ipv4_addr} ${alpha_netmask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 278 | |
| 279 | Configure More Byte Netmask |
| 280 | [Documentation] Verify error while setting more byte netmask. |
| 281 | [Tags] Configure_More_Byte_Netmask |
| 282 | [Template] Add IP Address |
| 283 | |
| 284 | # ip subnet_mask gateway valid_status_codes |
| 285 | ${test_ipv4_addr} ${more_byte_netmask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 286 | |
| 287 | Configure Less Byte Netmask |
| 288 | [Documentation] Verify error while setting less byte netmask. |
| 289 | [Tags] Configure_Less_Byte_Netmask |
| 290 | [Template] Add IP Address |
| 291 | |
| 292 | # ip subnet_mask gateway valid_status_codes |
| 293 | ${test_ipv4_addr} ${less_byte_netmask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 294 | |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 295 | Configure Threshold Netmask And Verify |
| 296 | [Documentation] Configure threshold netmask and verify. |
George Keishing | 5236ec5 | 2022-01-31 12:07:58 -0600 | [diff] [blame] | 297 | [Tags] Configure_Threshold_Netmask_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 298 | [Teardown] Run Keywords |
| 299 | ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 300 | |
| 301 | Add IP Address ${test_ipv4_addr} ${threshold_netmask} ${test_gateway} |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 302 | |
| 303 | Configure Lowest Netmask And Verify |
| 304 | [Documentation] Configure lowest netmask and verify. |
George Keishing | 5236ec5 | 2022-01-31 12:07:58 -0600 | [diff] [blame] | 305 | [Tags] Configure_Lowest_Netmask_And_Verify |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 306 | [Teardown] Run Keywords |
| 307 | ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 308 | |
| 309 | Add IP Address ${test_ipv4_addr} ${lowest_netmask} ${test_gateway} |
Prashanth Katti | c6ad647 | 2019-06-14 03:33:39 -0500 | [diff] [blame] | 310 | |
| 311 | Configure Network ID |
| 312 | [Documentation] Verify error while configuring network ID. |
| 313 | [Tags] Configure_Network_ID |
| 314 | [Template] Add IP Address |
| 315 | [Teardown] Clear IP Settings On Fail ${network_id} |
| 316 | |
| 317 | # ip subnet_mask gateway valid_status_codes |
| 318 | ${network_id} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 319 | |
| 320 | Configure Less Octet IP |
| 321 | [Documentation] Verify error while Configuring less octet IP address. |
| 322 | [Tags] Configure_Less_Octet_IP |
| 323 | [Template] Add IP Address |
| 324 | |
| 325 | # ip subnet_mask gateway valid_status_codes |
| 326 | ${less_octet_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 327 | |
| 328 | Configure Empty IP |
| 329 | [Documentation] Verify error while Configuring empty IP address. |
| 330 | [Tags] Configure_Empty_IP |
| 331 | [Template] Add IP Address |
| 332 | |
| 333 | # ip subnet_mask gateway valid_status_codes |
| 334 | ${EMPTY} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 335 | |
| 336 | Configure Special Char IP |
| 337 | [Documentation] Configure invalid IP address containing special chars. |
| 338 | [Tags] Configure_Special_Char_IP |
| 339 | [Template] Add IP Address |
| 340 | |
| 341 | # ip subnet_mask gateway valid_status_codes |
| 342 | @@@.%%.44.11 ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 343 | |
| 344 | Configure Hexadecimal IP |
| 345 | [Documentation] Configure invalid IP address containing hex value. |
| 346 | [Tags] Configure_Hexadecimal_IP |
| 347 | [Template] Add IP Address |
| 348 | |
| 349 | # ip subnet_mask gateway valid_status_codes |
| 350 | ${hex_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 351 | |
| 352 | Configure Negative Octet IP |
| 353 | [Documentation] Configure invalid IP address containing negative octet. |
| 354 | [Tags] Configure_Negative_Octet_IP |
| 355 | [Template] Add IP Address |
| 356 | |
| 357 | # ip subnet_mask gateway valid_status_codes |
| 358 | ${negative_ip} ${test_subnet_mask} ${test_gateway} ${HTTP_BAD_REQUEST} |
| 359 | |
Prashanth Katti | 5cad5a0 | 2019-06-20 07:27:10 -0500 | [diff] [blame] | 360 | Configure Incomplete IP For Gateway |
| 361 | [Documentation] Configure incomplete IP for gateway and expect an error. |
| 362 | [Tags] Configure_Incomplete_IP_For_Gateway |
| 363 | [Template] Add IP Address |
| 364 | |
| 365 | # ip subnet_mask gateway valid_status_codes |
| 366 | ${test_ipv4_addr} ${test_subnet_mask} ${less_octet_ip} ${HTTP_BAD_REQUEST} |
| 367 | |
| 368 | Configure Special Char IP For Gateway |
| 369 | [Documentation] Configure special char IP for gateway and expect an error. |
| 370 | [Tags] Configure_Special_Char_IP_For_Gateway |
| 371 | [Template] Add IP Address |
| 372 | |
| 373 | # ip subnet_mask gateway valid_status_codes |
| 374 | ${test_ipv4_addr} ${test_subnet_mask} @@@.%%.44.11 ${HTTP_BAD_REQUEST} |
| 375 | |
| 376 | Configure Hexadecimal IP For Gateway |
| 377 | [Documentation] Configure hexadecimal IP for gateway and expect an error. |
| 378 | [Tags] Configure_Hexadecimal_IP_For_Gateway |
| 379 | [Template] Add IP Address |
| 380 | |
| 381 | # ip subnet_mask gateway valid_status_codes |
| 382 | ${test_ipv4_addr} ${test_subnet_mask} ${hex_ip} ${HTTP_BAD_REQUEST} |
| 383 | |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 384 | Get DNS Server And Verify |
| 385 | [Documentation] Get DNS server via Redfish and verify. |
| 386 | [Tags] Get_DNS_Server_And_Verify |
| 387 | |
| 388 | Verify CLI and Redfish Nameservers |
| 389 | |
| 390 | Configure DNS Server And Verify |
| 391 | [Documentation] Configure DNS server and verify. |
| 392 | [Tags] Configure_DNS_Server_And_Verify |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 393 | [Setup] DNS Test Setup Execution |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 394 | [Teardown] Run Keywords |
| 395 | ... Configure Static Name Servers AND Test Teardown Execution |
| 396 | |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 397 | Configure Static Name Servers ${static_name_servers} |
| 398 | Verify CLI and Redfish Nameservers |
| 399 | |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 400 | Delete DNS Server And Verify |
| 401 | [Documentation] Delete DNS server and verify. |
| 402 | [Tags] Delete_DNS_Server_And_Verify |
| 403 | [Setup] DNS Test Setup Execution |
| 404 | [Teardown] Run Keywords |
| 405 | ... Configure Static Name Servers AND Test Teardown Execution |
| 406 | |
| 407 | Delete Static Name Servers |
| 408 | Verify CLI and Redfish Nameservers |
| 409 | |
| 410 | Configure DNS Server And Check Persistency |
| 411 | [Documentation] Configure DNS server and check persistency on reboot. |
| 412 | [Tags] Configure_DNS_Server_And_Check_Persistency |
| 413 | [Setup] DNS Test Setup Execution |
| 414 | [Teardown] Run Keywords |
| 415 | ... Configure Static Name Servers AND Test Teardown Execution |
| 416 | |
| 417 | Configure Static Name Servers ${static_name_servers} |
| 418 | # Reboot BMC and verify persistency. |
Sweta Potthuri | 63f0b10 | 2022-08-03 23:11:46 -0500 | [diff] [blame] | 419 | Redfish OBMC Reboot (off) stack_mode=skip |
Anves Kumar rayankula | 8c628b7 | 2021-02-05 05:03:45 -0600 | [diff] [blame] | 420 | Redfish.Login |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 421 | Verify CLI and Redfish Nameservers |
| 422 | |
Prashanth Katti | 3063ffe | 2019-07-25 04:35:25 -0500 | [diff] [blame] | 423 | Configure Loopback IP For Gateway |
| 424 | [Documentation] Configure loopback IP for gateway and expect an error. |
| 425 | [Tags] Configure_Loopback_IP_For_Gateway |
| 426 | [Template] Add IP Address |
| 427 | [Teardown] Clear IP Settings On Fail ${test_ipv4_addr} |
| 428 | |
| 429 | # ip subnet_mask gateway valid_status_codes |
| 430 | ${test_ipv4_addr} ${test_subnet_mask} ${loopback_ip} ${HTTP_BAD_REQUEST} |
| 431 | |
| 432 | Configure Network ID For Gateway |
| 433 | [Documentation] Configure network ID for gateway and expect an error. |
| 434 | [Tags] Configure_Network_ID_For_Gateway |
| 435 | [Template] Add IP Address |
| 436 | [Teardown] Clear IP Settings On Fail ${test_ipv4_addr} |
| 437 | |
| 438 | # ip subnet_mask gateway valid_status_codes |
| 439 | ${test_ipv4_addr} ${test_subnet_mask} ${network_id} ${HTTP_BAD_REQUEST} |
| 440 | |
| 441 | Configure Multicast IP For Gateway |
| 442 | [Documentation] Configure multicast IP for gateway and expect an error. |
| 443 | [Tags] Configure_Multicast_IP_For_Gateway |
| 444 | [Template] Add IP Address |
| 445 | [Teardown] Clear IP Settings On Fail ${test_ipv4_addr} |
| 446 | |
| 447 | # ip subnet_mask gateway valid_status_codes |
Tony Lee | 412c668 | 2020-04-01 17:34:30 +0800 | [diff] [blame] | 448 | ${test_ipv4_addr} ${test_subnet_mask} ${multicast_ip} ${HTTP_BAD_REQUEST} |
Prashanth Katti | 3063ffe | 2019-07-25 04:35:25 -0500 | [diff] [blame] | 449 | |
| 450 | Configure Broadcast IP For Gateway |
| 451 | [Documentation] Configure broadcast IP for gateway and expect an error. |
| 452 | [Tags] Configure_Broadcast_IP_For_Gateway |
| 453 | [Template] Add IP Address |
| 454 | [Teardown] Clear IP Settings On Fail ${test_ipv4_addr} |
| 455 | |
| 456 | # ip subnet_mask gateway valid_status_codes |
| 457 | ${test_ipv4_addr} ${test_subnet_mask} ${broadcast_ip} ${HTTP_BAD_REQUEST} |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 458 | |
Prashanth Katti | 3c7b643 | 2019-07-26 06:53:37 -0500 | [diff] [blame] | 459 | Configure Null Value For DNS Server |
| 460 | [Documentation] Configure null value for DNS server and expect an error. |
| 461 | [Tags] Configure_Null_Value_For_DNS_Server |
| 462 | [Setup] DNS Test Setup Execution |
| 463 | [Teardown] Run Keywords |
| 464 | ... Configure Static Name Servers AND Test Teardown Execution |
| 465 | |
| 466 | Configure Static Name Servers ${null_value} ${HTTP_BAD_REQUEST} |
| 467 | |
Prashanth Katti | afe16b7 | 2019-08-02 00:29:45 -0500 | [diff] [blame] | 468 | Configure Empty Value For DNS Server |
| 469 | [Documentation] Configure empty value for DNS server and expect an error. |
| 470 | [Tags] Configure_Empty_Value_For_DNS_Server |
| 471 | [Setup] DNS Test Setup Execution |
| 472 | [Teardown] Run Keywords |
| 473 | ... Configure Static Name Servers AND Test Teardown Execution |
| 474 | |
| 475 | Configure Static Name Servers ${empty_dictionary} ${HTTP_BAD_REQUEST} |
| 476 | |
| 477 | Configure String Value For DNS Server |
| 478 | [Documentation] Configure string value for DNS server and expect an error. |
| 479 | [Tags] Configure_String_Value_For_DNS_Server |
| 480 | [Setup] DNS Test Setup Execution |
| 481 | [Teardown] Run Keywords |
| 482 | ... Configure Static Name Servers AND Test Teardown Execution |
| 483 | |
| 484 | Configure Static Name Servers ${string_value} ${HTTP_BAD_REQUEST} |
| 485 | |
Prashanth Katti | 568df5f | 2020-05-15 06:00:37 -0500 | [diff] [blame] | 486 | Modify IPv4 Address And Verify |
| 487 | [Documentation] Modify IP address via Redfish and verify. |
George Keishing | 0c8100f | 2022-01-13 00:24:57 -0600 | [diff] [blame] | 488 | [Tags] Modify_IPv4_Address_And_Verify |
Prashanth Katti | 568df5f | 2020-05-15 06:00:37 -0500 | [diff] [blame] | 489 | [Teardown] Run Keywords |
Anves Kumar rayankula | 045814b | 2020-10-09 09:17:05 -0500 | [diff] [blame] | 490 | ... Delete IP Address ${test_ipv4_addr2} AND Test Teardown Execution |
Prashanth Katti | 568df5f | 2020-05-15 06:00:37 -0500 | [diff] [blame] | 491 | |
| 492 | Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway} |
| 493 | |
| 494 | Update IP Address ${test_ipv4_addr} ${test_ipv4_addr2} ${test_subnet_mask} ${test_gateway} |
| 495 | |
Sweta Potthuri | 6e70478 | 2022-09-27 01:23:48 -0500 | [diff] [blame] | 496 | Verify Modifying IP Address Multiple Times |
| 497 | [Documentation] Verify modifying IP address multiple times. |
| 498 | [Tags] Verify_Modifying_IP_Address_Multiple_Times |
| 499 | [Teardown] Run Keywords |
| 500 | ... Delete IP Address ${test_ipv4_addr} AND Test Teardown Execution |
| 501 | |
| 502 | Add IP Address ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway} |
| 503 | Update IP Address ${test_ipv4_addr} ${test_ipv4_addr2} ${test_subnet_mask} ${test_gateway} |
Sweta Potthuri | e392cc7 | 2022-11-15 06:54:21 -0600 | [diff] [blame] | 504 | Update IP Address ${test_ipv4_addr2} ${test_ipv4_addr} ${test_subnet_mask} ${test_gateway} |
Anvesh Kumar | 9c7238d | 2020-04-21 03:56:21 -0500 | [diff] [blame] | 505 | |
Anves Kumar rayankula | 6b9fcd1 | 2020-12-18 01:03:19 -0600 | [diff] [blame] | 506 | Configure Invalid Values For DNS Server |
| 507 | [Documentation] Configure invalid values for DNS server and expect an error. |
George Keishing | 5236ec5 | 2022-01-31 12:07:58 -0600 | [diff] [blame] | 508 | [Tags] Configure_Invalid_Values_For_DNS_Server |
Anves Kumar rayankula | 6b9fcd1 | 2020-12-18 01:03:19 -0600 | [diff] [blame] | 509 | [Setup] DNS Test Setup Execution |
| 510 | [Template] Configure Static Name Servers |
| 511 | [Teardown] Run Keywords |
| 512 | ... Configure Static Name Servers AND Test Teardown Execution |
| 513 | |
| 514 | # static_name_servers valid_status_codes |
| 515 | 0xa.0xb.0xc.0xd ${HTTP_BAD_REQUEST} |
| 516 | 10.-7.-7.-7 ${HTTP_BAD_REQUEST} |
| 517 | 10.3.36 ${HTTP_BAD_REQUEST} |
| 518 | @@@.%%.44.11 ${HTTP_BAD_REQUEST} |
| 519 | |
| 520 | |
| 521 | Config Multiple DNS Servers And Verify |
| 522 | [Documentation] Config multiple DNS servers and verify. |
| 523 | [Tags] Config_Multiple_DNS_Servers_And_Verify |
| 524 | [Setup] DNS Test Setup Execution |
| 525 | [Teardown] Run Keywords |
| 526 | ... Configure Static Name Servers AND Test Teardown Execution |
| 527 | |
| 528 | @{list_name_servers}= Create List 10.5.5.10 10.20.5.10 10.5.6.7 |
| 529 | Configure Static Name Servers ${list_name_servers} |
| 530 | Verify CLI and Redfish Nameservers |
| 531 | |
| 532 | |
Anves Kumar rayankula | d4cdd8c | 2021-01-11 04:10:05 -0600 | [diff] [blame] | 533 | Configure And Verify Multiple Static IPv4 Addresses |
| 534 | [Documentation] Configure multiple static ipv4 address via Redfish and verify. |
| 535 | [Tags] Configure_And_Verify_Multiple_Static_IPv4_Addresses |
| 536 | [Teardown] Run Keywords Delete Multiple Static IPv4 Addresses ${test_ipv4_addresses} |
| 537 | ... AND Test Teardown Execution |
| 538 | |
| 539 | ${test_ipv4_addresses}= Create List ${test_ipv4_addr} ${test_ipv4_addr2} |
| 540 | Configure Multiple Static IPv4 Addresses ${test_ipv4_addresses} ${test_subnet_mask} ${test_gateway} |
| 541 | |
| 542 | |
| 543 | Configure Multiple Static IPv4 Addresses And Check Persistency |
| 544 | [Documentation] Configure multiple static ipv4 address via Redfish and check persistency. |
| 545 | [Tags] Configure_Multiple_Static_IPv4_Addresses_And_Check_Persistency |
| 546 | [Teardown] Run Keywords Delete Multiple Static IPv4 Addresses ${test_ipv4_addresses} |
| 547 | ... AND Test Teardown Execution |
| 548 | |
| 549 | ${test_ipv4_addresses}= Create List ${test_ipv4_addr} ${test_ipv4_addr2} |
| 550 | Configure Multiple Static IPv4 Addresses ${test_ipv4_addresses} ${test_subnet_mask} ${test_gateway} |
| 551 | |
| 552 | # Reboot BMC and verify persistency. |
Sweta Potthuri | 63f0b10 | 2022-08-03 23:11:46 -0500 | [diff] [blame] | 553 | Redfish OBMC Reboot (off) stack_mode=skip |
Anves Kumar rayankula | 8c628b7 | 2021-02-05 05:03:45 -0600 | [diff] [blame] | 554 | Redfish.Login |
Anves Kumar rayankula | d4cdd8c | 2021-01-11 04:10:05 -0600 | [diff] [blame] | 555 | FOR ${ip} IN @{test_ipv4_addresses} |
| 556 | Verify IP And Netmask On BMC ${ip} ${test_subnet_mask} |
nagarjunb22 | 60784a4 | 2022-06-13 10:39:33 +0530 | [diff] [blame] | 557 | Verify IP On Redfish URI ${ip} |
Anves Kumar rayankula | d4cdd8c | 2021-01-11 04:10:05 -0600 | [diff] [blame] | 558 | END |
| 559 | |
| 560 | |
Anves Kumar rayankula | 43e93e1 | 2021-01-27 03:52:37 -0600 | [diff] [blame] | 561 | Configure And Verify Multiple IPv4 Addresses |
| 562 | [Documentation] Configure multiple IPv4 addresses and verify. |
George Keishing | 0c8100f | 2022-01-13 00:24:57 -0600 | [diff] [blame] | 563 | [Tags] Configure_And_Verify_Multiple_IPv4_Addresses |
Anves Kumar rayankula | 43e93e1 | 2021-01-27 03:52:37 -0600 | [diff] [blame] | 564 | [Teardown] Run Keywords |
| 565 | ... Delete IP Address ${test_ipv4_addr} AND Delete IP Address ${test_ipv4_addr2} |
| 566 | ... AND Test Teardown Execution |
| 567 | |
| 568 | ${ip1}= Create dictionary Address=${test_ipv4_addr} |
| 569 | ... SubnetMask=255.255.0.0 Gateway=${test_gateway} |
| 570 | ${ip2}= Create dictionary Address=${test_ipv4_addr2} |
| 571 | ... SubnetMask=255.255.252.0 Gateway=${test_gateway} |
| 572 | |
| 573 | ${empty_dict}= Create Dictionary |
| 574 | ${patch_list}= Create List |
| 575 | ${network_configurations}= Get Network Configuration |
| 576 | ${num_entries}= Get Length ${network_configurations} |
| 577 | |
| 578 | FOR ${INDEX} IN RANGE 0 ${num_entries} |
| 579 | Append To List ${patch_list} ${empty_dict} |
| 580 | END |
| 581 | |
| 582 | # We need not check for existence of IP on BMC while adding. |
| 583 | Append To List ${patch_list} ${ip1} ${ip2} |
| 584 | ${payload}= Create Dictionary IPv4StaticAddresses=${patch_list} |
| 585 | ${active_channel_config}= Get Active Channel Config |
| 586 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 587 | Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} body=&{payload} |
Anves Kumar rayankula | 53b8030 | 2021-05-21 01:50:03 -0500 | [diff] [blame] | 588 | ... valid_status_codes=[${HTTP_OK}, ${HTTP_NO_CONTENT}] |
Anves Kumar rayankula | 43e93e1 | 2021-01-27 03:52:37 -0600 | [diff] [blame] | 589 | |
| 590 | # Note: Network restart takes around 15-18s after patch request processing. |
| 591 | Sleep ${NETWORK_TIMEOUT}s |
| 592 | Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT} |
| 593 | Verify IP On BMC ${test_ipv4_addr} |
| 594 | Verify IP On BMC ${test_ipv4_addr2} |
| 595 | |
| 596 | |
Anves Kumar rayankula | eefdb56 | 2021-02-08 07:54:11 -0600 | [diff] [blame] | 597 | Config Multiple DNS Servers And Check Persistency |
| 598 | [Documentation] Config multiple DNS and check persistency. |
| 599 | [Tags] Config_Multiple_DNS_Servers_And_Check_Persistency |
| 600 | [Setup] DNS Test Setup Execution |
| 601 | [Teardown] Run Keywords |
| 602 | ... Configure Static Name Servers AND Test Teardown Execution |
| 603 | |
| 604 | @{list_name_servers}= Create List 10.5.5.10 10.20.5.10 10.5.6.7 |
| 605 | Configure Static Name Servers ${list_name_servers} |
| 606 | |
| 607 | # Reboot BMC and verify persistency. |
Sweta Potthuri | 63f0b10 | 2022-08-03 23:11:46 -0500 | [diff] [blame] | 608 | Redfish OBMC Reboot (off) stack_mode=skip |
Anves Kumar rayankula | eefdb56 | 2021-02-08 07:54:11 -0600 | [diff] [blame] | 609 | Redfish.Login |
| 610 | Verify CLI and Redfish Nameservers |
| 611 | |
Anves Kumar rayankula | 2f137eb | 2021-03-29 01:12:01 -0500 | [diff] [blame] | 612 | |
| 613 | Configure Static IP Without Using Gateway And Verify |
| 614 | [Documentation] Configure static IP without using gateway and verify error. |
| 615 | [Tags] Configure_Static_IP_Without_Using_Gateway_And_Verify |
| 616 | |
| 617 | ${ip}= Create dictionary Address=${test_ipv4_addr} |
| 618 | ... SubnetMask=${test_subnet_mask} |
| 619 | ${empty_dict}= Create Dictionary |
| 620 | ${patch_list}= Create List |
| 621 | ${network_configurations}= Get Network Configuration |
| 622 | |
| 623 | ${num_entries}= Get Length ${network_configurations} |
| 624 | FOR ${INDEX} IN RANGE 0 ${num_entries} |
| 625 | Append To List ${patch_list} ${empty_dict} |
| 626 | END |
| 627 | |
| 628 | # We need not check for existence of IP on BMC while adding. |
| 629 | Append To List ${patch_list} ${ip} |
| 630 | ${payload}= Create Dictionary IPv4StaticAddresses=${patch_list} |
| 631 | ${active_channel_config}= Get Active Channel Config |
| 632 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 633 | Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} |
| 634 | ... body=&{payload} valid_status_codes=[${HTTP_BAD_REQUEST}] |
| 635 | |
Anves Kumar rayankula | ac0a7ba | 2021-03-09 08:10:20 -0600 | [diff] [blame] | 636 | |
| 637 | Test Network Response On Specified Host State |
| 638 | [Documentation] Verifying the BMC network response when host is on and off. |
| 639 | [Tags] Test_Network_Response_On_Specified_Host_State |
| 640 | [Template] Verify Network Response On Specified Host State |
| 641 | |
| 642 | # host_state |
| 643 | on |
| 644 | off |
| 645 | |
Sweta Potthuri | fb00136 | 2022-03-14 02:21:14 -0500 | [diff] [blame] | 646 | |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 647 | *** Keywords *** |
| 648 | |
| 649 | Test Setup Execution |
| 650 | [Documentation] Test setup execution. |
| 651 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 652 | Redfish.Login |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 653 | |
| 654 | @{network_configurations}= Get Network Configuration |
| 655 | Set Test Variable @{network_configurations} |
| 656 | |
| 657 | # Get BMC IP address and prefix length. |
| 658 | ${ip_data}= Get BMC IP Info |
| 659 | Set Test Variable ${ip_data} |
| 660 | |
Prashanth Katti | 747ce9d | 2019-02-07 07:23:48 -0600 | [diff] [blame] | 661 | |
Prashanth Katti | 747ce9d | 2019-02-07 07:23:48 -0600 | [diff] [blame] | 662 | Verify Netmask On BMC |
| 663 | [Documentation] Verify netmask on BMC. |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 664 | [Arguments] ${netmask} |
| 665 | |
| 666 | # Description of the argument(s): |
| 667 | # netmask netmask value to be verified. |
| 668 | |
Prashanth Katti | 747ce9d | 2019-02-07 07:23:48 -0600 | [diff] [blame] | 669 | ${prefix_length}= Netmask Prefix Length ${netmask} |
| 670 | |
| 671 | Should Contain Match ${ip_data} */${prefix_length} |
| 672 | ... msg=Prefix length does not exist. |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 673 | |
Prashanth Katti | 2c5c3bb | 2019-02-14 04:23:07 -0600 | [diff] [blame] | 674 | Verify IP And Netmask On BMC |
| 675 | [Documentation] Verify IP and netmask on BMC. |
| 676 | [Arguments] ${ip} ${netmask} |
| 677 | |
| 678 | # Description of the argument(s): |
| 679 | # ip IP address to be verified. |
| 680 | # netmask netmask value to be verified. |
| 681 | |
| 682 | ${prefix_length}= Netmask Prefix Length ${netmask} |
| 683 | @{ip_data}= Get BMC IP Info |
| 684 | |
| 685 | ${ip_with_netmask}= Catenate ${ip}/${prefix_length} |
| 686 | Should Contain ${ip_data} ${ip_with_netmask} |
| 687 | ... msg=IP and netmask pair does not exist. |
| 688 | |
Prashanth Katti | f58cce0 | 2019-02-06 03:05:14 -0600 | [diff] [blame] | 689 | Test Teardown Execution |
| 690 | [Documentation] Test teardown execution. |
| 691 | |
| 692 | FFDC On Test Case Fail |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 693 | Redfish.Logout |
Prashanth Katti | a844251 | 2019-06-07 06:47:09 -0500 | [diff] [blame] | 694 | |
| 695 | Clear IP Settings On Fail |
| 696 | [Documentation] Clear IP settings on fail. |
| 697 | [Arguments] ${ip} |
| 698 | |
| 699 | # Description of argument(s): |
| 700 | # ip IP address to be deleted. |
| 701 | |
| 702 | Run Keyword If '${TEST STATUS}' == 'FAIL' |
| 703 | ... Delete IP Address ${ip} |
| 704 | |
| 705 | Test Teardown Execution |
Prashanth Katti | adf0b4e | 2019-06-10 04:20:30 -0500 | [diff] [blame] | 706 | |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 707 | Verify CLI and Redfish Nameservers |
| 708 | [Documentation] Verify that nameservers obtained via Redfish do not |
| 709 | ... match those found in /etc/resolv.conf. |
| 710 | |
Tony Lee | 412c668 | 2020-04-01 17:34:30 +0800 | [diff] [blame] | 711 | ${active_channel_config}= Get Active Channel Config |
| 712 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 713 | |
Anves Kumar rayankula | 91548ea | 2020-06-18 00:28:13 -0500 | [diff] [blame] | 714 | ${redfish_nameservers}= Redfish.Get Attribute |
| 715 | ... ${REDFISH_NW_ETH_IFACE}${ethernet_interface} StaticNameServers |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 716 | ${resolve_conf_nameservers}= CLI Get Nameservers |
Michael Walsh | 39c0051 | 2019-07-17 10:54:06 -0500 | [diff] [blame] | 717 | Rqprint Vars redfish_nameservers resolve_conf_nameservers |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 718 | |
Sweta Potthuri | d77ea98 | 2021-07-01 04:30:38 -0500 | [diff] [blame] | 719 | List Should Contain Sub List ${resolve_conf_nameservers} ${redfish_nameservers} |
| 720 | ... msg=The nameservers obtained via Redfish do not match those found in /etc/resolv.conf. |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 721 | |
| 722 | Configure Static Name Servers |
| 723 | [Documentation] Configure DNS server on BMC. |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 724 | [Arguments] ${static_name_servers}=${original_nameservers} |
Prashanth Katti | 3c7b643 | 2019-07-26 06:53:37 -0500 | [diff] [blame] | 725 | ... ${valid_status_codes}=${HTTP_OK} |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 726 | |
George Keishing | 9cb2e59 | 2019-07-12 09:37:33 -0500 | [diff] [blame] | 727 | # Description of the argument(s): |
Prashanth Katti | 7098c97 | 2019-07-03 06:56:42 -0500 | [diff] [blame] | 728 | # static_name_servers A list of static name server IPs to be |
| 729 | # configured on the BMC. |
| 730 | |
Tony Lee | 412c668 | 2020-04-01 17:34:30 +0800 | [diff] [blame] | 731 | ${active_channel_config}= Get Active Channel Config |
| 732 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 733 | |
Anves Kumar rayankula | 6b9fcd1 | 2020-12-18 01:03:19 -0600 | [diff] [blame] | 734 | ${type} = Evaluate type($static_name_servers).__name__ |
| 735 | ${static_name_servers}= Set Variable If '${type}'=='str' |
| 736 | ... '${static_name_servers}' ${static_name_servers} |
| 737 | |
Prashanth Katti | 9d995fc | 2019-09-24 01:29:06 -0500 | [diff] [blame] | 738 | # Currently BMC is sending 500 response code instead of 400 for invalid scenarios. |
Anves Kumar rayankula | 91548ea | 2020-06-18 00:28:13 -0500 | [diff] [blame] | 739 | Redfish.Patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} |
| 740 | ... body={'StaticNameServers': ${static_name_servers}} |
Prashanth Katti | 9d995fc | 2019-09-24 01:29:06 -0500 | [diff] [blame] | 741 | ... valid_status_codes=[${valid_status_codes}, ${HTTP_INTERNAL_SERVER_ERROR}] |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 742 | |
Prashanth Katti | f247be3 | 2019-10-07 04:40:43 -0500 | [diff] [blame] | 743 | # Patch operation takes 1 to 3 seconds to set new value. |
| 744 | Sleep 3s |
| 745 | |
Prashanth Katti | 7f9e60f | 2019-07-26 01:18:41 -0500 | [diff] [blame] | 746 | # Check if newly added DNS server is configured on BMC. |
| 747 | ${cli_nameservers}= CLI Get Nameservers |
Prashanth Katti | 3c7b643 | 2019-07-26 06:53:37 -0500 | [diff] [blame] | 748 | ${cmd_status}= Run Keyword And Return Status |
| 749 | ... List Should Contain Sub List ${cli_nameservers} ${static_name_servers} |
| 750 | |
| 751 | Run Keyword If '${valid_status_codes}' == '${HTTP_OK}' |
| 752 | ... Should Be True ${cmd_status} == ${True} |
| 753 | ... ELSE Should Be True ${cmd_status} == ${False} |
Prashanth Katti | 7f9e60f | 2019-07-26 01:18:41 -0500 | [diff] [blame] | 754 | |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 755 | Delete Static Name Servers |
| 756 | [Documentation] Delete static name servers. |
| 757 | |
Sweta Potthuri | dc32593 | 2022-06-15 12:51:27 -0500 | [diff] [blame] | 758 | DNS Test Setup Execution |
Anves Kumar rayankula | 045814b | 2020-10-09 09:17:05 -0500 | [diff] [blame] | 759 | Configure Static Name Servers static_name_servers=@{EMPTY} |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 760 | |
| 761 | # Check if all name servers deleted on BMC. |
| 762 | ${nameservers}= CLI Get Nameservers |
Sweta Potthuri | dc32593 | 2022-06-15 12:51:27 -0500 | [diff] [blame] | 763 | Should Not Contain ${nameservers} ${original_nameservers} |
| 764 | |
| 765 | DNS Test Setup Execution |
| 766 | |
| 767 | Should Be Empty ${original_nameservers} |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 768 | |
| 769 | DNS Test Setup Execution |
| 770 | [Documentation] Do DNS test setup execution. |
| 771 | |
| 772 | Redfish.Login |
| 773 | |
Tony Lee | 412c668 | 2020-04-01 17:34:30 +0800 | [diff] [blame] | 774 | ${active_channel_config}= Get Active Channel Config |
| 775 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 776 | |
Anves Kumar rayankula | 91548ea | 2020-06-18 00:28:13 -0500 | [diff] [blame] | 777 | ${original_nameservers}= Redfish.Get Attribute |
| 778 | ... ${REDFISH_NW_ETH_IFACE}${ethernet_interface} StaticNameServers |
Tony Lee | 412c668 | 2020-04-01 17:34:30 +0800 | [diff] [blame] | 779 | |
Prashanth Katti | c85957c | 2019-07-09 02:01:20 -0500 | [diff] [blame] | 780 | Rprint Vars original_nameservers |
| 781 | # Set suite variables to trigger restoration during teardown. |
| 782 | Set Suite Variable ${original_nameservers} |
Prashanth Katti | b478d90 | 2020-05-08 10:05:32 -0500 | [diff] [blame] | 783 | |
aravinth0510 | ca054ee | 2022-06-16 13:26:15 +0000 | [diff] [blame] | 784 | |
Prashanth Katti | b478d90 | 2020-05-08 10:05:32 -0500 | [diff] [blame] | 785 | Suite Setup Execution |
| 786 | [Documentation] Do suite setup execution. |
| 787 | |
aravinth0510 | ca054ee | 2022-06-16 13:26:15 +0000 | [diff] [blame] | 788 | # - Get DHCP IPv4 enabled/disabled status from redfish managers URI |
| 789 | # - If DHCP IPv4 is enabled , |
| 790 | # - Get DHCP IPv4 settings - ip address, gateway, subnetmask |
| 791 | # - And set the same as static IP address |
| 792 | |
George Keishing | 1ac4221 | 2022-07-20 21:55:49 -0500 | [diff] [blame] | 793 | Redfish.Login |
aravinth0510 | ca054ee | 2022-06-16 13:26:15 +0000 | [diff] [blame] | 794 | ${DHCPEnabled}= Get IPv4 DHCP Enabled Status |
| 795 | Set Suite Variable ${DHCPEnabled} |
| 796 | |
| 797 | Run Keyword If ${DHCPEnabled}==True |
| 798 | ... Run Keywords |
| 799 | ... ${ip_addr} ${gateway} ${subnetmask}= Get DHCP IP Info AND |
| 800 | ... Add IP Address ${ip_addr} ${subnetmask} ${gateway} AND |
| 801 | ... Set Suite Variable ${ip_addr} |
| 802 | |
Prashanth Katti | b478d90 | 2020-05-08 10:05:32 -0500 | [diff] [blame] | 803 | ${test_gateway}= Get BMC Default Gateway |
| 804 | Set Suite Variable ${test_gateway} |
Prashanth Katti | 568df5f | 2020-05-15 06:00:37 -0500 | [diff] [blame] | 805 | |
aravinth0510 | ca054ee | 2022-06-16 13:26:15 +0000 | [diff] [blame] | 806 | |
| 807 | Suite Teardown Execution |
| 808 | [Documentation] Do suite teardown execution. |
| 809 | |
| 810 | # - If the DHCP IPv4 is enabled before suite setup execution |
| 811 | # - Restore the DHCP IPv4 to enabled state |
| 812 | |
| 813 | Run Keyword If ${DHCPEnabled}==True |
| 814 | ... Enable IPv4 DHCP Settings |
| 815 | |
| 816 | |
Anves Kumar rayankula | d4cdd8c | 2021-01-11 04:10:05 -0600 | [diff] [blame] | 817 | Configure Multiple Static IPv4 Addresses |
| 818 | [Documentation] Configure multiple static ipv4 address via Redfish and verify. |
| 819 | [Arguments] ${ip_addreses} ${subnet_mask} ${gateway} |
| 820 | |
| 821 | # Description of argument(s): |
| 822 | # ip_addreses A list of IP addresses to be added (e.g.["10.7.7.7"]). |
| 823 | # subnet_mask Subnet mask for the IP to be added (e.g. "255.255.0.0"). |
| 824 | # gateway Gateway for the IP to be added (e.g. "10.7.7.1"). |
| 825 | |
| 826 | FOR ${ip} IN @{ip_addreses} |
| 827 | Add IP Address ${ip} ${subnet_mask} ${gateway} |
| 828 | END |
| 829 | Validate Network Config On BMC |
| 830 | |
| 831 | |
| 832 | Delete Multiple Static IPv4 Addresses |
| 833 | [Documentation] Delete multiple static ipv4 address via Redfish. |
| 834 | [Arguments] ${ip_addreses} |
| 835 | |
| 836 | # Description of argument(s): |
| 837 | # ip_addreses A list of IP addresses to be deleted (e.g.["10.7.7.7"]). |
| 838 | |
| 839 | FOR ${ip} IN @{ip_addreses} |
| 840 | Delete IP Address ${ip} |
| 841 | END |
| 842 | Validate Network Config On BMC |
Anves Kumar rayankula | ac0a7ba | 2021-03-09 08:10:20 -0600 | [diff] [blame] | 843 | |
| 844 | Verify Network Response On Specified Host State |
| 845 | [Documentation] Verifying the BMC network response when host is on and off. |
| 846 | [Arguments] ${host_state} |
| 847 | |
| 848 | # Description of argument(s): |
| 849 | # host_state if host_state is on then host is booted to operating system. |
| 850 | # if host_state is off then host is power off. |
| 851 | # (eg. on, off). |
| 852 | |
| 853 | ${active_channel_config}= Get Active Channel Config |
| 854 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 855 | |
| 856 | Run Keyword If '${host_state}' == 'on' |
| 857 | ... Redfish Power On stack_mode=skip |
| 858 | ... ELSE |
| 859 | ... Redfish Power off stack_mode=skip |
| 860 | |
| 861 | Redfish.Get ${REDFISH_NW_ETH_IFACE}${ethernet_interface} |
| 862 | Ping Host ${OPENBMC_HOST} |
| 863 | |
nagarjunb22 | 60784a4 | 2022-06-13 10:39:33 +0530 | [diff] [blame] | 864 | |
| 865 | Verify IP On Redfish URI |
| 866 | [Documentation] Verify given IP on redfish URI. |
| 867 | [Arguments] ${ip_address} |
| 868 | |
| 869 | # Description of argument(s): |
| 870 | # ip_address Configured IP address which need to verified. |
| 871 | |
| 872 | ${network_configurations}= Get Network Configuration |
| 873 | |
| 874 | FOR ${network_configuration} IN @{network_configurations} |
| 875 | ${ip_found}= Set Variable If '${network_configuration['Address']}' == '${ip_address}' ${True} |
| 876 | ... ${False} |
| 877 | Exit For Loop If ${ip_found} |
| 878 | END |
| 879 | Run Keyword If '${ip_found}' == '${False}' |
| 880 | ... Fail msg=Configured IP address not found on EthernetInterface URI. |
aravinth0510 | ca054ee | 2022-06-16 13:26:15 +0000 | [diff] [blame] | 881 | |
| 882 | |
| 883 | Enable IPv4 DHCP Settings |
| 884 | [Documentation] Set IPv4 DHCP enabled status true/false in redfish URI. |
| 885 | [Arguments] ${status}=${True} |
| 886 | |
| 887 | # Description of argument(s): |
| 888 | # status IPv4 DHCPEnabled status which needs to be set. |
| 889 | # (e.g. True or False) |
| 890 | |
| 891 | ${active_channel_config}= Get Active Channel Config |
| 892 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 893 | ${DHCPv4}= Create Dictionary DHCPEnabled=${status} |
| 894 | |
| 895 | ${payload}= Create Dictionary DHCPv4=${DHCPv4} |
| 896 | Redfish.patch ${REDFISH_NW_ETH_IFACE}${ethernet_interface} |
| 897 | ... body=&{payload} valid_status_codes=[${HTTP_NO_CONTENT}, ${HTTP_OK}] |
| 898 | |
| 899 | Sleep ${NETWORK_TIMEOUT}s |
| 900 | Wait For Host To Ping ${OPENBMC_HOST} ${NETWORK_TIMEOUT} |
| 901 | |
| 902 | |
| 903 | Get IPv4 DHCP Enabled Status |
| 904 | [Documentation] Return IPv4 DHCP enabled status from redfish URI. |
| 905 | |
| 906 | ${active_channel_config}= Get Active Channel Config |
| 907 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 908 | ${resp}= Redfish.Get Attribute ${REDFISH_NW_ETH_IFACE}${ethernet_interface} DHCPv4 |
| 909 | ${status}= Set Variable ${resp['DHCPEnabled']} |
| 910 | Return From Keyword ${status} |
| 911 | |
| 912 | |
| 913 | Get DHCP IP Info |
| 914 | [Documentation] Return DHCP IP address, gateway and subnetmask from redfish URI. |
| 915 | |
| 916 | ${active_channel_config}= Get Active Channel Config |
| 917 | ${ethernet_interface}= Set Variable ${active_channel_config['${CHANNEL_NUMBER}']['name']} |
| 918 | ${resp_list}= Redfish.Get Attribute ${REDFISH_NW_ETH_IFACE}${ethernet_interface} IPv4Addresses |
| 919 | FOR ${resp} IN @{resp_list} |
| 920 | Continue For Loop If '${resp['AddressOrigin']}' != 'DHCP' |
| 921 | ${ip_addr}= Set Variable ${resp['Address']} |
| 922 | ${gateway}= Set Variable ${resp['Gateway']} |
| 923 | ${subnetmask}= Set Variable ${resp['SubnetMask']} |
| 924 | Return From Keyword ${ip_addr} ${gateway} ${subnetmask} |
George Keishing | 1ac4221 | 2022-07-20 21:55:49 -0500 | [diff] [blame] | 925 | END |