blob: 584dca1ad6611bf35f51c49faa1b43321f25a7b8 [file] [log] [blame]
adminbae64d82013-08-01 10:50:15 -07001#!/usr/bin/env python
2'''
3Created on 28-Nov-2012
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07004Copyright 2012 Open Networking Foundation (ONF)
adminbae64d82013-08-01 10:50:15 -07005
6@author: Anil Kumar (anilkumar.s@paxterrasolutions.com)
7
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07008Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
9the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
10or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
adminbae64d82013-08-01 10:50:15 -070011
12 TestON is free software: you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation, either version 2 of the License, or
15 (at your option) any later version.
16
17 TestON is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
Jon Hall4ba53f02015-07-29 13:07:41 -070023 along with TestON. If not, see <http://www.gnu.org/licenses/>.
24'''
adminbae64d82013-08-01 10:50:15 -070025class StepParams:
Jon Hall4ba53f02015-07-29 13:07:41 -070026 '''
adminbae64d82013-08-01 10:50:15 -070027 This example shows the usage of the STEP level parameters, in params file the
28 [[CASE1]]
29 [[[STEP1]]]
30 'host' = 'h2'
Jon Hall4ba53f02015-07-29 13:07:41 -070031
adminbae64d82013-08-01 10:50:15 -070032 We can get this STEP level parameter like :
33 main.params['CASE1']['STEP1']['host']
Jon Hall4ba53f02015-07-29 13:07:41 -070034
35
36 ofautomation>run StepParams example 1
adminbae64d82013-08-01 10:50:15 -070037 '''
38 def __init__(self):
39 self.default = ""
Jon Hall4ba53f02015-07-29 13:07:41 -070040
adminbae64d82013-08-01 10:50:15 -070041 def CASE1(self,main):
42 '''
43 This example will showcase the usage of STEP level parameters to specify the host as h2
44 '''
45 main.case("Using STEP level parameters to specify the host as h2")
46 main.step("Host IP Checking using checkIP")
47 result = main.Mininet1.checkIP(main.params['CASE1']['STEP1']['host'])
48 main.step("Verifying the result")
Jon Hall4ba53f02015-07-29 13:07:41 -070049 utilities.assert_equals(expect=main.TRUE,actual=result,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
50
adminbae64d82013-08-01 10:50:15 -070051
52 def CASE2(self,main):
53 '''
54 This example will showcase the usage of STEP level parameters to specify the host as h3
55 '''
56 main.case("Using STEP level parameters to specify the host as h3")
57 main.step("Host IP Checking using checkIP")
58 result = main.Mininet1.checkIP(main.params['CASE2']['STEP1']['host'])
59 main.step("Verifying the result")
Jon Hall4ba53f02015-07-29 13:07:41 -070060 utilities.assert_equals(expect=main.TRUE,actual=result,onpass="Host h3 IP address configured",onfail="Host h3 IP address didn't configured")