577 lines
25 KiB
Python
577 lines
25 KiB
Python
# Copyright (c) 2023-2025 Arista Networks, Inc.
|
|
# Use of this source code is governed by the Apache License 2.0
|
|
# that can be found in the LICENSE file.
|
|
"""Tests for anta.tests.routing.generic.py."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
import pytest
|
|
from pydantic import ValidationError
|
|
|
|
from anta.models import AntaTest
|
|
from anta.result_manager.models import AntaTestStatus
|
|
from anta.tests.routing.generic import (
|
|
VerifyIPv4RouteNextHops,
|
|
VerifyIPv4RouteType,
|
|
VerifyRoutingProtocolModel,
|
|
VerifyRoutingStatus,
|
|
VerifyRoutingTableEntry,
|
|
VerifyRoutingTableSize,
|
|
)
|
|
from tests.units.anta_tests import test
|
|
|
|
if TYPE_CHECKING:
|
|
from tests.units.anta_tests import AntaUnitTestDataDict
|
|
|
|
DATA: AntaUnitTestDataDict = {
|
|
(VerifyRoutingProtocolModel, "success"): {
|
|
"eos_data": [{"vrfs": {"default": {}}, "protoModelStatus": {"configuredProtoModel": "multi-agent", "operatingProtoModel": "multi-agent"}}],
|
|
"inputs": {"model": "multi-agent"},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyRoutingProtocolModel, "failure-wrong-configured-model"): {
|
|
"eos_data": [{"vrfs": {"default": {}}, "protoModelStatus": {"configuredProtoModel": "ribd", "operatingProtoModel": "ribd"}}],
|
|
"inputs": {"model": "multi-agent"},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["Routing model is misconfigured - Expected: multi-agent Actual: ribd"]},
|
|
},
|
|
(VerifyRoutingProtocolModel, "failure-mismatch-operating-model"): {
|
|
"eos_data": [{"vrfs": {"default": {}}, "protoModelStatus": {"configuredProtoModel": "multi-agent", "operatingProtoModel": "ribd"}}],
|
|
"inputs": {"model": "multi-agent"},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["Routing model is misconfigured - Expected: multi-agent Actual: ribd"]},
|
|
},
|
|
(VerifyRoutingTableSize, "success"): {
|
|
"eos_data": [{"vrfs": {"default": {"maskLen": {"8": 2}, "totalRoutes": 123}}}],
|
|
"inputs": {"minimum": 42, "maximum": 666},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyRoutingTableSize, "failure"): {
|
|
"eos_data": [{"vrfs": {"default": {"maskLen": {"8": 2}, "totalRoutes": 1000}}}],
|
|
"inputs": {"minimum": 42, "maximum": 666},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["Routing table routes are outside the routes range - Expected: 42 <= to >= 666 Actual: 1000"]},
|
|
},
|
|
(VerifyRoutingTableEntry, "success"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.1/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.4", "interface": "Ethernet1"}],
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.2/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.6", "interface": "Ethernet2"}],
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
],
|
|
"inputs": {"vrf": "default", "routes": ["10.1.0.1", "10.1.0.2"]},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyRoutingTableEntry, "success-collect-all"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.1/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.4", "interface": "Ethernet1"}],
|
|
},
|
|
"10.1.0.2/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.6", "interface": "Ethernet2"}],
|
|
},
|
|
},
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"inputs": {"vrf": "default", "routes": ["10.1.0.1", "10.1.0.2"], "collect": "all"},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyRoutingTableEntry, "failure-missing-route"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {},
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.2/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.6", "interface": "Ethernet2"}],
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {},
|
|
}
|
|
}
|
|
},
|
|
],
|
|
"inputs": {"vrf": "default", "routes": ["10.1.0.1", "10.1.0.2", "10.1.0.3"]},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["The following route(s) are missing from the routing table of VRF default: 10.1.0.1, 10.1.0.3"]},
|
|
},
|
|
(VerifyRoutingTableEntry, "failure-wrong-route"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.1/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.4", "interface": "Ethernet1"}],
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.55/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.6", "interface": "Ethernet2"}],
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
],
|
|
"inputs": {"vrf": "default", "routes": ["10.1.0.1", "10.1.0.2"]},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["The following route(s) are missing from the routing table of VRF default: 10.1.0.2"]},
|
|
},
|
|
(VerifyRoutingTableEntry, "failure-wrong-route-collect-all"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routingDisabled": False,
|
|
"allRoutesProgrammedHardware": True,
|
|
"allRoutesProgrammedKernel": True,
|
|
"defaultRouteState": "notSet",
|
|
"routes": {
|
|
"10.1.0.1/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.4", "interface": "Ethernet1"}],
|
|
},
|
|
"10.1.0.55/32": {
|
|
"hardwareProgrammed": True,
|
|
"routeType": "eBGP",
|
|
"routeLeaked": False,
|
|
"kernelProgrammed": True,
|
|
"routeAction": "forward",
|
|
"directlyConnected": False,
|
|
"preference": 20,
|
|
"metric": 0,
|
|
"vias": [{"nexthopAddr": "10.1.255.6", "interface": "Ethernet2"}],
|
|
},
|
|
},
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"inputs": {"vrf": "default", "routes": ["10.1.0.1", "10.1.0.2"], "collect": "all"},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["The following route(s) are missing from the routing table of VRF default: 10.1.0.2"]},
|
|
},
|
|
(VerifyIPv4RouteType, "success-valid-route-type"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {"routes": {"10.10.0.1/32": {"routeType": "eBGP"}, "10.100.0.12/31": {"routeType": "connected"}}},
|
|
"MGMT": {"routes": {"10.100.1.5/32": {"routeType": "iBGP"}}},
|
|
}
|
|
}
|
|
],
|
|
"inputs": {
|
|
"routes_entries": [
|
|
{"vrf": "default", "prefix": "10.10.0.1/32", "route_type": "eBGP"},
|
|
{"vrf": "default", "prefix": "10.100.0.12/31", "route_type": "connected"},
|
|
{"vrf": "MGMT", "prefix": "10.100.1.5/32", "route_type": "iBGP"},
|
|
]
|
|
},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyIPv4RouteType, "failure-route-not-found"): {
|
|
"eos_data": [{"vrfs": {"default": {"routes": {}}}}],
|
|
"inputs": {"routes_entries": [{"vrf": "default", "prefix": "10.10.0.1/32", "route_type": "eBGP"}]},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["Prefix: 10.10.0.1/32 VRF: default - Route not found"]},
|
|
},
|
|
(VerifyIPv4RouteType, "failure-invalid-route-type"): {
|
|
"eos_data": [{"vrfs": {"default": {"routes": {"10.10.0.1/32": {"routeType": "eBGP"}}}}}],
|
|
"inputs": {"routes_entries": [{"vrf": "default", "prefix": "10.10.0.1/32", "route_type": "iBGP"}]},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["Prefix: 10.10.0.1/32 VRF: default - Incorrect route type - Expected: iBGP Actual: eBGP"]},
|
|
},
|
|
(VerifyIPv4RouteType, "failure-vrf-not-configured"): {
|
|
"eos_data": [{"vrfs": {}}],
|
|
"inputs": {"routes_entries": [{"vrf": "default", "prefix": "10.10.0.1/32", "route_type": "eBGP"}]},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["Prefix: 10.10.0.1/32 VRF: default - VRF not configured"]},
|
|
},
|
|
(VerifyIPv4RouteNextHops, "success"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routes": {
|
|
"10.10.0.1/32": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
"MGMT": {
|
|
"routes": {
|
|
"10.100.0.128/31": {
|
|
"vias": [
|
|
{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"},
|
|
{"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"},
|
|
{"nexthopAddr": "10.100.0.101", "interface": "Ethernet4"},
|
|
]
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
],
|
|
"inputs": {
|
|
"route_entries": [
|
|
{"prefix": "10.10.0.1/32", "vrf": "default", "nexthops": ["10.100.0.10", "10.100.0.8"]},
|
|
{"prefix": "10.100.0.128/31", "vrf": "MGMT", "nexthops": ["10.100.0.8", "10.100.0.10"]},
|
|
]
|
|
},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyIPv4RouteNextHops, "success-strict-true"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routes": {
|
|
"10.10.0.1/32": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
"MGMT": {
|
|
"routes": {
|
|
"10.100.0.128/31": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
],
|
|
"inputs": {
|
|
"route_entries": [
|
|
{"prefix": "10.10.0.1/32", "vrf": "default", "strict": True, "nexthops": ["10.100.0.8", "10.100.0.10"]},
|
|
{"prefix": "10.100.0.128/31", "vrf": "MGMT", "strict": True, "nexthops": ["10.100.0.8", "10.100.0.10"]},
|
|
]
|
|
},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyIPv4RouteNextHops, "failure-not-configured"): {
|
|
"eos_data": [{"vrfs": {"default": {"routes": {}}, "MGMT": {"routes": {}}}}],
|
|
"inputs": {
|
|
"route_entries": [
|
|
{"prefix": "10.10.0.1/32", "vrf": "default", "strict": True, "nexthops": ["10.100.0.8", "10.100.0.10"]},
|
|
{"prefix": "10.100.0.128/31", "vrf": "MGMT", "strict": True, "nexthops": ["10.100.0.8", "10.100.0.10"]},
|
|
]
|
|
},
|
|
"expected": {
|
|
"result": AntaTestStatus.FAILURE,
|
|
"messages": ["Prefix: 10.10.0.1/32 VRF: default - prefix not found", "Prefix: 10.100.0.128/31 VRF: MGMT - prefix not found"],
|
|
},
|
|
},
|
|
(VerifyIPv4RouteNextHops, "failure-strict-failed"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routes": {
|
|
"10.10.0.1/32": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
"MGMT": {
|
|
"routes": {
|
|
"10.100.0.128/31": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.11", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
],
|
|
"inputs": {
|
|
"route_entries": [
|
|
{"prefix": "10.10.0.1/32", "vrf": "default", "strict": True, "nexthops": ["10.100.0.8", "10.100.0.10", "10.100.0.11"]},
|
|
{"prefix": "10.100.0.128/31", "vrf": "MGMT", "strict": True, "nexthops": ["10.100.0.8", "10.100.0.10"]},
|
|
]
|
|
},
|
|
"expected": {
|
|
"result": AntaTestStatus.FAILURE,
|
|
"messages": [
|
|
"Prefix: 10.10.0.1/32 VRF: default - List of next-hops not matching - "
|
|
"Expected: 10.100.0.10, 10.100.0.11, 10.100.0.8 Actual: 10.100.0.10, 10.100.0.8",
|
|
"Prefix: 10.100.0.128/31 VRF: MGMT - List of next-hops not matching - Expected: 10.100.0.10, 10.100.0.8 Actual: 10.100.0.11, 10.100.0.8",
|
|
],
|
|
},
|
|
},
|
|
(VerifyIPv4RouteNextHops, "failure"): {
|
|
"eos_data": [
|
|
{
|
|
"vrfs": {
|
|
"default": {
|
|
"routes": {
|
|
"10.10.0.1/32": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
"MGMT": {
|
|
"routes": {
|
|
"10.100.0.128/31": {
|
|
"vias": [{"nexthopAddr": "10.100.0.8", "interface": "Ethernet1"}, {"nexthopAddr": "10.100.0.10", "interface": "Ethernet2"}]
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
],
|
|
"inputs": {
|
|
"route_entries": [
|
|
{"prefix": "10.10.0.1/32", "vrf": "default", "nexthops": ["10.100.0.8", "10.100.0.10", "10.100.0.11"]},
|
|
{"prefix": "10.100.0.128/31", "vrf": "MGMT", "nexthops": ["10.100.0.8", "10.100.0.10", "10.100.0.11"]},
|
|
]
|
|
},
|
|
"expected": {
|
|
"result": AntaTestStatus.FAILURE,
|
|
"messages": [
|
|
"Prefix: 10.10.0.1/32 VRF: default Nexthop: 10.100.0.11 - Route not found",
|
|
"Prefix: 10.100.0.128/31 VRF: MGMT Nexthop: 10.100.0.11 - Route not found",
|
|
],
|
|
},
|
|
},
|
|
(VerifyRoutingStatus, "success-routing-enablement"): {
|
|
"eos_data": [
|
|
{
|
|
"v4RoutingEnabled": True,
|
|
"v6RoutingEnabled": True,
|
|
"vrrpIntfs": 0,
|
|
"v6IntfForwarding": True,
|
|
"multicastRouting": {"ipMulticastEnabled": False, "ip6MulticastEnabled": False},
|
|
"v6EcmpInfo": {"v6EcmpRouteSupport": True},
|
|
}
|
|
],
|
|
"inputs": {"ipv4_unicast": True, "ipv6_unicast": True, "ipv6_interfaces": True},
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyRoutingStatus, "success-routing-disable-all"): {
|
|
"eos_data": [
|
|
{
|
|
"v4RoutingEnabled": False,
|
|
"v6RoutingEnabled": False,
|
|
"vrrpIntfs": 0,
|
|
"multicastRouting": {"ipMulticastEnabled": False, "ip6MulticastEnabled": False},
|
|
"v6EcmpInfo": {"v6EcmpRouteSupport": False},
|
|
}
|
|
],
|
|
"expected": {"result": AntaTestStatus.SUCCESS},
|
|
},
|
|
(VerifyRoutingStatus, "failure-ip-multicastrouting-enablement"): {
|
|
"eos_data": [
|
|
{
|
|
"v4RoutingEnabled": False,
|
|
"v6RoutingEnabled": False,
|
|
"vrrpIntfs": 0,
|
|
"multicastRouting": {"ipMulticastEnabled": False, "ip6MulticastEnabled": False},
|
|
"v6EcmpInfo": {"v6EcmpRouteSupport": True},
|
|
}
|
|
],
|
|
"inputs": {"ipv4_multicast": True, "ipv6_multicast": True},
|
|
"expected": {
|
|
"result": AntaTestStatus.FAILURE,
|
|
"messages": [
|
|
"IPv4 multicast routing enabled status mismatch - Expected: True Actual: False",
|
|
"IPv6 multicast routing enabled status mismatch - Expected: True Actual: False",
|
|
],
|
|
},
|
|
},
|
|
(VerifyRoutingStatus, "failure-ip-routing-enablement"): {
|
|
"eos_data": [
|
|
{
|
|
"v4RoutingEnabled": False,
|
|
"v6RoutingEnabled": False,
|
|
"vrrpIntfs": 0,
|
|
"multicastRouting": {"ipMulticastEnabled": True, "ip6MulticastEnabled": True},
|
|
"v6EcmpInfo": {"v6EcmpRouteSupport": True},
|
|
}
|
|
],
|
|
"inputs": {"ipv4_unicast": True, "ipv6_unicast": True},
|
|
"expected": {
|
|
"result": AntaTestStatus.FAILURE,
|
|
"messages": [
|
|
"IPv4 unicast routing enabled status mismatch - Expected: True Actual: False",
|
|
"IPv6 unicast routing enabled status mismatch - Expected: True Actual: False",
|
|
"IPv4 multicast routing enabled status mismatch - Expected: False Actual: True",
|
|
"IPv6 multicast routing enabled status mismatch - Expected: False Actual: True",
|
|
],
|
|
},
|
|
},
|
|
(VerifyRoutingStatus, "failure-ipv6-interface-routing-enablement"): {
|
|
"eos_data": [
|
|
{
|
|
"v4RoutingEnabled": True,
|
|
"v6RoutingEnabled": True,
|
|
"vrrpIntfs": 0,
|
|
"multicastRouting": {"ipMulticastEnabled": False, "ip6MulticastEnabled": False},
|
|
"v6EcmpInfo": {"v6EcmpRouteSupport": True},
|
|
}
|
|
],
|
|
"inputs": {"ipv4_unicast": True, "ipv6_unicast": True, "ipv6_interfaces": True},
|
|
"expected": {"result": AntaTestStatus.FAILURE, "messages": ["IPv6 interfaces routing enabled status mismatch - Expected: True Actual: False"]},
|
|
},
|
|
}
|
|
|
|
|
|
class TestVerifyRoutingTableSizeInputs:
|
|
"""Test anta.tests.routing.generic.VerifyRoutingTableSize.Input."""
|
|
|
|
@pytest.mark.parametrize(
|
|
("minimum", "maximum"),
|
|
[
|
|
pytest.param(0, 0, id="zero"),
|
|
pytest.param(1, 2, id="1<2"),
|
|
pytest.param(0, sys.maxsize, id="max"),
|
|
],
|
|
)
|
|
def test_valid(self, minimum: int, maximum: int) -> None:
|
|
"""Test VerifyRoutingTableSize valid inputs."""
|
|
VerifyRoutingTableSize.Input(minimum=minimum, maximum=maximum)
|
|
|
|
@pytest.mark.parametrize(
|
|
("minimum", "maximum"),
|
|
[
|
|
pytest.param(-2, -1, id="negative"),
|
|
pytest.param(2, 1, id="2<1"),
|
|
pytest.param(sys.maxsize, 0, id="max"),
|
|
],
|
|
)
|
|
def test_invalid(self, minimum: int, maximum: int) -> None:
|
|
"""Test VerifyRoutingTableSize invalid inputs."""
|
|
with pytest.raises(ValidationError):
|
|
VerifyRoutingTableSize.Input(minimum=minimum, maximum=maximum)
|