Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 1 | """ |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 2 | Copyright 2016 Open Networking Foundation ( ONF ) |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 3 | |
| 4 | Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>, |
| 5 | the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>, |
| 6 | or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg> |
| 7 | |
| 8 | TestON is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 2 of the License, or |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 11 | ( at your option ) any later version. |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 12 | |
| 13 | TestON is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
| 17 | |
| 18 | You should have received a copy of the GNU General Public License |
| 19 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
| 20 | """ |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 21 | # Testing the NETCONF protocol within ONOS |
| 22 | |
Jon Hall | 0c3f46f | 2017-05-24 16:34:46 -0700 | [diff] [blame] | 23 | |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 24 | class FUNCnetconf: |
| 25 | |
| 26 | def __init__( self ): |
| 27 | self.default = '' |
| 28 | |
| 29 | def CASE1( self, main ): |
| 30 | import time |
| 31 | import imp |
| 32 | import re |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 33 | """ |
| 34 | - Construct tests variables |
| 35 | - GIT ( optional ) |
| 36 | - Checkout ONOS master branch |
| 37 | - Pull latest ONOS code |
| 38 | - Building ONOS ( optional ) |
| 39 | - Install ONOS package |
| 40 | - Build ONOS package |
| 41 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 42 | try: |
| 43 | from tests.dependencies.ONOSSetup import ONOSSetup |
| 44 | main.testSetUp = ONOSSetup() |
| 45 | except ImportError: |
| 46 | main.log.error( "ONOSSetup not found. exiting the test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 47 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 48 | main.testSetUp.envSetupDescription() |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 49 | stepResult = main.FALSE |
| 50 | |
| 51 | # Test variables |
| 52 | try: |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 53 | main.apps = main.params[ 'ENV' ][ 'cellApps' ] |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 54 | main.dependencyPath = main.testOnDirectory + \ |
| 55 | main.params[ 'DEPENDENCY' ][ 'path' ] |
| 56 | # main.topology = main.params[ 'DEPENDENCY' ][ 'topology' ] |
| 57 | main.scale = ( main.params[ 'SCALE' ][ 'size' ] ).split( "," ) |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 58 | wrapperFile1 = main.params[ 'DEPENDENCY' ][ 'wrapper1' ] |
| 59 | wrapperFile2 = main.params[ 'DEPENDENCY' ][ 'wrapper2' ] |
| 60 | wrapperFile3 = main.params[ 'DEPENDENCY' ][ 'wrapper3' ] |
| 61 | main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] ) |
| 62 | main.switchSleep = int( main.params[ 'SLEEP' ][ 'upSwitch' ] ) |
| 63 | main.checkTopoAttempts = int( main.params[ 'SLEEP' ][ 'topoAttempts' ] ) |
| 64 | main.numSwitch = int( main.params[ 'MININET' ][ 'switch' ] ) |
| 65 | |
| 66 | # Config file parameters |
| 67 | main.configDevicePort = main.params[ 'CONFIGURE' ][ 'cfgDevicePort' ] |
| 68 | main.configDriver = main.params[ 'CONFIGURE' ][ 'cfgDriver' ] |
| 69 | main.configApps = main.params[ 'CONFIGURE' ][ 'cfgApps' ] |
| 70 | main.configName = main.params[ 'CONFIGURE' ][ 'cfgName' ] |
| 71 | main.configPass = main.params[ 'CONFIGURE' ][ 'cfgPass' ] |
| 72 | main.configPort = main.params[ 'CONFIGURE' ][ 'cfgAppPort' ] |
Jon Hall | 0c3f46f | 2017-05-24 16:34:46 -0700 | [diff] [blame] | 73 | main.cycle = 0 # How many times FUNCintent has run through its tests |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 74 | |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 75 | main.hostsData = {} |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 76 | main.assertReturnString = '' # Assembled assert return string |
| 77 | |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 78 | # -- INIT SECTION, ONLY RUNS ONCE -- # |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 79 | |
| 80 | main.netconfFunction = imp.load_source( wrapperFile2, |
Jon Hall | 0c3f46f | 2017-05-24 16:34:46 -0700 | [diff] [blame] | 81 | main.dependencyPath + |
| 82 | wrapperFile2 + |
| 83 | ".py" ) |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 84 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 85 | stepResult = main.testSetUp.envSetup() |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 86 | # Uncomment out the following if a mininet topology is added |
| 87 | # copyResult1 = main.ONOSbench.scp( main.Mininet1, |
| 88 | # main.dependencyPath + |
| 89 | # main.topology, |
| 90 | # main.Mininet1.home + "custom/", |
| 91 | # direction="to" ) |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 92 | except Exception as e: |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 93 | main.testSetUp.envSetupException( e ) |
| 94 | main.testSetUp.evnSetupConclusion( stepResult ) |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 95 | |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 96 | def CASE2( self, main ): |
| 97 | """ |
| 98 | - Set up cell |
| 99 | - Create cell file |
| 100 | - Set cell file |
| 101 | - Verify cell file |
| 102 | - Kill ONOS process |
| 103 | - Uninstall ONOS cluster |
| 104 | - Verify ONOS start up |
| 105 | - Install ONOS cluster |
| 106 | - Connect to cli |
| 107 | """ |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 108 | main.testSetUp.ONOSSetUp( main.Mininet1, main.Cluster, True ) |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 109 | |
Jeremy Songster | 17147f2 | 2016-05-31 18:30:52 -0700 | [diff] [blame] | 110 | def CASE19( self, main ): |
| 111 | """ |
| 112 | Copy the karaf.log files after each testcase cycle |
| 113 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 114 | try: |
| 115 | from tests.dependencies.utils import Utils |
| 116 | except ImportError: |
| 117 | main.log.error( "Utils not found exiting the test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 118 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 119 | try: |
| 120 | main.Utils |
| 121 | except ( NameError, AttributeError ): |
| 122 | main.Utils = Utils() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 123 | main.Utils.copyKarafLog( "cycle" + str( main.cycle ) ) |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 124 | |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 125 | def CASE100( self, main ): |
| 126 | """ |
| 127 | Start NETCONF app and OFC-Server or make sure that they are already running |
| 128 | """ |
| 129 | assert main, "There is no main" |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 130 | |
| 131 | testResult = main.FALSE |
| 132 | main.testName = "Start up NETCONF app in all nodes" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 133 | main.case( main.testName + " Test - " + str( main.Cluster.numCtrls ) + |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 134 | " NODE(S)" ) |
| 135 | main.step( "Starting NETCONF app" ) |
| 136 | main.assertReturnString = "Assertion result for starting NETCONF app" |
| 137 | testResult = main.netconfFunction.startApp( main ) |
| 138 | |
| 139 | utilities.assert_equals( expect=main.TRUE, |
| 140 | actual=testResult, |
| 141 | onpass=main.assertReturnString, |
| 142 | onfail=main.assertReturnString ) |
| 143 | |
| 144 | main.step( "Starting OFC-Server" ) |
| 145 | main.assertReturnString = "Assertion result for starting OFC-Server" |
| 146 | testResult = main.netconfFunction.startOFC( main ) |
| 147 | |
| 148 | utilities.assert_equals( expect=main.TRUE, |
| 149 | actual=testResult, |
| 150 | onpass=main.assertReturnString, |
| 151 | onfail=main.assertReturnString ) |
| 152 | time.sleep( main.startUpSleep ) |
| 153 | |
| 154 | def CASE200( self, main ): |
| 155 | """ |
| 156 | Create or modify a Configuration file |
| 157 | -The file is built from information loaded from the .params file |
| 158 | """ |
| 159 | assert main, "There is no main" |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 160 | |
| 161 | main.testName = "Assemble the configuration" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 162 | main.case( main.testName + " Test - " + str( main.Cluster.numCtrls ) + |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 163 | " NODES(S)" ) |
| 164 | main.step( "Assembling configuration file" ) |
| 165 | main.assertReturnString = "Assertion result for assembling configuration file" |
| 166 | testResult = main.FALSE |
| 167 | testResult = main.netconfFunction.createConfig( main ) |
| 168 | |
| 169 | utilities.assert_equals( expect=main.TRUE, |
| 170 | actual=testResult, |
| 171 | onpass=main.assertReturnString, |
| 172 | onfail=main.assertReturnString ) |
| 173 | time.sleep( main.startUpSleep ) |
| 174 | |
| 175 | def CASE300( self, main ): |
| 176 | """ |
| 177 | Push a configuration and bring up a switch |
| 178 | """ |
| 179 | assert main, "There is no main" |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 180 | |
| 181 | main.testName = "Uploading the configuration" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 182 | main.case( main.testName + " Test - " + str( main.Cluster.numCtrls ) + |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 183 | " NODES(S)" ) |
Jon Hall | 0c3f46f | 2017-05-24 16:34:46 -0700 | [diff] [blame] | 184 | main.step( "Sending the configuration file" ) |
Jeremy | fc567ca | 2016-02-16 15:08:25 -0800 | [diff] [blame] | 185 | main.assertReturnString = "Assertion result for sending the configuration file" |
| 186 | testResult = main.FALSE |
| 187 | |
| 188 | testResult = main.netconfFunction.sendConfig( main ) |
| 189 | |
| 190 | utilities.assert_equals( expect=main.TRUE, |
| 191 | actual=testResult, |
| 192 | onpass=main.assertReturnString, |
| 193 | onfail=main.assertReturnString ) |
| 194 | |
| 195 | time.sleep( main.switchSleep ) |
| 196 | |
| 197 | main.step( "Confirming the device was configured" ) |
| 198 | main.assertReturnString = "Assertion result for confirming a configuration." |
| 199 | testResult = main.FALSE |
| 200 | |
| 201 | testResult = main.netconfFunction.devices( main ) |
| 202 | |
| 203 | utilities.assert_equals( expect=main.TRUE, |
| 204 | actual=testResult, |
| 205 | onpass=main.assertReturnString, |
| 206 | onfail=main.assertReturnString ) |
| 207 | |
| 208 | def CASE400( self, main ): |
| 209 | """ |
| 210 | Bring down a switch |
| 211 | This test case is not yet possible, but the functionality needed to |
| 212 | perform it is planned to be added |
| 213 | There is a message that is sent "Device () has closed session" |
| 214 | when the device disconnects from onos for some reason. |
| 215 | Because of the triggers for this message are not practical |
| 216 | to activate this will likely not be used to implement the test |
| 217 | case at this time |
| 218 | Possible ways to do this may include bringing down mininet then checking |
| 219 | ONOS to see if it was recongnized the device being disconnected |
| 220 | """ |