| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 1 | *** Comments *** |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 14 | |
| 15 | *** Settings *** |
| 16 | Documentation Library providing keywords to read objects from Juju using juju client. |
| 17 | Library String |
| 18 | Resource ssh_lib.resource |
| 19 | |
| 20 | |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 21 | *** Variables *** |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 22 | ${SUCCESS_RETURN_CODE} 0 |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 23 | |
| 24 | |
| 25 | *** Keywords *** |
| 26 | Get Scale Number |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 27 | [Documentation] Get from Juju the number of units (scale) of a juju application and return it. |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 28 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${application_name} ${model_name} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 29 | Should Not Be Empty ${application_name} ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 30 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aguilard | 71e24ea | 2021-08-12 10:44:17 +0200 | [diff] [blame] | 31 | ${stdout}= Execute Remote Command Check Rc Return Output ${host} ${username} ${password} ${privatekey} juju show-status ${application_name} --format yaml -m ${model_name} | grep scale | awk -F ': ' '{print $2}' |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 32 | Log ${stdout} |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 33 | RETURN ${stdout} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 34 | |
| 35 | Get Model Name |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 36 | [Documentation] Get from Juju the model from a KDU name and a NS id. |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 37 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${ns_id} ${kdu_name} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 38 | Should Not Be Empty ${ns_id} ${kdu_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 39 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aguilard | 71e24ea | 2021-08-12 10:44:17 +0200 | [diff] [blame] | 40 | ${stdout}= Execute Remote Command Check Rc Return Output ${host} ${username} ${password} ${privatekey} juju models | grep -i ${kdu_name} | grep -i ${ns_id} | cut -f1 -d " " |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 41 | Log ${stdout} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 42 | ${model_name}= Set Variable ${kdu_name}-${ns_id} |
| 43 | Should Be Equal As Strings ${model_name} ${stdout} |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 44 | RETURN ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 45 | |
| 46 | Get Application Name VDU Level Charm |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 47 | [Documentation] Get from Juju the application name matching a model and a VDU profile id passed as arguments. The application name must contain the EE passed as argument. |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 48 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${model_name} ${vdu_profile_id} ${ee_name} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 49 | Should Not Be Empty ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 50 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 51 | ${stdout}= Execute Remote Command Check Rc Return Output ${host} ${username} ${password} ${privatekey} juju status -m ${model_name} | grep "\\-vdu" | grep -v "*" | grep -i ${vdu_profile_id} | cut -f1 -d " " |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 52 | Log ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 53 | Should Not Be Empty ${stdout} |
| 54 | Should Contain ${stdout} ${ee_name} |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 55 | RETURN ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 56 | |
| 57 | Get Application Name NS Level Charm |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 58 | [Documentation] Get from Juju the application name matching a model and a NS charm passed as arguments. |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 59 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${model_name} ${charm_name} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 60 | Should Not Be Empty ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 61 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 62 | ${stdout}= Execute Remote Command Check Rc Return Output ${host} ${username} ${password} ${privatekey} juju status -m ${model_name} | grep "\\-ns" | grep -v "*" | grep -i ${charm_name} | cut -f1 -d " " |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 63 | Log ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 64 | Should Not Be Empty ${stdout} |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 65 | RETURN ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 66 | |
| 67 | Get Application Name VNF Level Charm |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 68 | [Documentation] Get from Juju the application name matching a model and a VNF profile id passed as arguments. The application name must contain the EE passed as argument. |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 69 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${model_name} ${vnf_profile_id} ${ee_name} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 70 | Should Not Be Empty ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 71 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 72 | ${stdout}= Execute Remote Command Check Rc Return Output ${host} ${username} ${password} ${privatekey} juju status -m ${model_name} | grep "\\-vnf" | grep -v "*" | grep -i ${vnf_profile_id} | cut -f1 -d " " |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 73 | Log ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 74 | Should Not Be Empty ${stdout} |
| 75 | Should Contain ${stdout} ${ee_name} |
| garciadeblas | 7a9e031 | 2023-12-11 22:24:46 +0100 | [diff] [blame] | 76 | RETURN ${stdout} |