blob: d23349898412218a3bd953cf43a9e50090df3bf9 [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
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/vim_lib.robot
Guillermo Calvinob3d11c02022-11-22 13:34:31 +010023Variables %{ROBOT_DEVOPS_FOLDER}/resources/sol003_01-vnf_lifecycle_management.py
dhanasekaran6f0aed32022-05-17 14:12:40 +020024
25*** Variables ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020026@{success_status_code_list} 200 201 202 204
27${descriptor_content_type_gzip} application/gzip
28${auth_token_uri} /osm/admin/v1/tokens
29${HOST} ${EMPTY}
30${vnf_instance_uri} /osm/vnflcm/v1/vnf_instances
31${vnf_instantiate_uri} /osm/vnflcm/v1/vnf_instances
32${vnf_instance_lcm_ops} /osm/vnflcm/v1/vnf_lcm_op_occs
dhanasekaran6f0aed32022-05-17 14:12:40 +020033
34*** Keywords ***
35Get Auth Token
garciadeblasf4ebaa82022-06-23 13:33:26 +020036 [Tags] auth_token
dhanasekaran6f0aed32022-05-17 14:12:40 +020037 Get Hostname
garciadeblas43f34482023-02-23 17:37:47 +010038 Create Session osmhit ${HOST} disable_warnings=1
dhanasekarand90c14a2022-06-21 07:19:17 +000039 &{headers} Create Dictionary Content-Type=application/json Accept=application/json
Guillermo Calvinob3d11c02022-11-22 13:34:31 +010040 &{data} Create Dictionary username=${osm_user} password=${osm_password} project-id=${osm_project}
garciadeblasf4ebaa82022-06-23 13:33:26 +020041 ${resp}= Post On Session osmhit ${auth_token_uri} json=${data} headers=${headers}
garciadeblas321726f2022-12-21 11:43:06 +010042 Log ${resp}
garciadeblasf4ebaa82022-06-23 13:33:26 +020043 Pass Execution If ${resp.status_code} in ${success_status_code_list} Get Auth Token completed
44 Set Suite Variable ${token_status_code} ${resp.status_code}
45 ${access_token}= Get Value From Json ${resp.json()} $..id
46 Set Test Variable ${access_token} ${access_token[0]}
47 Set Test Variable ${token_response} ${resp}
48 sleep 2s
dhanasekaran6f0aed32022-05-17 14:12:40 +020049
50Set Dockerized Host
garciadeblasf4ebaa82022-06-23 13:33:26 +020051 [Arguments] ${env_host}
52 Set Suite Variable ${HOST} https://${env_host}
dhanasekaran6f0aed32022-05-17 14:12:40 +020053
54Set Standalone Host
garciadeblasf4ebaa82022-06-23 13:33:26 +020055 [Arguments] ${env_host}
56 Set Suite Variable ${HOST} https://${env_host}:9999
dhanasekaran6f0aed32022-05-17 14:12:40 +020057
58Read Directory
garciadeblasf4ebaa82022-06-23 13:33:26 +020059 [Documentation] To Read Current Direct ory
60 ${Directory}= Replace String ${CURDIR} lib resources/
61 ${json_path}= Set Variable ${Directory}
62 [Return] ${JsonPath}
dhanasekaran6f0aed32022-05-17 14:12:40 +020063
64Post Api Request
65 [Arguments] ${PostApi}
garciadeblasf4ebaa82022-06-23 13:33:26 +020066 [Documentation] Keword to Post API Request
67 Create Session APISession ${HOST}
68 &{headers} Create Dictionary Content-Type=application/json Accept=application/json Authorization=Bearer ${access_token}
69 ${request_response}= Post On Session APISession ${PostApi} json=${updated_json_obj} headers=${headers}
70 Set Suite Variable ${request_response}
71 ${response_statuscode} Convert To String ${request_response.status_code}
72 Set Suite Variable ${response_statuscode}
dhanasekaran6f0aed32022-05-17 14:12:40 +020073
74Get HostName
garciadeblasf4ebaa82022-06-23 13:33:26 +020075 [Documentation] Keyword to get the default osm Hostname
76 ${nbi_host}= Get Environment Variable OSM_HOSTNAME
77 ${passed}= Run Keyword And Return Status Should Contain ${nbi_host} :
78 Run Keyword If ${passed} Set Dockerized Host ${nbi_host}
79 ... ELSE Set Standalone Host ${nbi_host}
dhanasekaran6f0aed32022-05-17 14:12:40 +020080
81Get ID
garciadeblasf4ebaa82022-06-23 13:33:26 +020082 [Arguments] ${Key}
83 Pass Execution If ${request_response.status_code} in ${success_status_code_list} Get Auth Token completed
84 ${id}= Get Value From Json ${request_response.json()} $..${Key}
85 Set Suite Variable ${value} ${id[0]}
86 [Return] ${value}
dhanasekaran6f0aed32022-05-17 14:12:40 +020087
88Update Json Value
garciadeblasf4ebaa82022-06-23 13:33:26 +020089 [Arguments] ${JsonInput} ${key}
90 ${json_path}= Read Directory
91 ${json_obj}= Load JSON From File ${json_path}/${JsonInput}
garciadeblas43f34482023-02-23 17:37:47 +010092 ${updated_json_obj}= JSONLibrary.Update Value To Json ${json_obj} $..${key} ${created_vim_account_id}
garciadeblasf4ebaa82022-06-23 13:33:26 +020093 Set Suite Variable ${updated_json_obj}
dhanasekaran6f0aed32022-05-17 14:12:40 +020094
95Get Api Request
garciadeblasf4ebaa82022-06-23 13:33:26 +020096 [Arguments] ${uri}
97 [Documentation] Keyword to Get API Request
98 Create Session Session ${HOST}
99 &{headers} Create Dictionary Content-Type=application/json Accept=application/json Authorization=Bearer ${access_token}
100 ${request_response}= Get On Session Session ${uri} headers=${Headers}
101 Set Suite Variable ${request_response}
102 ${response_statuscode} Convert To String ${request_response.status_code}
103 Set Suite Variable ${response_statuscode}