pingping-lin | 4f80c49 | 2015-09-15 14:34:42 -0700 | [diff] [blame] | 1 | |
| 2 | def checkRouteNum( main, routeNumExpected ): |
| 3 | main.step( "Check routes installed" ) |
| 4 | main.log.info( "Route number expected:" ) |
| 5 | main.log.info( routeNumExpected ) |
| 6 | main.log.info( "Route number from ONOS CLI:" ) |
| 7 | |
| 8 | routeNumActual = main.ONOScli.ipv4RouteNumber() |
| 9 | main.log.info( routeNumActual ) |
| 10 | utilities.assertEquals( \ |
| 11 | expect = routeNumExpected, actual = routeNumActual, |
| 12 | onpass = "***Route number is correct!***", |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 13 | onfail = "***Route number is wrong!***" ) |
pingping-lin | 4f80c49 | 2015-09-15 14:34:42 -0700 | [diff] [blame] | 14 | |
| 15 | def checkM2SintentNum( main, intentNumExpected ): |
| 16 | main.step( "Check M2S intents installed" ) |
| 17 | main.log.info( "Intent number expected:" ) |
| 18 | main.log.info( intentNumExpected ) |
| 19 | main.log.info( "Intent number from ONOS CLI:" ) |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 20 | jsonResult = main.ONOScli.intents( jsonFormat = True, summary = True, |
| 21 | TYPE = "multiPointToSinglePoint" ) |
| 22 | intentNumActual = jsonResult['installed'] |
pingping-lin | 4f80c49 | 2015-09-15 14:34:42 -0700 | [diff] [blame] | 23 | main.log.info( intentNumActual ) |
| 24 | utilities.assertEquals( \ |
| 25 | expect = intentNumExpected, actual = intentNumActual, |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 26 | onpass = "***M2S intent number is correct!***", |
| 27 | onfail = "***M2S intent number is wrong!***" ) |
pingping-lin | 4f80c49 | 2015-09-15 14:34:42 -0700 | [diff] [blame] | 28 | |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 29 | def checkP2PintentNum( main, intentNumExpected ): |
| 30 | main.step( "Check P2P intents installed" ) |
| 31 | main.log.info( "Intent number expected:" ) |
| 32 | main.log.info( intentNumExpected ) |
| 33 | main.log.info( "Intent number from ONOS CLI:" ) |
| 34 | jsonResult = main.ONOScli.intents( jsonFormat = True, summary = True, |
| 35 | TYPE = "pointToPoint" ) |
| 36 | intentNumActual = jsonResult['installed'] |
| 37 | main.log.info( intentNumActual ) |
| 38 | utilities.assertEquals( \ |
| 39 | expect = intentNumExpected, actual = intentNumActual, |
| 40 | onpass = "***P2P intent number is correct!***", |
| 41 | onfail = "***P2P intent number is wrong!***" ) |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 42 | |
| 43 | def checkFlowNum( main, switch, flowNumExpected ): |
| 44 | main.step( "Check flow entry number in " + switch ) |
| 45 | main.log.info( "Flow number expected:" ) |
| 46 | main.log.info( flowNumExpected ) |
| 47 | main.log.info( "Flow number actual:" ) |
| 48 | flowNumActual = main.Mininet.getSwitchFlowCount( switch ) |
| 49 | main.log.info( flowNumActual ) |
| 50 | utilities.assertEquals( \ |
| 51 | expect = flowNumExpected, actual = flowNumActual, |
| 52 | onpass = "***Flow number in " + switch + " is correct!***", |
| 53 | onfail = "***Flow number in " + switch + " is wrong!***" ) |
| 54 | |