Revert "Feature 11001: Robot framework linting for E2E tests"
[osm/tests.git] / robot-systest / lib / rest_lib.robot
1 #   Licensed under the Apache License, Version 2.0 (the "License");
2 #   you may not use this file except in compliance with the License.
3 #   You may obtain a copy of the License at
4 #
5 #       http://www.apache.org/licenses/LICENSE-2.0
6 #
7 #   Unless required by applicable law or agreed to in writing, software
8 #   distributed under the License is distributed on an "AS IS" BASIS,
9 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 #   See the License for the specific language governing permissions and
11 #   limitations under the License
12
13 *** Settings ***
14 Documentation   Library with sol003 keywords and variables .
15
16 Library   RequestsLibrary
17 Library   JsonValidator
18 Library   yaml
19 Library   JSONLibrary
20 Library   String
21 Library   OperatingSystem
22
23 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vim_lib.robot
24
25 *** Variables ***
26 @{success_status_code_list}   200   201   202   204
27 ${auth_token_uri}   /osm/admin/v1/tokens
28 ${HOST}   ${EMPTY}
29 ${osm_user}   %{OSM_USER=admin}
30 ${osm_password}   %{OSM_PASSWORD=admin}
31 ${osm_project}   %{OSM_PROJECT=admin}
32
33 *** Keywords ***
34 Get Auth Token
35     [Tags]   auth_token
36     Get Hostname
37     Create Session   osmhit   ${HOST}   disable_warnings=1
38     &{headers}   Create Dictionary   Content-Type=application/json   Accept=application/json
39     &{data}   Create Dictionary   username=${osm_user}   password=${osm_password}   project-id=${osm_project}
40     ${resp}=   Post On Session   osmhit   ${auth_token_uri}   json=${data}   headers=${headers}
41     Log   ${resp}
42     Pass Execution If   ${resp.status_code} in ${success_status_code_list}   Get Auth Token completed
43     Set Suite Variable   ${token_status_code}   ${resp.status_code}
44     ${access_token}=   Get Value From Json   ${resp.json()}   $..id
45     Set Test Variable   ${access_token}   ${access_token[0]}
46     Set Test Variable   ${token_response}   ${resp}
47     sleep   2s
48
49 Set Dockerized Host
50     [Arguments]   ${env_host}
51     Set Suite Variable   ${HOST}   https://${env_host}
52
53 Set Standalone Host
54     [Arguments]   ${env_host}
55     Set Suite Variable   ${HOST}   https://${env_host}:9999
56
57 Read Directory
58     [Documentation]   To Read Current Direct ory
59     ${Directory}=   Replace String   ${CURDIR}   lib   resources/
60     ${json_path}=   Set Variable   ${Directory}
61     [Return]   ${JsonPath}
62
63 Post Api Request
64     [Arguments]   ${PostApi}
65     [Documentation]   Keword to Post API Request
66     Create Session   APISession   ${HOST}
67     &{headers}   Create Dictionary   Content-Type=application/json   Accept=application/json   Authorization=Bearer ${access_token}
68     ${request_response}=   Post On Session   APISession   ${PostApi}   json=${updated_json_obj}   headers=${headers}
69     Set Suite Variable   ${request_response}
70     ${response_statuscode}   Convert To String   ${request_response.status_code}
71     Set Suite Variable   ${response_statuscode}
72
73 Get Hostname
74     [Documentation]   Keyword to get the default osm Hostname
75     ${nbi_host}=   Get Environment Variable   OSM_HOSTNAME
76     ${passed}=   Run Keyword And Return Status   Should Contain   ${nbi_host}   :
77     Run Keyword If   ${passed}   Set Dockerized Host   ${nbi_host}
78     ...    ELSE   Set Standalone Host   ${nbi_host}
79
80 Get ID
81     [Arguments]   ${Key}
82     Pass Execution If   ${request_response.status_code} in ${success_status_code_list}   Get Auth Token completed
83     ${id}=   Get Value From Json   ${request_response.json()}   $..${Key}
84     Set Suite Variable   ${value}   ${id[0]}
85     [Return]   ${value}
86
87 Get Api Request
88     [Arguments]   ${uri}
89     [Documentation]   Keyword to Get API Request
90     Create Session   Session   ${HOST}
91     &{headers}   Create Dictionary   Content-Type=application/json   Accept=application/json   Authorization=Bearer ${access_token}
92     ${request_response}=   Get On Session   Session   ${uri}   headers=${Headers}
93     Set Suite Variable   ${request_response}
94     ${response_statuscode}   Convert To String   ${request_response.status_code}
95     Set Suite Variable   ${response_statuscode}