1*** Settings ***
2Documentation    Test Redfish to verify responses for SessionService and Hypermedia.
3
4Resource         ../../lib/resource.robot
5Resource         ../../lib/bmc_redfish_resource.robot
6Resource         ../../lib/openbmc_ffdc.robot
7
8
9Test Teardown    FFDC On Test Case Fail
10Test Setup       Printn
11
12*** Test Cases ***
13
14Redfish Login And Logout
15    [Documentation]  Login to BMCweb and then logout.
16    [Tags]  Redfish_Login_And_Logout
17
18    Redfish.Login
19    Redfish.Logout
20
21
22GET Redfish Hypermedia Without Login
23    [Documentation]  GET hypermedia URL without login.
24    [Tags]  GET_Redfish_Hypermedia_Without_Login
25    [Template]  GET And Verify Redfish Response
26
27    # Expect status      Resource URL Path
28    ${HTTP_OK}           /
29    ${HTTP_OK}           /redfish
30    ${HTTP_OK}           /redfish/v1
31
32
33GET Redfish SessionService Without Login
34    [Documentation]  Get /redfish/v1/SessionService without login
35    [Tags]  GET_Redfish_SessionService_Without_Login
36
37    ${resp}=  Redfish.Get  /redfish/v1/SessionService
38    ...  valid_status_codes=[${HTTP_UNAUTHORIZED}]
39
40
41GET Redfish Resources With Login
42    [Documentation]  Login to BMCweb and GET valid resource.
43    [Tags]  GET_Redfish_Resources_With_Login
44    [Setup]  Redfish.Login
45    [Template]  GET And Verify Redfish Response
46
47    # Expect status      Resource URL Path
48    ${HTTP_OK}           /redfish/v1/SessionService
49    ${HTTP_OK}           /redfish/v1/AccountService
50    ${HTTP_OK}           /redfish/v1/Systems/system
51    ${HTTP_OK}           /redfish/v1/Chassis/chassis
52    ${HTTP_OK}           /redfish/v1/Managers/bmc
53    ${HTTP_OK}           /redfish/v1/UpdateService
54
55
56Redfish Login Using Invalid Token
57    [Documentation]  Login to BMCweb with invalid token.
58    [Tags]  Redfish_Login_Using_Invalid_Token
59
60    Create Session  openbmc  ${AUTH_URI}
61
62    # Example: "X-Auth-Token: 3la1JUf1vY4yN2dNOwun"
63    ${headers}=  Create Dictionary  Content-Type=application/json
64    ...  X-Auth-Token=deadbeef
65
66    ${resp}=  Get Request
67    ...  openbmc  /redfish/v1/SessionService/Sessions  headers=${headers}
68
69    Should Be Equal As Strings  ${resp.status_code}  ${HTTP_UNAUTHORIZED}
70
71
72Verify Redfish Invalid URL Response Code
73    [Documentation]  Login to BMCweb and verify error response code.
74    [Tags]  Verify_Redfish_Invalid_URL_Response_Code
75
76    Redfish.Login
77    Redfish.Get  /redfish/v1/idontexist  valid_status_codes=[${HTTP_NOT_FOUND}]
78    Redfish.Logout
79
80
81Delete Redfish Session Using Valid login
82    [Documentation]  Delete a session using valid login.
83    [Tags]  Delete_Redfish_Session_Using_Valid_Login
84
85    Redfish.Login
86    ${session_info}=  Get Redfish Session Info
87
88    Redfish.Login
89
90    # Example o/p:
91    # [{'@odata.id': '/redfish/v1/SessionService/Sessions/bOol3WlCI8'},
92    #  {'@odata.id': '/redfish/v1/SessionService/Sessions/Yu3xFqjZr1'}]
93    ${resp_list}=  Redfish_Utils.List Request
94    ...  /redfish/v1/SessionService/Sessions
95
96    Redfish.Delete  ${session_info["location"]}
97
98    ${resp}=  Redfish_Utils.List Request  /redfish/v1/SessionService/Sessions
99    List Should Not Contain Value  ${resp}  ${session_info["location"]}
100
101
102Redfish Login Via SessionService
103    [Documentation]  Login to BMC via redfish session service.
104    [Tags]   Redfish_Login_Via_SessionService
105
106    Create Session  openbmc  https://${OPENBMC_HOST}
107    ${headers}=  Create Dictionary  Content-Type=application/json
108    ${data}=  Create Dictionary  UserName=${OPENBMC_USERNAME}  Password=${OPENBMC_PASSWORD}
109
110    ${resp}=  Post Request  openbmc  /redfish/v1/SessionService/Sessions  data=${data}  headers=${headers}
111    Should Be Equal As Strings  ${resp.status_code}  ${HTTP_CREATED}
112
113    ${content}=  To JSON  ${resp.content}
114    ${headers}=  Create Dictionary   Content-Type=application/json
115    ...  X-Auth-Token=${resp.headers["X-Auth-Token"]}
116    ${resp}=  Delete Request  openbmc  /redfish/v1/SessionService/Sessions/${content["Id"]}  headers=${headers}
117    Should Be Equal As Strings  ${resp.status_code}  ${HTTP_OK}
118
119
120*** Keywords ***
121
122GET And Verify Redfish Response
123    [Documentation]  GET given resource and verfiy response.
124    [Arguments]  ${valid_status_codes}  ${resource_path}
125
126    # Description of argument(s):
127    # valid_status_codes            A comma-separated list of acceptable
128    #                               status codes (e.g. 200).
129    # resource_path                 Redfish resource URL path.
130
131    ${resp}=  Redfish.Get  ${resource_path}
132    ...  valid_status_codes=[${valid_status_codes}]
133