| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 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 *** |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 14 | Documentation Library with sol003 keywords and variables . |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 15 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 16 | Library RequestsLibrary |
| 17 | Library JsonValidator |
| 18 | Library yaml |
| 19 | Library JSONLibrary |
| 20 | Library String |
| 21 | Library OperatingSystem |
| 22 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/vim_lib.robot |
| Guillermo Calvino | b3d11c0 | 2022-11-22 13:34:31 +0100 | [diff] [blame] | 23 | Variables %{ROBOT_DEVOPS_FOLDER}/resources/sol003_01-vnf_lifecycle_management.py |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 24 | |
| 25 | *** Variables *** |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 26 | @{success_status_code_list} 200 201 202 204 |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 27 | ${auth_token_uri} /osm/admin/v1/tokens |
| 28 | ${HOST} ${EMPTY} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 29 | |
| 30 | *** Keywords *** |
| 31 | Get Auth Token |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 32 | [Tags] auth_token |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 33 | Get Hostname |
| garciadeblas | 43f3448 | 2023-02-23 17:37:47 +0100 | [diff] [blame] | 34 | Create Session osmhit ${HOST} disable_warnings=1 |
| dhanasekaran | d90c14a | 2022-06-21 07:19:17 +0000 | [diff] [blame] | 35 | &{headers} Create Dictionary Content-Type=application/json Accept=application/json |
| Guillermo Calvino | b3d11c0 | 2022-11-22 13:34:31 +0100 | [diff] [blame] | 36 | &{data} Create Dictionary username=${osm_user} password=${osm_password} project-id=${osm_project} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 37 | ${resp}= Post On Session osmhit ${auth_token_uri} json=${data} headers=${headers} |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 38 | Log ${resp} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 39 | Pass Execution If ${resp.status_code} in ${success_status_code_list} Get Auth Token completed |
| 40 | Set Suite Variable ${token_status_code} ${resp.status_code} |
| 41 | ${access_token}= Get Value From Json ${resp.json()} $..id |
| 42 | Set Test Variable ${access_token} ${access_token[0]} |
| 43 | Set Test Variable ${token_response} ${resp} |
| 44 | sleep 2s |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 45 | |
| 46 | Set Dockerized Host |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 47 | [Arguments] ${env_host} |
| 48 | Set Suite Variable ${HOST} https://${env_host} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 49 | |
| 50 | Set Standalone Host |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 51 | [Arguments] ${env_host} |
| 52 | Set Suite Variable ${HOST} https://${env_host}:9999 |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 53 | |
| 54 | Read Directory |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 55 | [Documentation] To Read Current Direct ory |
| 56 | ${Directory}= Replace String ${CURDIR} lib resources/ |
| 57 | ${json_path}= Set Variable ${Directory} |
| 58 | [Return] ${JsonPath} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 59 | |
| 60 | Post Api Request |
| 61 | [Arguments] ${PostApi} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 62 | [Documentation] Keword to Post API Request |
| 63 | Create Session APISession ${HOST} |
| 64 | &{headers} Create Dictionary Content-Type=application/json Accept=application/json Authorization=Bearer ${access_token} |
| 65 | ${request_response}= Post On Session APISession ${PostApi} json=${updated_json_obj} headers=${headers} |
| 66 | Set Suite Variable ${request_response} |
| 67 | ${response_statuscode} Convert To String ${request_response.status_code} |
| 68 | Set Suite Variable ${response_statuscode} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 69 | |
| garciadeblas | 68eac4a | 2023-06-27 11:21:05 +0200 | [diff] [blame] | 70 | Get Hostname |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 71 | [Documentation] Keyword to get the default osm Hostname |
| 72 | ${nbi_host}= Get Environment Variable OSM_HOSTNAME |
| 73 | ${passed}= Run Keyword And Return Status Should Contain ${nbi_host} : |
| 74 | Run Keyword If ${passed} Set Dockerized Host ${nbi_host} |
| 75 | ... ELSE Set Standalone Host ${nbi_host} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 76 | |
| 77 | Get ID |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 78 | [Arguments] ${Key} |
| 79 | Pass Execution If ${request_response.status_code} in ${success_status_code_list} Get Auth Token completed |
| 80 | ${id}= Get Value From Json ${request_response.json()} $..${Key} |
| 81 | Set Suite Variable ${value} ${id[0]} |
| 82 | [Return] ${value} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 83 | |
| 84 | Update Json Value |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 85 | [Arguments] ${JsonInput} ${key} |
| 86 | ${json_path}= Read Directory |
| 87 | ${json_obj}= Load JSON From File ${json_path}/${JsonInput} |
| garciadeblas | 43f3448 | 2023-02-23 17:37:47 +0100 | [diff] [blame] | 88 | ${updated_json_obj}= JSONLibrary.Update Value To Json ${json_obj} $..${key} ${created_vim_account_id} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 89 | Set Suite Variable ${updated_json_obj} |
| dhanasekaran | 6f0aed3 | 2022-05-17 14:12:40 +0200 | [diff] [blame] | 90 | |
| 91 | Get Api Request |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 92 | [Arguments] ${uri} |
| 93 | [Documentation] Keyword to Get API Request |
| 94 | Create Session Session ${HOST} |
| 95 | &{headers} Create Dictionary Content-Type=application/json Accept=application/json Authorization=Bearer ${access_token} |
| 96 | ${request_response}= Get On Session Session ${uri} headers=${Headers} |
| 97 | Set Suite Variable ${request_response} |
| 98 | ${response_statuscode} Convert To String ${request_response.status_code} |
| 99 | Set Suite Variable ${response_statuscode} |