blob: ced8a2164b91bc5d6443ad09cdb5371b7de1cc10 [file] [log] [blame]
dhanasekaran6f0aed32022-05-17 14:12:40 +02001# 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 ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020014Documentation Library with sol003 keywords and variables .
dhanasekaran6f0aed32022-05-17 14:12:40 +020015
garciadeblasf4ebaa82022-06-23 13:33:26 +020016Library RequestsLibrary
17Library JsonValidator
18Library yaml
19Library JSONLibrary
20Library String
21Library OperatingSystem
garciadeblasa351dd22023-06-27 12:07:08 +020022
garciadeblasf4ebaa82022-06-23 13:33:26 +020023Resource %{ROBOT_DEVOPS_FOLDER}/lib/vim_lib.robot
dhanasekaran6f0aed32022-05-17 14:12:40 +020024
25*** Variables ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020026@{success_status_code_list} 200 201 202 204
garciadeblasf4ebaa82022-06-23 13:33:26 +020027${auth_token_uri} /osm/admin/v1/tokens
28${HOST} ${EMPTY}
garciadeblasa351dd22023-06-27 12:07:08 +020029${osm_user} %{OSM_USER=admin}
30${osm_password} %{OSM_PASSWORD=admin}
31${osm_project} %{OSM_PROJECT=admin}
dhanasekaran6f0aed32022-05-17 14:12:40 +020032
33*** Keywords ***
34Get Auth Token
garciadeblasf4ebaa82022-06-23 13:33:26 +020035 [Tags] auth_token
dhanasekaran6f0aed32022-05-17 14:12:40 +020036 Get Hostname
garciadeblas43f34482023-02-23 17:37:47 +010037 Create Session osmhit ${HOST} disable_warnings=1
dhanasekarand90c14a2022-06-21 07:19:17 +000038 &{headers} Create Dictionary Content-Type=application/json Accept=application/json
Guillermo Calvinob3d11c02022-11-22 13:34:31 +010039 &{data} Create Dictionary username=${osm_user} password=${osm_password} project-id=${osm_project}
garciadeblasf4ebaa82022-06-23 13:33:26 +020040 ${resp}= Post On Session osmhit ${auth_token_uri} json=${data} headers=${headers}
garciadeblas321726f2022-12-21 11:43:06 +010041 Log ${resp}
garciadeblasf4ebaa82022-06-23 13:33:26 +020042 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
dhanasekaran6f0aed32022-05-17 14:12:40 +020048
49Set Dockerized Host
garciadeblasf4ebaa82022-06-23 13:33:26 +020050 [Arguments] ${env_host}
51 Set Suite Variable ${HOST} https://${env_host}
dhanasekaran6f0aed32022-05-17 14:12:40 +020052
53Set Standalone Host
garciadeblasf4ebaa82022-06-23 13:33:26 +020054 [Arguments] ${env_host}
55 Set Suite Variable ${HOST} https://${env_host}:9999
dhanasekaran6f0aed32022-05-17 14:12:40 +020056
57Read Directory
garciadeblasf4ebaa82022-06-23 13:33:26 +020058 [Documentation] To Read Current Direct ory
59 ${Directory}= Replace String ${CURDIR} lib resources/
60 ${json_path}= Set Variable ${Directory}
61 [Return] ${JsonPath}
dhanasekaran6f0aed32022-05-17 14:12:40 +020062
63Post Api Request
64 [Arguments] ${PostApi}
garciadeblasf4ebaa82022-06-23 13:33:26 +020065 [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}
dhanasekaran6f0aed32022-05-17 14:12:40 +020072
garciadeblas68eac4a2023-06-27 11:21:05 +020073Get Hostname
garciadeblasf4ebaa82022-06-23 13:33:26 +020074 [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}
dhanasekaran6f0aed32022-05-17 14:12:40 +020079
80Get ID
garciadeblasf4ebaa82022-06-23 13:33:26 +020081 [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}
dhanasekaran6f0aed32022-05-17 14:12:40 +020086
dhanasekaran6f0aed32022-05-17 14:12:40 +020087Get Api Request
garciadeblasf4ebaa82022-06-23 13:33:26 +020088 [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}