1 # -*- coding: utf-8 -*-
4 # Copyright 2019 Tech Mahindra Limited
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
12 # http://www.apache.org/licenses/LICENSE-2.0
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
22 # 1. Feature 7829: Jayant Madavi, Mrityunjay Yadav : MY00514913@techmahindra.com : 06-sep-2019
30 ${success_return_code} 0
31 ${delete_max_wait_time} 1min
32 ${delete_pol_time} 15sec
37 ${rc} ${stdout}= Run and Return RC and Output osm nsd-list
39 Should Be Equal As Integers ${rc} ${success_return_code}
43 [Arguments] ${nsd_pkg}
45 ${rc} ${stdout}= Run and Return RC and Output osm nsd-create ${nsd_pkg}
47 Should Be Equal As Integers ${rc} ${success_return_code}
48 ${lines}= Get Line Count ${stdout}
49 ${last}= Evaluate ${lines} - 1
50 ${id}= Get Line ${stdout} ${last}
57 ${rc} ${stdout}= Run Keyword And Continue On Failure Run and Return RC and Output osm nsd-delete ${nsd_id}
58 Should Be Equal As Integers ${rc} ${success_return_code}
60 WAIT UNTIL KEYWORD SUCCEEDS ${delete_max_wait_time} ${delete_pol_time} Check For NSD ${nsd_id}
66 ${rc} ${stdout}= Run and Return RC and Output osm nsd-list | awk '{print $2}' | grep ${nsd_id}
67 Should Not Be Equal As Strings ${stdout} ${nsd_id}