Fixed typo in function uninstall_k8s_monitoring
[osm/devops.git] / robot-systest / lib / cli / ns_lib.robot
1 # -*- coding: utf-8 -*-
2
3 ##
4 # Copyright 2019 Tech Mahindra Limited
5 #
6 # All Rights Reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License"); you may
9 # not use this file except in compliance with the License. You may obtain
10 # a copy of the License at
11 #
12 #         http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17 # License for the specific language governing permissions and limitations
18 # under the License.
19 ##
20
21 ## Change log:
22 # 1. Feature 7829: Jayant Madavi, Mrityunjay Yadav : MY00514913@techmahindra.com : 06-aug-2019 : Improvement to the code, robot framework initial seed code.
23 ##
24
25
26 *** Variables ***
27 ${success_return_code}    0
28 ${ns_launch_max_wait_time}    5min
29 ${ns_launch_pol_time}    30sec
30 ${ns_delete_max_wait_time}    1min
31 ${ns_delete_pol_time}    15sec
32
33
34 *** Keywords ***
35 Get NS List
36     [Documentation]  Get ns instance list
37
38     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list
39     log     ${stdout}
40     Should Be Equal As Integers    ${rc}    ${success_return_code}
41
42
43 Launch Network Services and Return
44     [Arguments]  ${vim_name}
45
46     Should Not Be Empty    ${nsd_ids}    There are no NS descriptors to launch the NS
47     :FOR    ${nsd}    IN    @{nsd_ids}
48     \    ${ns_name}=    GENERATE NAME
49     \    Append To List     ${ns_ids}       ${ns_name}
50     \    Create Network Service    ${nsd}   ${vim_name}    ${ns_name}
51
52
53 Create Network Service
54     [Documentation]  Create ns at osm
55     [Arguments]  ${nsd}   ${vim_name}    ${ns_name}
56
57     ${ns_config}=   Get Environment Variable    NS_CONFIG    ''
58     Run Keyword If   ${ns_config}!=''   Create Network Service With Config    ${nsd}    ${vim_name}    ${ns_name}    ${ns_config}
59     ...    ELSE    Create Network Service Without Config    ${nsd}   ${vim_name}    ${ns_name}
60
61     WAIT UNTIL KEYWORD SUCCEEDS     ${ns_launch_max_wait_time}   ${ns_launch_pol_time}   Check For NS Instance To Configured   ${ns_name}
62     Check For NS Instance For Failure    ${ns_name}
63
64
65 Create Network Service Without Config
66     [Documentation]  Create ns at osm
67     [Arguments]  ${nsd}   ${vim_name}    ${ns_name}
68
69     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-create --ns_name ${ns_name} --nsd_name ${nsd} --vim_account ${vim_name}
70     log     ${stdout}
71     Should Be Equal As Integers    ${rc}    ${success_return_code}
72
73
74 Create Network Service With Config
75     [Documentation]  Create ns at osm
76     [Arguments]  ${nsd}   ${vim_name}    ${ns_name}    ${ns_config}
77
78     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-create --ns_name ${ns_name} --nsd_name ${nsd} --vim_account ${vim_name} --config ${ns_config}
79     log     ${stdout}
80     Should Be Equal As Integers    ${rc}    ${success_return_code}
81
82
83 Delete NS
84     [Documentation]  Delete ns
85     [Arguments]  ${ns}
86
87     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-delete ${ns}
88     log     ${stdout}
89     Should Be Equal As Integers    ${rc}    ${success_return_code}
90
91     WAIT UNTIL KEYWORD SUCCEEDS  ${ns_delete_max_wait_time}   ${ns_delete_pol_time}   Check For NS Instance To Be Delete   ${ns}
92
93
94 Check For NS Instance To Configured
95     [Arguments]  ${ns_name}
96
97     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list --filter name="${ns_name}"
98     log     ${stdout}
99     Should Be Equal As Integers    ${rc}    ${success_return_code}
100     Should Contain Any      ${stdout}   configured    failed
101
102
103 Check For NS Instance For Failure
104     [Arguments]  ${ns_name}
105
106     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list --filter name="${ns_name}"
107     log     ${stdout}
108     Should Be Equal As Integers    ${rc}    ${success_return_code}
109     Should Not Contain      ${stdout}   failed
110
111
112 Check For NS Instance To Be Delete
113     [Arguments]  ${ns}
114
115     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list
116     log     ${stdout}
117     Should Be Equal As Integers    ${rc}    ${success_return_code}
118     Should Not Contain      ${stdout}   ${ns}
119
120
121 Force Delete NS
122     [Documentation]  Forcely Delete ns
123     [Arguments]  ${ns}
124
125     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-delete ${ns}
126     log     ${stdout}
127     Should Be Equal As Integers    ${rc}    ${success_return_code}
128     WAIT UNTIL KEYWORD SUCCEEDS    ${ns_delete_max_wait_time}   ${ns_delete_pol_time}   Check For NS Instance To Be Delete   ${ns}