blob: da27b4fed4d19b60977d1a5ad0dcac79196622f7 [file] [log] [blame]
yadavmr58af6b12019-09-18 15:33:25 +05301# -*- 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-sep-2019
23##
24
25*** Variables ***
26${success_return_code} 0
27${delete_max_wait_time} 1min
28${delete_pol_time} 15sec
29
30
31*** Keywords ***
32Get NSDs List
33 [Documentation] Get nsds list
34
35 ${rc} ${stdout}= Run and Return RC and Output osm nsd-list
36 log ${stdout}
37 Should Be Equal As Integers ${rc} ${success_return_code}
38
39
40Create NSD
41 [Documentation] Create nsd at osm
42 [Arguments] ${nsd_pkg}
43
44 ${rc} ${stdout}= Run and Return RC and Output osm nsd-create ${nsd_pkg}
45 log ${stdout}
46 Should Be Equal As Integers ${rc} ${success_return_code}
47 [Return] ${stdout}
48
49
50Delete NSD
51 [Documentation] Delete nsd
52 [Arguments] ${nsd_id}
53
yadavmr07847332019-11-28 12:01:48 +053054 # For timebeing exception thrown by nsd-delete api was ignor because nsd was deleted successfully. The cause of exception is need to debug further
55 ${rc} ${stdout}= Run Keyword And Continue On Failure Run and Return RC and Output osm nsd-delete ${nsd_id}
yadavmr58af6b12019-09-18 15:33:25 +053056 log ${stdout}
yadavmr07847332019-11-28 12:01:48 +053057# Should Be Equal As Integers ${rc} ${success_return_code}
yadavmr58af6b12019-09-18 15:33:25 +053058 WAIT UNTIL KEYWORD SUCCEEDS ${delete_max_wait_time} ${delete_pol_time} Check For NSD ${nsd_id}
59
60
61Check For NSD
62 [Arguments] ${nsd_id}
63
64 ${rc} ${stdout}= Run and Return RC and Output osm nsd-list
65 log ${stdout}
66 Should Be Equal As Integers ${rc} ${success_return_code}
67 Should Not Contain ${stdout} ${nsd_id}
68
69
70Force Delete NSD
71 [Documentation] Forcely Delete nsd
72 [Arguments] ${nsd_id}
73
74 ${rc} ${stdout}= Run and Return RC and Output osm nsd-delete ${nsd_id}
75 log ${stdout}
76 Should Be Equal As Integers ${rc} ${success_return_code}
77
78
79Build NS Descriptor
80 [Documentation] Build NS Descriptor from the descriptor-packages
81 [Arguments] ${nsd path}
82
83 ${rc} ${stdout}= Run and Return RC and Output make -C '${CURDIR}${/}../../..${nsd path}'
84 log ${stdout}
85 Should Be Equal As Integers ${rc} ${success_return_code}