blob: 5564e4493e456934037c8e10dc18eb930d67dca4 [file] [log] [blame]
garciaale0e696252020-09-24 18:04:27 +00001# 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 ***
18Get 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
28Get 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}