Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
Gunnar Mills | 56b3289 | 2016-11-14 13:56:17 -0600 | [diff] [blame] | 2 | Documentation This suite will verifiy the Network Configuration Rest Interfaces |
| 3 | ... Details of valid interfaces can be found here... |
| 4 | ... https://github.com/openbmc/docs/blob/master/rest-api.md |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 5 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 6 | Resource ../lib/rest_client.robot |
| 7 | Resource ../lib/connection_client.robot |
| 8 | Resource ../lib/utils.robot |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 9 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 10 | Library ../lib/pythonutil.py |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 11 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 12 | Suite Setup Open Connection And Log In |
| 13 | Suite Teardown Close All Connections |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 14 | Test Teardown FFDC On Test Case Fail |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 15 | |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 16 | *** Variables *** |
| 17 | |
| 18 | ${NW_MANAGER} ${NETWORK_MANAGER_URI}Interface |
| 19 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 20 | *** Test Cases *** |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 21 | |
| 22 | Get the Mac address |
| 23 | |
| 24 | [Documentation] This test case is to get the mac address |
| 25 | [Tags] network_test |
| 26 | @{arglist}= Create List eth0 |
| 27 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 28 | ${resp}= Call Method ${NW_MANAGER} GetHwAddress data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 29 | should not be empty ${resp.content} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 30 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 31 | should be equal as strings ${json['status']} ok |
George Keishing | 06ae4aa | 2016-08-30 01:41:28 -0500 | [diff] [blame] | 32 | set suite variable ${OLD_MAC_ADDRESS} ${json['data']} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 33 | |
| 34 | |
| 35 | Get IP Address with invalid interface |
| 36 | |
| 37 | [Documentation] This test case tries to get the ip addrees with the invalid |
| 38 | ... interface,Expectation is it should get error. |
| 39 | [Tags] network_test |
| 40 | |
| 41 | @{arglist}= Create List lo01 |
| 42 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 43 | ${resp}= Call Method ${NW_MANAGER} GetAddress4 data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 44 | should not be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 45 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 46 | should be equal as strings ${json['status']} error |
| 47 | |
| 48 | Get IP Address with valid interface |
| 49 | |
| 50 | [Documentation] This test case tries to get the ip addrees with the invalid |
| 51 | ... interface,Expectation is it should get error. |
| 52 | [Tags] network_test |
| 53 | |
| 54 | @{arglist}= Create List eth0 |
| 55 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 56 | ${resp}= Call Method ${NW_MANAGER} GetAddress4 data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 57 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 58 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 59 | should be equal as strings ${json['status']} ok |
| 60 | |
| 61 | |
| 62 | Set the IP address on invalid Interface lo01 1.1.1.1 255.255.255.0 1.1.1.1 error |
| 63 | |
| 64 | [Tags] network_test |
| 65 | [Template] AddNetworkInfo |
| 66 | [Documentation] This test case tries to set the ip addrees with the invalid |
| 67 | ... interface,Expectation is it should get error |
| 68 | |
| 69 | Set invalid IP address on the valid interface eth0 ab.cd.ef.gh 255.255.255.0 1.1.1.1 error |
| 70 | |
| 71 | [Tags] network_test |
| 72 | [Template] AddNetworkInfo |
| 73 | [Documentation] This test case tries to set the invalid ip addrees on the interface |
| 74 | ... Expectation is it should get error. |
| 75 | |
| 76 | |
| 77 | Set IP address with invalid subnet mask eth0 2.2.2.2 av.ih.jk.lm 1.1.1.1 error |
| 78 | |
| 79 | [Tags] network_test |
| 80 | [Template] AddNetworkInfo |
| 81 | [Documentation] This test case tries to set the ip addrees on the interface |
| 82 | ... with invalid subnet mask,Expectation is it should get error. |
| 83 | |
| 84 | Set empty IP address eth0 ${EMPTY} 255.255.255.0 1.1.1.1 error |
| 85 | |
| 86 | [Tags] network_test |
| 87 | [Template] AddNetworkInfo |
| 88 | [Documentation] This test case tries to set the NULL ip addrees on the interface |
| 89 | ... Expectation is it should get error. |
| 90 | |
| 91 | Set empty subnet mask eth0 2.2.2.2 ${EMPTY} 1.1.1.1 error |
| 92 | |
| 93 | [Tags] network_test |
| 94 | [Template] AddNetworkInfo |
| 95 | [Documentation] This test case tries to set the ip addrees on the interface |
| 96 | ... with empty subnet mask,Expectation is it should get error. |
| 97 | |
| 98 | Set empty gateway eth0 2.2.2.2 255.255.255.0 ${EMPTY} error |
| 99 | |
| 100 | [Tags] network_test |
| 101 | [Template] AddNetworkInfo |
| 102 | [Documentation] This test case tries to set the ip addrees on the interface |
| 103 | ... with empty gateway,Expectation is it should get error. |
| 104 | |
| 105 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 106 | Get IP Address type |
| 107 | [Tags] GOOD-PATH |
George Keishing | 06ae4aa | 2016-08-30 01:41:28 -0500 | [diff] [blame] | 108 | [Documentation] This test case tries to set existing ipaddress address and |
| 109 | ... later tries to verify that ip address type is set to static |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 110 | ... due to the operation. |
| 111 | |
| 112 | ${networkInfo}= Get networkInfo from the interface eth0 |
| 113 | ${result}= convert to integer ${networkInfo['data'][1]} |
| 114 | |
| 115 | ${CURRENT_MASK}= calcDottedNetmask ${result} |
| 116 | ${CURRENT_IP}= set variable ${networkInfo['data'][2]} |
| 117 | ${CURRENT_GATEWAY}= set variable ${networkInfo['data'][3]} |
| 118 | |
| 119 | ${arglist}= Create List eth0 ${CURRENT_IP} ${CURRENT_MASK} ${CURRENT_GATEWAY} |
| 120 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 121 | run keyword and ignore error Call Method ${NW_MANAGER} SetAddress4 data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 122 | |
| 123 | Wait For Host To Ping ${CURRENT_IP} |
George Keishing | 06ae4aa | 2016-08-30 01:41:28 -0500 | [diff] [blame] | 124 | |
Rahul Maheshwari | 4f467f3 | 2016-09-03 15:02:57 -0500 | [diff] [blame] | 125 | Wait Until Keyword Succeeds 30 sec 5 sec Initialize OpenBMC |
| 126 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 127 | @{arglist}= Create List eth0 |
| 128 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 129 | ${resp}= Call Method ${NW_MANAGER} GetAddressType data=${args} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 130 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 131 | Should Be Equal ${json['data']} STATIC |
| 132 | should be equal as strings ${json['status']} ok |
| 133 | |
Gunnar Mills | 7c8923f | 2016-12-12 21:19:52 -0600 | [diff] [blame] | 134 | *** Keywords *** |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 135 | |
| 136 | Get networkInfo from the interface |
| 137 | |
| 138 | [Documentation] This keyword is used to match the given ip with the configured one. |
| 139 | ... returns true if match successfull else false |
| 140 | ... eg:- Outout of getAddress4 |
| 141 | ... NewFormat:-{"data": [ 2,25,"9.3.164.147","9.3.164.129"],"message": "200 OK","status": "ok"} |
| 142 | ... OldFormat:- |
| 143 | ... {"data": [[[2,25,0,128,"9.3.164.177"],[2,8,254,128,"127.0.0.1"]],"9.3.164.129"], |
| 144 | ... "message": "200 OK", "status": "ok"} |
| 145 | |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 146 | [Arguments] ${intf} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 147 | @{arglist}= Create List ${intf} |
| 148 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 149 | ${resp}= Call Method ${NW_MANAGER} GetAddress4 data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 150 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 151 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 152 | log to console ${json['data'][2]} |
| 153 | log to console ${json['data'][3]} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 154 | [Return] ${json} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 155 | |
| 156 | AddNetworkInfo |
| 157 | [Arguments] ${intf} ${address} ${mask} ${gateway} ${result} |
| 158 | |
| 159 | ${arglist}= Create List ${intf} ${address} ${mask} ${gateway} |
| 160 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 161 | ${resp}= Call Method ${NW_MANAGER} SetAddress4 data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 162 | should not be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 163 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 164 | should be equal as strings ${json['status']} ${result} |