| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [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 | *** Variables *** |
| 14 | ${success_return_code} 0 |
| 15 | |
| 16 | |
| 17 | *** Keywords *** |
| 18 | Get Scale Number |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 19 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${application_name} ${model_name} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 20 | |
| 21 | Should Not Be Empty ${application_name} ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 22 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aguilard | 71e24ea | 2021-08-12 10:44:17 +0200 | [diff] [blame] | 23 | ${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] | 24 | Log ${stdout} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 25 | [Return] ${stdout} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 26 | |
| 27 | Get Model Name |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 28 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${ns_id} ${kdu_name} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 29 | |
| 30 | Should Not Be Empty ${ns_id} ${kdu_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 31 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aguilard | 71e24ea | 2021-08-12 10:44:17 +0200 | [diff] [blame] | 32 | ${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] | 33 | Log ${stdout} |
| aktas | f47542b | 2021-05-26 10:32:32 +0300 | [diff] [blame] | 34 | ${model_name}= Set Variable ${kdu_name}-${ns_id} |
| 35 | Should Be Equal As Strings ${model_name} ${stdout} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 36 | [Return] ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 37 | |
| 38 | Get Application Name VDU Level Charm |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 39 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${model_name} ${vdu_profile_id} ${ee_name} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 40 | |
| 41 | Should Not Be Empty ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 42 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 43 | ${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] | 44 | Log ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 45 | Should Not Be Empty ${stdout} |
| 46 | Should Contain ${stdout} ${ee_name} |
| 47 | [Return] ${stdout} |
| 48 | |
| 49 | Get Application Name NS Level Charm |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 50 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${model_name} ${charm_name} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 51 | |
| 52 | Should Not Be Empty ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 53 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 54 | ${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] | 55 | Log ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 56 | Should Not Be Empty ${stdout} |
| 57 | [Return] ${stdout} |
| 58 | |
| 59 | Get Application Name VNF Level Charm |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 60 | [Arguments] ${endpoint} ${username} ${password} ${privatekey} ${model_name} ${vnf_profile_id} ${ee_name} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 61 | |
| 62 | Should Not Be Empty ${model_name} |
| Guillermo Calvino | 01b2947 | 2022-11-18 16:52:50 +0100 | [diff] [blame] | 63 | ${host}= Remove String Using Regexp ${endpoint} :([0-9]+)$ |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 64 | ${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] | 65 | Log ${stdout} |
| aticig | a131bf0 | 2022-08-25 13:10:14 +0300 | [diff] [blame] | 66 | Should Not Be Empty ${stdout} |
| 67 | Should Contain ${stdout} ${ee_name} |
| 68 | [Return] ${stdout} |