Bug 873 - Robot Automation improvement: Verify NS Instance updated as per changes...
[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 ${nsconfig}
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}  ${ns_config}=''
45     [Documentation]  Get Configuration parameter to create Newtork service
46
47     Run Keyword If    ${ns_config}==''    Get NS Config
48     ...  ELSE  Set NS Config    ${ns_config}
49     Log To Console    \n${nsconfig}
50     Should Not Be Empty    ${nsd_ids}    There are no NS descriptors to launch the NS
51     :FOR    ${nsd}    IN    @{nsd_ids}
52     \    ${ns_name}=    GENERATE NAME
53     \    Append To List     ${ns_ids}       ${ns_name}
54     \    Create Network Service    ${nsd}   ${vim_name}    ${ns_name}    ${nsconfig}
55
56
57 Set NS Config
58     [Arguments]   ${ns_config}
59     [Documentation]  Set NS Configuration variable
60
61     ${nsconfig}=    Get Variable Value    ${ns_config}    ''
62     Set Test Variable    ${nsconfig}
63
64
65 Get NS Config
66     [Documentation]  Get NS Configuration from Environment Variable
67
68     ${nsconfig}=    Get Environment Variable    NS_CONFIG    ''
69     Set Test Variable    ${nsconfig}
70
71
72 Create Network Service
73     [Documentation]  Create ns at osm
74     [Arguments]  ${nsd}   ${vim_name}    ${ns_name}    ${ns_config}
75
76     Run Keyword If   ${ns_config}!=''   Create Network Service With Config    ${nsd}    ${vim_name}    ${ns_name}    ${ns_config}
77     ...    ELSE    Create Network Service Without Config    ${nsd}   ${vim_name}    ${ns_name}
78
79     WAIT UNTIL KEYWORD SUCCEEDS     ${ns_launch_max_wait_time}   ${ns_launch_pol_time}   Check For NS Instance To Configured   ${ns_name}
80     Check For NS Instance For Failure    ${ns_name}
81
82
83 Create Network Service Without Config
84     [Documentation]  Create ns at osm
85     [Arguments]  ${nsd}   ${vim_name}    ${ns_name}
86
87     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-create --ns_name ${ns_name} --nsd_name ${nsd} --vim_account ${vim_name}
88     log     ${stdout}
89     Should Be Equal As Integers    ${rc}    ${success_return_code}
90
91
92 Create Network Service With Config
93     [Documentation]  Create ns at osm
94     [Arguments]  ${nsd}   ${vim_name}    ${ns_name}    ${ns_config}
95
96     ${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}
97     log     ${stdout}
98     Should Be Equal As Integers    ${rc}    ${success_return_code}
99
100
101 Delete NS
102     [Documentation]  Delete ns
103     [Arguments]  ${ns}
104
105     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-delete ${ns}
106     log     ${stdout}
107     Should Be Equal As Integers    ${rc}    ${success_return_code}
108
109     WAIT UNTIL KEYWORD SUCCEEDS  ${ns_delete_max_wait_time}   ${ns_delete_pol_time}   Check For NS Instance To Be Delete   ${ns}
110
111
112 Check For NS Instance To Configured
113     [Arguments]  ${ns_name}
114
115     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list --filter name="${ns_name}"
116     log     ${stdout}
117     Should Be Equal As Integers    ${rc}    ${success_return_code}
118     Should Contain Any      ${stdout}   READY    BROKEN
119
120
121 Check For NS Instance For Failure
122     [Arguments]  ${ns_name}
123
124     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list --filter name="${ns_name}"
125     log     ${stdout}
126     Should Be Equal As Integers    ${rc}    ${success_return_code}
127     Should Not Contain      ${stdout}   BROKEN
128
129
130 Check For NS Instance To Be Delete
131     [Arguments]  ${ns}
132
133     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-list
134     log     ${stdout}
135     Should Be Equal As Integers    ${rc}    ${success_return_code}
136     Should Not Contain      ${stdout}   ${ns}
137
138
139 Force Delete NS
140     [Documentation]  Forcely Delete ns
141     [Arguments]  ${ns}
142
143     ${rc}   ${stdout}=      Run and Return RC and Output    osm ns-delete ${ns}
144     log     ${stdout}
145     Should Be Equal As Integers    ${rc}    ${success_return_code}
146     WAIT UNTIL KEYWORD SUCCEEDS    ${ns_delete_max_wait_time}   ${ns_delete_pol_time}   Check For NS Instance To Be Delete   ${ns}