cd03eb8c027388f0bca988eccffabe67b008f52d
[osm/tests.git] / robot-systest / lib / openstack_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 Server Flavor ID
19     [Arguments]   ${server_id}
20
21     Should Not Be Empty   ${server_id}
22     ${rc}   ${stdout}=   Run and Return RC and Output   openstack server show ${server_id} | grep flavor | awk 'NR>1{print $1}' RS='(' FS=')'
23     log   ${stdout}
24     Should Be Equal As Integers   ${rc}   ${success_return_code}
25     [Return]  ${stdout}
26
27
28 Get Flavor Properties
29     [Arguments]   ${flavor_id}
30
31     Should Not Be Empty   ${flavor_id}
32     ${rc}   ${stdout}=   Run and Return RC and Output   openstack flavor show ${flavor_id} | grep properties | awk -F '|' '{print $3}'
33     log   ${stdout}
34     Should Be Equal As Integers   ${rc}   ${success_return_code}
35     [Return]  ${stdout}
36
37
38 Check NS Servers In VIM
39     [Documentation]     Check if the number of servers in Openstack by filtering by NS name is as expected.
40     [Arguments]   ${ns_name}   ${number}
41
42     Should Not Be Empty   ${ns_name}
43     ${rc}   ${stdout}=   Run and Return RC and Output   openstack server list | grep ${ns_name} | awk '{print $4}'
44     log   ${stdout}
45     Should Be Equal As Integers   ${rc}   ${success_return_code}
46     @{servers} =  Split String  ${stdout}
47     ${n_servers}=  Get Length  ${servers}
48     Should Be Equal As Integers   ${number}   ${n_servers}