b125679ab4801460b0070cf3e415b61d69b0d5c1
[osm/tests.git] / robot-systest / lib / juju_lib.robot
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
19     [Arguments]   ${endpoint}   ${username}   ${password}   ${privatekey}   ${application_name}   ${model_name}
20
21     Should Not Be Empty   ${application_name}   ${model_name}
22     ${host}=   Remove String Using Regexp   ${endpoint}   :([0-9]+)$
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}'
24     log   ${stdout}
25     [Return]   ${stdout}
26
27 Get Model Name
28     [Arguments]   ${endpoint}   ${username}   ${password}   ${privatekey}   ${ns_id}   ${kdu_name}
29
30     Should Not Be Empty   ${ns_id}   ${kdu_name}
31     ${host}=   Remove String Using Regexp   ${endpoint}   :([0-9]+)$
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 " "
33     log   ${stdout}
34     ${model_name}=   Set Variable   ${kdu_name}-${ns_id}
35     Should Be Equal As Strings   ${model_name}   ${stdout}
36     [Return]   ${stdout}
37
38 Get Application Name VDU Level Charm
39     [Arguments]   ${endpoint}   ${username}   ${password}   ${privatekey}   ${model_name}   ${vdu_profile_id}   ${ee_name}
40
41     Should Not Be Empty   ${model_name}
42     ${host}=   Remove String Using Regexp   ${endpoint}   :([0-9]+)$
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 " "
44     log   ${stdout}
45     Should Not Be Empty   ${stdout}
46     Should Contain   ${stdout}   ${ee_name}
47     [Return]   ${stdout}
48
49 Get Application Name NS Level Charm
50     [Arguments]   ${endpoint}   ${username}   ${password}   ${privatekey}   ${model_name}   ${charm_name}
51
52     Should Not Be Empty   ${model_name}
53     ${host}=   Remove String Using Regexp   ${endpoint}   :([0-9]+)$
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 " "
55     log   ${stdout}
56     Should Not Be Empty   ${stdout}
57     [Return]   ${stdout}
58
59 Get Application Name VNF Level Charm
60     [Arguments]   ${endpoint}   ${username}   ${password}   ${privatekey}   ${model_name}   ${vnf_profile_id}   ${ee_name}
61
62     Should Not Be Empty   ${model_name}
63     ${host}=   Remove String Using Regexp   ${endpoint}   :([0-9]+)$
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 " "
65     log   ${stdout}
66     Should Not Be Empty   ${stdout}
67     Should Contain   ${stdout}   ${ee_name}
68     [Return]   ${stdout}