| """ |
| Description: This test is to check onos set configuration and flows with ovsdb connection. |
| |
| List of test cases: |
| CASE1: Compile ONOS and push it to the test machines |
| CASE2: Test ovsdb connection and tearDown |
| CASE3: Test default br-int configuration and vxlan port |
| CASE4: Test default openflow configuration |
| CASE5: Test default flows |
| CASE6: Configure Network Subnet Port |
| CASE7: Test host go online and ping each other |
| CASE8: Clear ovs configuration and host configuration |
| zhanghaoyu7@huawei.com |
| """ |
| import os |
| |
| class FUNCovsdbtest: |
| |
| def __init__( self ): |
| self.default = '' |
| |
| def CASE1( self, main ): |
| """ |
| CASE1 is to compile ONOS and push it to the test machines |
| |
| Startup sequence: |
| cell <name> |
| onos-verify-cell |
| NOTE: temporary - onos-remove-raft-logs |
| onos-uninstall |
| start mininet |
| git pull |
| mvn clean install |
| onos-package |
| onos-install -f |
| onos-wait-for-start |
| start cli sessions |
| start ovsdb |
| start vtn apps |
| """ |
| import os |
| main.log.info( "ONOS Single node start " + |
| "ovsdb test - initialization" ) |
| main.case( "Setting up test environment" ) |
| main.caseExplanation = "Setup the test environment including " +\ |
| "installing ONOS, start ONOS." |
| |
| # load some variables from the params file |
| PULLCODE = False |
| if main.params[ 'GIT' ][ 'pull' ] == 'True': |
| PULLCODE = True |
| gitBranch = main.params[ 'GIT' ][ 'branch' ] |
| cellName = main.params[ 'ENV' ][ 'cellName' ] |
| ipList = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| OVSDB1Ip = os.getenv( main.params[ 'OVSDB' ][ 'ip1' ] ) |
| OVSDB2Ip = os.getenv( main.params[ 'OVSDB' ][ 'ip2' ] ) |
| |
| main.step( "Create cell file" ) |
| cellAppString = main.params[ 'ENV' ][ 'cellApps' ] |
| main.ONOSbench.createCellFile( main.ONOSbench.ip_address, cellName, |
| main.OVSDB1.ip_address, |
| cellAppString, ipList ) |
| |
| main.step( "Applying cell variable to environment" ) |
| cellResult = main.ONOSbench.setCell( cellName ) |
| verifyResult = main.ONOSbench.verifyCell() |
| |
| main.log.info( "Removing raft logs" ) |
| main.ONOSbench.onosRemoveRaftLogs() |
| |
| main.CLIs = [] |
| main.nodes = [] |
| main.numCtrls= 1 |
| |
| for i in range( 1, main.numCtrls + 1 ): |
| try: |
| main.CLIs.append( getattr( main, 'ONOScli' + str( i ) ) ) |
| main.nodes.append( getattr( main, 'ONOS' + str( i ) ) ) |
| ipList.append( main.nodes[ -1 ].ip_address ) |
| except AttributeError: |
| break |
| |
| main.log.info( "Uninstalling ONOS" ) |
| for node in main.nodes: |
| main.ONOSbench.onosUninstall( node.ip_address ) |
| |
| # Make sure ONOS process is not running |
| main.log.info( "Killing any ONOS processes" ) |
| killResults = main.TRUE |
| for node in main.nodes: |
| killed = main.ONOSbench.onosKill( node.ip_address ) |
| killResults = killResults and killed |
| |
| cleanInstallResult = main.TRUE |
| gitPullResult = main.TRUE |
| main.step( "Git checkout and pull" + gitBranch ) |
| if PULLCODE: |
| main.ONOSbench.gitCheckout( gitBranch ) |
| gitPullResult = main.ONOSbench.gitPull() |
| # values of 1 or 3 are good |
| utilities.assert_lesser( expect=0, actual=gitPullResult, |
| onpass="Git pull successful", |
| onfail="Git pull failed" ) |
| |
| main.ONOSbench.getVersion( report=True ) |
| |
| main.step( "Using mvn clean install" ) |
| cleanInstallResult = main.TRUE |
| if PULLCODE and gitPullResult == main.TRUE: |
| cleanInstallResult = main.ONOSbench.cleanInstall() |
| else: |
| main.log.warn( "Did not pull new code so skipping mvn" + |
| "clean install" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=cleanInstallResult, |
| onpass="MCI successful", |
| onfail="MCI failed" ) |
| |
| main.step( "Creating ONOS package" ) |
| packageResult = main.ONOSbench.onosPackage() |
| utilities.assert_equals( expect=main.TRUE, |
| actual=packageResult, |
| onpass="Successfully created ONOS package", |
| onfail="Failed to create ONOS package" ) |
| |
| main.step( "Installing ONOS package" ) |
| onosInstallResult = main.ONOSbench.onosInstall( |
| options="-f", node=main.nodes[0].ip_address ) |
| utilities.assert_equals( expect=main.TRUE, actual=onosInstallResult, |
| onpass="ONOS install successful", |
| onfail="ONOS install failed" ) |
| |
| main.step( "Checking if ONOS is up yet" ) |
| print main.nodes[0].ip_address |
| for i in range( 2 ): |
| onos1Isup = main.ONOSbench.isup( main.nodes[0].ip_address ) |
| if onos1Isup: |
| break |
| utilities.assert_equals( expect=main.TRUE, actual=onos1Isup, |
| onpass="ONOS startup successful", |
| onfail="ONOS startup failed" ) |
| main.log.step( "Starting ONOS CLI sessions" ) |
| print main.nodes[0].ip_address |
| cliResults = main.ONOScli1.startOnosCli( main.nodes[0].ip_address ) |
| utilities.assert_equals( expect=main.TRUE, actual=cliResults, |
| onpass="ONOS cli startup successful", |
| onfail="ONOS cli startup failed" ) |
| |
| main.step( "App Ids check" ) |
| appCheck = main.ONOScli1.appToIDCheck() |
| |
| if appCheck !=main.TRUE: |
| main.log.warn( main.CLIs[0].apps() ) |
| main.log.warn( main.CLIs[0].appIDs() ) |
| utilities.assert_equals( expect=main.TRUE, actual=appCheck, |
| onpass="App Ids seem to be correct", |
| onfail="Something is wrong with app Ids" ) |
| if cliResults == main.FALSE: |
| main.log.error( "Failed to start ONOS,stopping test" ) |
| main.cleanup() |
| main.exit() |
| |
| main.step( "Install onos-ovsdatabase" ) |
| installResults = main.ONOScli1.activateApp( "org.onosproject.ovsdb" ) |
| utilities.assert_equals( expect=main.TRUE, actual=installResults, |
| onpass="Install onos-ovsdatabase successful", |
| onfail="Install onos-ovsdatabase failed" ) |
| |
| main.step( "Install onos-app-vtnrsc" ) |
| installResults = main.ONOScli1.activateApp( "org.onosproject.vtnrsc" ) |
| utilities.assert_equals( expect=main.TRUE, actual=installResults, |
| onpass="Install onos-app-vtnrsc successful", |
| onfail="Install onos-app-vtnrsc failed" ) |
| |
| main.step( "Install onos-app-vtn" ) |
| installResults = main.ONOScli1.activateApp( "org.onosproject.vtn" ) |
| utilities.assert_equals( expect=main.TRUE, actual=installResults, |
| onpass="Install onos-app-vtn successful", |
| onfail="Install onos-app-vtn failed" ) |
| |
| main.step( "Install onos-app-vtnweb" ) |
| installResults = main.ONOScli1.activateApp( "org.onosproject.vtnweb" ) |
| utilities.assert_equals( expect=main.TRUE, actual=installResults, |
| onpass="Install onos-app-vtnweb successful", |
| onfail="Install onos-app-vtnweb failed" ) |
| |
| def CASE2( self, main ): |
| |
| """ |
| Test ovsdb connection and teardown |
| """ |
| import os,sys |
| import re |
| import time |
| |
| main.case( "Test ovsdb connection and teardown" ) |
| main.caseExplanation = "Test ovsdb connection create and delete" +\ |
| " over ovsdb node and onos node " |
| |
| ctrlip = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| ovsdbport = main.params[ 'CTRL' ][ 'ovsdbport' ] |
| delaytime = main.params[ 'TIMER' ][ 'delaytime' ] |
| |
| main.step( "Set ovsdb node manager" ) |
| assignResult = main.OVSDB1.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Set ovsdb node manager sucess", |
| onfail="Set ovsdb node manager failed" ) |
| |
| main.step( "Check ovsdb node manager is " + str( ctrlip ) ) |
| response = main.OVSDB1.getManager() |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check ovsdb node manager is " + str( response ) , |
| onfail="Check ovsdb node manager failed" ) |
| |
| main.step( "Delete ovsdb node manager" ) |
| deleteResult = main.OVSDB1.delManager( delaytime=delaytime ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node delete manager sucess", |
| onfail="ovsdb node delete manager failed" ) |
| |
| main.step( "Check ovsdb node delete manager " + str( ctrlip ) ) |
| response = main.OVSDB1.getManager() |
| if not re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check ovsdb node delete manager sucess", |
| onfail="Check ovsdb node delete manager failed" ) |
| |
| def CASE3( self, main ): |
| |
| """ |
| Test default br-int configuration and vxlan port |
| """ |
| import re |
| import time |
| import os,sys |
| |
| main.case( "Test default br-int configuration and vxlan port" ) |
| main.caseExplanation = "onos create default br-int bridge and" +\ |
| " vxlan port on the ovsdb node" |
| |
| ctrlip = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| ovsdbport = main.params[ 'CTRL' ][ 'ovsdbport' ] |
| delaytime = main.params[ 'TIMER' ][ 'delaytime' ] |
| |
| main.step( "ovsdb node 1 set ovs manager to " + str( ctrlip ) ) |
| assignResult = main.OVSDB1.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "ovsdb node 2 set ovs manager to " + str( ctrlip ) ) |
| assignResult = main.OVSDB2.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 2 set ovs manager to to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 2 set ovs manager to to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "Check ovsdb node 1 manager is " + str( ctrlip ) ) |
| response = main.OVSDB1.getManager() |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 manager is " + str( response ) , |
| onfail="ovsdb node 1 manager check failed" ) |
| |
| main.step( "Check ovsdb node 2 manager is " + str( ctrlip ) ) |
| response = main.OVSDB2.getManager() |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 2 manager is " + str( response ) , |
| onfail="ovsdb node 2 manager check failed" ) |
| |
| main.step( "Check default br-int bridge on ovsdb node " + str( OVSDB1Ip ) ) |
| response = main.OVSDB1.listBr() |
| if re.search( "br-int", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="onos add default bridge on the node 1 sucess", |
| onfail="onos add default bridge on the node 1 failed" ) |
| |
| main.step( "Check default br-int bridge on ovsdb node " + str( OVSDB2Ip ) ) |
| response = main.OVSDB2.listBr() |
| if re.search( "br-int", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="onos add default bridge on the node 2 sucess", |
| onfail="onos add default bridge on the node 2 failed" ) |
| |
| main.step( "Check default vxlan port on ovsdb node " + str( OVSDB1Ip ) ) |
| response = main.OVSDB1.listPorts( "br-int" ) |
| if re.search( "vxlan", response ) and re.search( str( OVSDB2Ip ), response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="onos add default vxlan port on the node 1 sucess", |
| onfail="onos add default vxlan port on the node 1 failed" ) |
| |
| main.step( "Check default vxlan port on ovsdb node " + str( OVSDB2Ip ) ) |
| response = main.OVSDB2.listPorts( "br-int" ) |
| if re.search( "vxlan", response ) and re.search( str( OVSDB1Ip ), response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="onos add default vxlan port on the node 2 sucess", |
| onfail="onos add default vxlan port on the node 2 failed" ) |
| |
| def CASE4( self, main ): |
| |
| """ |
| Test default openflow configuration |
| """ |
| import re |
| import time |
| import os,sys |
| |
| ctrlip = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| ovsdbport = main.params[ 'CTRL' ][ 'ovsdbport' ] |
| delaytime = main.params[ 'TIMER' ][ 'delaytime' ] |
| |
| main.step( "ovsdb node 1 set ovs manager to " + str( ctrlip ) ) |
| assignResult = main.OVSDB1.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "ovsdb node 2 set ovs manager to " + str( ctrlip ) ) |
| assignResult = main.OVSDB2.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 2 set ovs manager to to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 2 set ovs manager to to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "Check ovsdb node 1 manager is " + str( ctrlip ) ) |
| response = main.OVSDB1.getManager() |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 manager is " + str( response ) , |
| onfail="ovsdb node 1 manager check failed\n" +\ |
| str( main.OVSDB1.show() ) ) |
| |
| main.step( "Check ovsdb node 2 manager is " + str( ctrlip ) ) |
| response = main.OVSDB2.getManager() |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 2 manager is " + str( response ) , |
| onfail="ovsdb node 2 manager check failed\n" +\ |
| str( main.OVSDB2.show() ) ) |
| |
| main.step( "Check ovsdb node 1 bridge br-int controller set to " + str( ctrlip ) ) |
| response = main.OVSDB1.getController( "br-int" ) |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check ovsdb node 1 bridge br-int controller set to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="Check ovsdb node 1 bridge br-int controller set to " +\ |
| str( ctrlip ) + " failed\n" + str( main.OVSDB1.show() ) ) |
| |
| main.step( "Check ovsdb node 2 bridge br-int controller set to " + str( ctrlip ) ) |
| response = main.OVSDB2.getController( "br-int" ) |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check ovsdb node 2 bridge br-int controller set to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="Check ovsdb node 2 bridge br-int controller set to " +\ |
| str( ctrlip ) + " failed\n" + str( main.OVSDB2.show()) ) |
| |
| main.step( "Check onoscli devices have ovs " + str( OVSDB1Ip ) ) |
| response = main.ONOScli1.devices() |
| if re.search( OVSDB1Ip, response ) and not re.search( "false", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check onoscli devices have ovs " + str( OVSDB1Ip ) + " sucess", |
| onfail="Check onoscli devices have ovs " + str( OVSDB1Ip ) + " failed" ) |
| |
| main.step( "Check onoscli devices have ovs " + str( OVSDB2Ip ) ) |
| response = main.ONOScli1.devices() |
| if re.search( OVSDB2Ip, response ) and not re.search( "false", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check onoscli devices have ovs " + str( OVSDB2Ip ) + " sucess", |
| onfail="Check onoscli devices have ovs " + str( OVSDB2Ip ) + " failed" ) |
| |
| def CASE5( self, main ): |
| |
| """ |
| Test default flows |
| """ |
| import re |
| import time |
| import os,sys |
| |
| ctrlip = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| ovsdbport = main.params[ 'CTRL' ][ 'ovsdbport' ] |
| delaytime = main.params[ 'TIMER' ][ 'delaytime' ] |
| |
| main.step( "ovsdb node 1 set ovs manager to onos" ) |
| assignResult = main.OVSDB1.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "Check ovsdb node 1 manager is " + str( ctrlip ) ) |
| response = main.OVSDB1.getManager() |
| if re.search( ctrlip, response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 manager is " + str( response ) , |
| onfail="ovsdb node 1 manager check failed" ) |
| |
| main.step( "Check ovsdb node 1 bridge br-int default flows on " + str( OVSDB1Ip ) ) |
| response = main.OVSDB1.dumpFlows( sw="br-int", protocols="OpenFlow13" ) |
| if re.search( "actions=CONTROLLER", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Successfully set default flows " + str( ctrlip ) , |
| onfail="Failed to set default flows " + str( ctrlip ) ) |
| |
| def CASE6( self, main ): |
| """ |
| Configure Network Subnet Port |
| """ |
| import os |
| |
| try: |
| from tests.FUNC.FUNCovsdbtest.dependencies.Nbdata import NetworkData |
| from tests.FUNC.FUNCovsdbtest.dependencies.Nbdata import SubnetData |
| from tests.FUNC.FUNCovsdbtest.dependencies.Nbdata import VirtualPortData |
| except ImportError: |
| main.log.exception( "Something wrong with import file or code error." ) |
| main.log.info( "Import Error, please check!" ) |
| main.cleanup() |
| main.exit() |
| |
| main.log.info( "Configure Network Subnet Port Start" ) |
| main.case( "Configure Network Subnet Port" ) |
| main.caseExplanation = "Configure Network Subnet Port " +\ |
| "Verify post is OK" |
| |
| ctrlip = os.getenv( main.params['CTRL']['ip1'] ) |
| httpport = main.params['HTTP']['port'] |
| path = main.params['HTTP']['path'] |
| |
| main.step( "Generate Post Data" ) |
| network = NetworkData() |
| network.id = '030d6d3d-fa36-45bf-ae2b-4f4bc43a54dc' |
| network.tenant_id = '26cd996094344a0598b0a1af1d525cdc' |
| subnet = SubnetData() |
| subnet.id = "e44bd655-e22c-4aeb-b1e9-ea1606875178" |
| subnet.tenant_id = network.tenant_id |
| subnet.network_id = network.id |
| subnet.start = "10.0.0.1" |
| subnet.end = "10.0.0.254" |
| subnet.cidr = "10.0.0.0/24" |
| port1 = VirtualPortData() |
| port1.id = "00000000-0000-0000-0000-000000000001" |
| port1.subnet_id = subnet.id |
| port1.tenant_id = network.tenant_id |
| port1.network_id = network.id |
| port1.macAddress = "00:00:00:00:00:01" |
| port1.ip_address = "10.0.0.1" |
| port2 = VirtualPortData() |
| port2.id = "00000000-0000-0000-0000-000000000002" |
| port2.subnet_id = subnet.id |
| port2.tenant_id = network.tenant_id |
| port2.network_id = network.id |
| port2.macAddress = "00:00:00:00:00:02" |
| port2.ip_address = "10.0.0.2" |
| |
| networkpostdata = network.DictoJson() |
| subnetpostdata = subnet.DictoJson() |
| port1postdata = port1.DictoJson() |
| port2postdata = port2.DictoJson() |
| |
| main.step( "Post Network Data via HTTP(Post port need post network)" ) |
| Poststatus, result = main.ONOSrest.send( ctrlip, httpport, '', path + 'networks/', |
| 'POST', None, networkpostdata ) |
| utilities.assert_equals( |
| expect='200', |
| actual=Poststatus, |
| onpass="Post Network Success", |
| onfail="Post Network Failed " + str( Poststatus ) + "," + str( result ) ) |
| |
| main.step( "Post Subnet Data via HTTP(Post port need post subnet)" ) |
| Poststatus, result = main.ONOSrest.send( ctrlip, httpport, '', path + 'subnets/', |
| 'POST', None, subnetpostdata ) |
| utilities.assert_equals( |
| expect='202', |
| actual=Poststatus, |
| onpass="Post Subnet Success", |
| onfail="Post Subnet Failed " + str( Poststatus ) + "," + str( result ) ) |
| |
| main.step( "Post Port1 Data via HTTP" ) |
| Poststatus, result = main.ONOSrest.send( ctrlip, httpport, '', path + 'ports/', |
| 'POST', None, port1postdata ) |
| utilities.assert_equals( |
| expect='200', |
| actual=Poststatus, |
| onpass="Post Port Success", |
| onfail="Post Port Failed " + str( Poststatus ) + "," + str( result ) ) |
| |
| main.step( "Post Port2 Data via HTTP" ) |
| Poststatus, result = main.ONOSrest.send( ctrlip, httpport, '', path + 'ports/', |
| 'POST', None, port2postdata ) |
| utilities.assert_equals( |
| expect='200', |
| actual=Poststatus, |
| onpass="Post Port Success", |
| onfail="Post Port Failed " + str( Poststatus ) + "," + str( result ) ) |
| |
| def CASE7( self, main ): |
| |
| """ |
| Test host go online and ping each other |
| """ |
| import re |
| import time |
| import os,sys |
| |
| ctrlip = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| ovsdbport = main.params[ 'CTRL' ][ 'ovsdbport' ] |
| delaytime = main.params[ 'TIMER' ][ 'delaytime' ] |
| |
| main.step( "ovsdb node 1 set ovs manager to " + str( ctrlip ) ) |
| assignResult = main.OVSDB1.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 1 set ovs manager to to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "ovsdb node 2 set ovs manager to " + str( ctrlip ) ) |
| assignResult = main.OVSDB2.setManager( ip=ctrlip, port=ovsdbport, delaytime=delaytime ) |
| stepResult = assignResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 2 set ovs manager to " +\ |
| str( ctrlip ) + " sucess", |
| onfail="ovsdb node 2 set ovs manager to " +\ |
| str( ctrlip ) + " failed" ) |
| |
| main.step( "Create host1 on node 1 " + str( OVSDB1Ip ) ) |
| stepResult = main.OVSDB1.createHost( hostname="host1" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Create host1 on node 1 " + str( OVSDB1Ip ) + " sucess", |
| onfail="Create host1 on node 1 " + str( OVSDB1Ip ) + " failed" ) |
| |
| main.step( "Create host2 on node 2 " + str( OVSDB2Ip ) ) |
| stepResult = main.OVSDB2.createHost( hostname="host2" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Create host2 on node 2 " + str( OVSDB2Ip ) + " sucess", |
| onfail="Create host2 on node 2 " + str( OVSDB2Ip ) + " failed" ) |
| |
| main.step( "Create port on host1 on the node " + str ( OVSDB1Ip ) ) |
| stepResult = main.OVSDB1.createHostport( hostname="host1", hostport="host1-eth0", hostportmac="000000000001" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Create port on host1 on the node " + str( OVSDB1Ip ) + " sucess", |
| onfail="Create port on host1 on the node " + str( OVSDB1Ip ) + " failed" ) |
| |
| main.step( "Create port on host2 on the node " + str ( OVSDB2Ip ) ) |
| stepResult = main.OVSDB2.createHostport( hostname="host2", hostport="host2-eth0", hostportmac="000000000002" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Create port on host1 on the node " + str( OVSDB2Ip ) + " sucess", |
| onfail="Create port on host1 on the node " + str( OVSDB2Ip ) + " failed" ) |
| |
| main.step( "Add port to ovs br-int and host go-online on the node " + str ( OVSDB1Ip ) ) |
| stepResult = main.OVSDB1.addPortToOvs( ovsname="br-int", ifaceId="00000000-0000-0000-0000-000000000001", |
| attachedMac="00:00:00:00:00:01", vmuuid="10000000-0000-0000-0000-000000000001" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Add port to ovs br-int and host go-online on the node " +\ |
| str( OVSDB1Ip ) + " sucess", |
| onfail="Add port to ovs br-int and host go-online on the node " +\ |
| str( OVSDB1Ip ) + " failed" ) |
| |
| main.step( "Add port to ovs br-int and host go-online on the node " + str ( OVSDB2Ip ) ) |
| stepResult = main.OVSDB2.addPortToOvs( ovsname="br-int", ifaceId="00000000-0000-0000-0000-000000000002", |
| attachedMac="00:00:00:00:00:02", vmuuid="10000000-0000-0000-0000-000000000001" ) |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Add port to ovs br-int and host go-online on the node " +\ |
| str( OVSDB2Ip ) + " sucess", |
| onfail="Add port to ovs br-int and host go-online on the node " +\ |
| str( OVSDB2Ip ) + " failed" ) |
| |
| main.step( "Check onos set host flows on the node " + str( OVSDB1Ip ) ) |
| response = main.OVSDB1.dumpFlows( sw="br-int", protocols="OpenFlow13" ) |
| if re.search( "00:00:00:00:00:01", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check onos set host flows on the node " +\ |
| str( OVSDB1Ip ) + " sucess", |
| onfail="Check onos set host flows on the node " +\ |
| str( OVSDB1Ip ) + " failed" ) |
| |
| main.step( "Check onos set host flows on the node " + str( OVSDB2Ip ) ) |
| response = main.OVSDB2.dumpFlows( sw="br-int", protocols="OpenFlow13" ) |
| if re.search( "00:00:00:00:00:02", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check onos set host flows on the node " +\ |
| str( OVSDB2Ip ) + " sucess", |
| onfail="Check onos set host flows on the node " +\ |
| str( OVSDB2Ip ) + " failed" ) |
| |
| main.step( "Check hosts can ping each other" ) |
| main.OVSDB1.setHostportIp( hostname="host1", hostport1="host1-eth0", ip="10.0.0.1" ) |
| main.OVSDB2.setHostportIp( hostname="host2", hostport1="host2-eth0", ip="10.0.0.2" ) |
| pingResult1 = main.OVSDB1.hostPing( src="10.0.0.1", hostname="host1", target="10.0.0.2" ) |
| pingResult2 = main.OVSDB2.hostPing( src="10.0.0.2", hostname="host2", target="10.0.0.1" ) |
| stepResult = pingResult1 and pingResult2 |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Successfully host go online and ping each other,controller is " +\ |
| str( ctrlip ), |
| onfail="Failed to host go online and ping each other,controller is " +\ |
| str( ctrlip ) ) |
| |
| def CASE8( self, main ): |
| |
| """ |
| Clear ovs configuration and host configuration |
| """ |
| import re |
| import time |
| import os,sys |
| |
| ctrlip = os.getenv( main.params[ 'CTRL' ][ 'ip1' ] ) |
| OVSDB1Ip = os.getenv( main.params[ 'OVSDB' ][ 'ip1' ] ) |
| OVSDB2Ip = os.getenv( main.params[ 'OVSDB' ][ 'ip2' ] ) |
| delaytime = main.params[ 'TIMER' ][ 'delaytime' ] |
| |
| main.step( "Delete ovsdb node 1 manager" ) |
| deleteResult = main.OVSDB1.delManager( delaytime=delaytime ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 1 delete manager sucess", |
| onfail="ovsdb node 1 delete manager failed" ) |
| |
| main.step( "Delete ovsdb node 2 manager" ) |
| deleteResult = main.OVSDB2.delManager( delaytime=delaytime ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="ovsdb node 2 delete manager sucess", |
| onfail="ovsdb node 2 delete manager failed" ) |
| |
| main.step( "Delete ovsdb node 1 bridge br-int" ) |
| deleteResult = main.OVSDB1.delBr( sw="br-int" ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Delete ovsdb node 1 bridge br-int sucess", |
| onfail="Delete ovsdb node 1 bridge br-int failed" ) |
| |
| main.step( "Delete ovsdb node 2 bridge br-int" ) |
| deleteResult = main.OVSDB2.delBr( sw="br-int" ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Delete ovsdb node 2 bridge br-int sucess", |
| onfail="Delete ovsdb node 2 bridge br-int failed" ) |
| |
| main.step( "Delete ip netns host on the ovsdb node 1" ) |
| deleteResult = main.OVSDB1.delHost( hostname="host1" ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Delete ip netns host on the ovsdb node 1 sucess", |
| onfail="Delete ip netns host on the ovsdb node 1 failed" ) |
| |
| main.step( "Delete ip netns host on the ovsdb node 2" ) |
| deleteResult = main.OVSDB2.delHost( hostname="host2" ) |
| stepResult = deleteResult |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Delete ip netns host on the ovsdb node 2 sucess", |
| onfail="Delete ip netns host on the ovsdb node 2 failed" ) |
| |
| main.step( "Check onoscli devices openflow session is false " + str( OVSDB1Ip ) ) |
| response = main.ONOScli1.devices() |
| if re.search( OVSDB1Ip, response ) and not re.search( "true", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check openflow session is false " + str( OVSDB1Ip ) + " sucess", |
| onfail="Check openflow session is false " + str( OVSDB1Ip ) + " failed" ) |
| |
| main.step( "Check onoscli devices have ovs " + str( OVSDB2Ip ) ) |
| response = main.ONOScli1.devices() |
| if re.search( OVSDB2Ip, response ) and not re.search( "true", response ): |
| stepResult = main.TRUE |
| else: |
| stepResult = main.FALSE |
| utilities.assert_equals( expect=main.TRUE, |
| actual=stepResult, |
| onpass="Check openflow session is false " + str( OVSDB2Ip ) + " sucess", |
| onfail="Check openflow session is false " + str( OVSDB2Ip ) + " failed" ) |