isis-topo1: check IPv6 linux route install

Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
This commit is contained in:
Rafael Zalamena 2017-12-20 10:16:39 -02:00 committed by Donald Sharp
parent d43cd0fd62
commit d4368260c3
6 changed files with 143 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{
"2001:db8:2:1::/64": {
"dev": "r1-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::3": {
"dev": "r1-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
}
}

View File

@ -0,0 +1,14 @@
{
"2001:db8:2:2::/64": {
"dev": "r2-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::4": {
"dev": "r2-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
}
}

View File

@ -0,0 +1,32 @@
{
"2001:db8:1:2::/64": {
"dev": "r3-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:2:2::/64": {
"dev": "r3-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::1": {
"dev": "r3-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::4": {
"dev": "r3-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::5": {
"dev": "r3-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
}
}

View File

@ -0,0 +1,32 @@
{
"2001:db8:1:1::/64": {
"dev": "r4-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:2:1::/64": {
"dev": "r4-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::2": {
"dev": "r4-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::3": {
"dev": "r4-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::5": {
"dev": "r4-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
}
}

View File

@ -0,0 +1,26 @@
{
"2001:db8:2:1::/64": {
"dev": "r5-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:2:2::/64": {
"dev": "r5-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::3": {
"dev": "r5-eth0",
"metric": "20",
"pref": "medium",
"proto": "187"
},
"2001:db8:f::4": {
"dev": "r5-eth1",
"metric": "20",
"pref": "medium",
"proto": "187"
}
}

View File

@ -230,6 +230,31 @@ def test_isis_route6_installation():
assert topotest.json_cmp(actual, expected) is None, assertmsg
def test_isis_linux_route6_installation():
"Check whether all expected routes are present and installed in the OS"
tgen = get_topogen()
# Don't run this test if we have any failure.
if tgen.routers_have_failure():
pytest.skip(tgen.errors)
logger.info('Checking routers for installed ISIS IPv6 routes in OS')
# Check for routes in `ip route`
for rname, router in tgen.routers().iteritems():
filename = '{0}/{1}/{1}_route6_linux.json'.format(CWD, rname)
expected = json.loads(open(filename, 'r').read())
actual = topotest.ip6_route(router)
# Older FRR versions install routes using different proto
if router.has_version('<', '3.1'):
for network, netoptions in expected.iteritems():
if 'proto' in netoptions and netoptions['proto'] == '187':
netoptions['proto'] = 'zebra'
assertmsg = "Router '{}' OS routes mismatch".format(rname)
assert topotest.json_cmp(actual, expected) is None, assertmsg
def test_memory_leak():
"Run the memory leak test and report results."
tgen = get_topogen()