blob: 34845f2a3980149f88aa8ede5e5657cc26234221 [file] [log] [blame]
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -08001
2class SRRouting:
3 def __init__( self ):
4 self.default = ''
5
6 def CASE1( self, main ):
7 """
8 Tests routing between single-homed untagged host and single-homed
9 untagged host residing on the same leaf.
10 """
11
12 from tests.USECASE.SegmentRouting.SRRouting.dependencies.SRRoutingTest import SRRoutingTest
13
14 SRRoutingTest.runTest( main,
15 test_idx = 1,
16 onosNodes = 3,
17 dhcp=0,
18 routers=0,
19 ipv4=1,
20 ipv6=0,
21 h1="h1v4",
22 h2="h2v4",
23 description = "Routing test for untagged to\
24 untagged single homed hosts residing on the same\
25 leaf")
26