blob: 04520bc42582a5ec2ee8557ab47952416252e1bb [file] [log] [blame]
George Keishing4c394012019-02-01 06:03:02 -06001*** Settings ***
Joy Onyerikwudbfe97d2019-03-11 19:44:56 -05002Documentation Test Redfish service root login security.
3
George Keishing4c394012019-02-01 06:03:02 -06004Resource ../../lib/bmc_redfish_resource.robot
George Keishing3298d5c2019-02-12 06:59:25 -06005Resource ../../lib/openbmc_ffdc.robot
6
7Test Teardown FFDC On Test Case Fail
Michael Walshc108e422019-03-28 12:27:18 -05008Test Setup Printn
George Keishing4c394012019-02-01 06:03:02 -06009
George Keishing374e6842019-02-20 08:57:18 -060010*** Variables ***
11
12${LOGIN_SESSION_COUNT} ${50}
13
George Keishing35e0bba2019-06-04 13:10:55 -050014&{header_requirements} Strict-Transport-Security=max-age=31536000; includeSubdomains; preload
15... X-Frame-Options=DENY
16... Pragma=no-cache
17... Cache-Control=no-Store,no-Cache
Brian Ma2bbdb3b2022-04-21 14:03:46 +080018... Content-Security-Policy=default-src 'none'; img-src 'self' data:; font-src 'self'; style-src 'self'; script-src 'self'; connect-src 'self' wss:; form-action 'none'; frame-ancestors 'none'; object-src 'none'; base-uri 'none'
George Keishing35e0bba2019-06-04 13:10:55 -050019... X-XSS-Protection=1; mode=block
20... X-Content-Type-Options=nosniff
George Keishing9edf5bc2019-04-09 15:07:28 -050021
George Keishing4c394012019-02-01 06:03:02 -060022*** Test Cases ***
23
George Keishing5ee33d92019-02-02 12:33:25 -060024Redfish Login With Invalid Credentials
George Keishing4c394012019-02-01 06:03:02 -060025 [Documentation] Login to BMC web using invalid credential.
George Keishing5ee33d92019-02-02 12:33:25 -060026 [Tags] Redfish_Login_With_Invalid_Credentials
George Keishing4c394012019-02-01 06:03:02 -060027 [Template] Login And Verify Redfish Response
28
George Keishing32616042022-09-22 05:25:39 -050029 # Username Password Expect status
30 ${OPENBMC_USERNAME} deadpassword InvalidCredentialsError
31 groot ${OPENBMC_PASSWORD} InvalidCredentialsError
32 ${EMPTY} ${OPENBMC_PASSWORD} SessionCreationError
33 ${OPENBMC_USERNAME} ${EMPTY} SessionCreationError
34 ${EMPTY} ${EMPTY} SessionCreationError
George Keishing4c394012019-02-01 06:03:02 -060035
36
George Keishing5ee33d92019-02-02 12:33:25 -060037Redfish Login Using Unsecured HTTP
George Keishinga8116932019-02-05 11:51:47 -060038 [Documentation] Login to BMC web through http unsecured.
George Keishing5ee33d92019-02-02 12:33:25 -060039 [Tags] Redfish_Login_Using_Unsecured_HTTP
George Keishinga8116932019-02-05 11:51:47 -060040
41 Create Session openbmc http://${OPENBMC_HOST}
42 ${data}= Create Dictionary
43 ... UserName=${OPENBMC_USERNAME} Password=${OPENBMC_PASSWORD}
44
45 ${headers}= Create Dictionary Content-Type=application/json
46
47 Run Keyword And Expect Error *Connection refused*
George Keishingfbd67002022-08-01 11:24:03 -050048 ... POST On Session openbmc /redfish/v1/SessionService/Sessions
George Keishinga8116932019-02-05 11:51:47 -060049 ... data=${data} headers=${headers}
50
51
George Keishingb2f07342019-02-09 05:21:45 -060052Redfish Login Using HTTPS Wrong Port 80 Protocol
53 [Documentation] Login to BMC web through wrong protocol port 80.
54 [Tags] Redfish_Login_Using_HTTPS_Wrong_Port_80_Protocol
55
56 Create Session openbmc https://${OPENBMC_HOST}:80
57 ${data}= Create Dictionary
58 ... UserName=${OPENBMC_USERNAME} Password=${OPENBMC_PASSWORD}
59
60 ${headers}= Create Dictionary Content-Type=application/json
61
62 Run Keyword And Expect Error *Connection refused*
George Keishingfbd67002022-08-01 11:24:03 -050063 ... POST On Session openbmc /redfish/v1/SessionService/Sessions
George Keishingb2f07342019-02-09 05:21:45 -060064 ... data=${data} headers=${headers}
65
66
George Keishing374e6842019-02-20 08:57:18 -060067Create Multiple Login Sessions And Verify
68 [Documentation] Create 50 login instances and verify.
69 [Tags] Create_Multiple_Login_Sessions_And_Verify
Sushil Singhd1a35ac2020-08-04 11:28:56 -050070 [Teardown] Run Keyword And Ignore Error Multiple Session Cleanup
George Keishing374e6842019-02-20 08:57:18 -060071
George Keishing97c93942019-03-04 12:45:07 -060072 Redfish.Login
George Keishing374e6842019-02-20 08:57:18 -060073 # Example:
74 # {
75 # 'key': 'L0XEsZAXpNdF147jJaOD',
76 # 'location': '/redfish/v1/SessionService/Sessions/qWn2JOJSOs'
77 # }
George Keishing0b9d8ab2019-02-20 14:02:41 -060078 ${saved_session_info}= Get Redfish Session Info
George Keishing374e6842019-02-20 08:57:18 -060079
80 # Sessions book keeping for cleanup once done.
81 ${session_list}= Create List
82 Set Test Variable ${session_list}
83
84 Repeat Keyword ${LOGIN_SESSION_COUNT} times Create New Login Session
85
86 # Update the redfish session object with the first login key and location
87 # and verify if it is still working.
George Keishing97c93942019-03-04 12:45:07 -060088 Redfish.Set Session Key ${saved_session_info["key"]}
89 Redfish.Set Session Location ${saved_session_info["location"]}
90 Redfish.Get ${saved_session_info["location"]}
George Keishing374e6842019-02-20 08:57:18 -060091
92
George Keishing0b9d8ab2019-02-20 14:02:41 -060093Attempt Login With Expired Session
94 [Documentation] Authenticate to redfish, then log out and attempt to
95 ... use the session.
96 [Tags] Attempt_Login_With_Expired_Session
97
George Keishing97c93942019-03-04 12:45:07 -060098 Redfish.Login
George Keishing0b9d8ab2019-02-20 14:02:41 -060099 ${saved_session_info}= Get Redfish Session Info
George Keishing97c93942019-03-04 12:45:07 -0600100 Redfish.Logout
George Keishing0b9d8ab2019-02-20 14:02:41 -0600101
102 # Attempt login with expired session.
103 # By default 60 minutes of inactivity closes the session.
George Keishing97c93942019-03-04 12:45:07 -0600104 Redfish.Set Session Key ${saved_session_info["key"]}
105 Redfish.Set Session Location ${saved_session_info["location"]}
George Keishing0b9d8ab2019-02-20 14:02:41 -0600106
George Keishing97c93942019-03-04 12:45:07 -0600107 Redfish.Get ${saved_session_info["location"]} valid_status_codes=[${HTTP_UNAUTHORIZED}]
George Keishing0b9d8ab2019-02-20 14:02:41 -0600108
109
George Keishing9edf5bc2019-04-09 15:07:28 -0500110Login And Verify HTTP Response Header
111 [Documentation] Login and verify redfish HTTP response header.
112 [Tags] Login_And_Verify_HTTP_Response_Header
113
114 # Example of HTTP redfish response header.
115 # Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
116 # X-Frame-Options: DENY
117 # Pragma: no-cache
118 # Cache-Control: no-Store,no-Cache
119 # Content-Security-Policy: default-src 'self'; img-src 'self' data:
120 # X-XSS-Protection: 1; mode=block
121 # X-Content-Type-Options: nosniff
122
Michael Walsh0d5f96a2019-05-20 10:09:57 -0500123 Rprint Vars header_requirements fmt=1
George Keishing9edf5bc2019-04-09 15:07:28 -0500124
125 Redfish.Login
126 ${resp}= Redfish.Get /redfish/v1/SessionService/Sessions
127
128 # The getheaders() method returns the headers as a list of tuples:
129 # headers:
130 # [Strict-Transport-Security]: max-age=31536000; includeSubdomains; preload
131 # [X-Frame-Options]: DENY
132 # [Pragma]: no-cache
133 # [Cache-Control]: no-Store,no-Cache
134 # [Content-Security-Policy]: default-src 'self'; img-src 'self' data:
135 # [X-XSS-Protection]: 1; mode=block
136 # [X-Content-Type-Options]: nosniff
137 # [X-UA-Compatible]: IE=11
138 # [Content-Type]: application/json
139 # [Server]: iBMC
140 # [Date]: Tue, 16 Apr 2019 17:49:46 GMT
141 # [Content-Length]: 2177
142
143 ${headers}= Key Value List To Dict ${resp.getheaders()}
Michael Walsh0d5f96a2019-05-20 10:09:57 -0500144 Rprint Vars headers fmt=1
George Keishing9edf5bc2019-04-09 15:07:28 -0500145
146 Dictionary Should Contain Sub Dictionary ${headers} ${header_requirements}
147
148
George Keishing4c394012019-02-01 06:03:02 -0600149*** Keywords ***
150
151Login And Verify Redfish Response
152 [Documentation] Login and verify redfish response.
George Keishing32616042022-09-22 05:25:39 -0500153 [Arguments] ${username} ${password} ${expected_response}
George Keishing4c394012019-02-01 06:03:02 -0600154
155 # Description of arguments:
George Keishing32616042022-09-22 05:25:39 -0500156 # expected_response Expected REST status.
157 # username The username to be used to connect to the server.
158 # password The password to be used to connect to the server.
George Keishing4c394012019-02-01 06:03:02 -0600159
George Keishing5e6515e2019-03-12 14:22:33 -0500160 # The redfish object may preserve a valid username or password from the
161 # last failed login attempt. If we then try to login with a null username
162 # or password value, the redfish object may prefer the preserved value.
163 # Since we're testing bad path, we wish to avoid this scenario so we will
164 # clear these values.
165
166 Redfish.Set Username ${EMPTY}
167 Redfish.Set Password ${EMPTY}
168
George Keishing32616042022-09-22 05:25:39 -0500169 ${msg}= Run Keyword And Expect Error * Redfish.Login ${username} ${password}
170
171 # redfish package version <=3.1.6 default response is InvalidCredentialsError.
172 Should Contain Any ${msg} InvalidCredentialsError ${expected_response}
George Keishing374e6842019-02-20 08:57:18 -0600173
174
175Create New Login Session
176 [Documentation] Multiple login session keys.
177
George Keishing97c93942019-03-04 12:45:07 -0600178 Redfish.Login
George Keishing374e6842019-02-20 08:57:18 -0600179 ${session_info}= Get Redfish Session Info
180
181 # Append the session location to the list.
182 # ['/redfish/v1/SessionService/Sessions/uDzihgDecs',
183 # '/redfish/v1/SessionService/Sessions/PaHF5brPPd']
184 Append To List ${session_list} ${session_info["location"]}
185
186
187Multiple Session Cleanup
188 [Documentation] Do the teardown for multiple sessions.
189
190 FFDC On Test Case Fail
191
Sushil Singh50621142020-06-16 11:12:21 -0500192 FOR ${item} IN @{session_list}
193 Redfish.Delete ${item}
194 END