Skip to content

Profiles

ANTA catalog for profiles tests

Test functions related to ASIC profiles

VerifyTcamProfile

Bases: AntaTest

Verifies the device is using the configured TCAM profile.

Source code in anta/tests/profiles.py
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
class VerifyTcamProfile(AntaTest):
    """
    Verifies the device is using the configured TCAM profile.
    """

    name = "VerifyTcamProfile"
    description = "Verify that the assigned TCAM profile is actually running on the device"
    categories = ["profiles"]
    commands = [AntaCommand(command="show hardware tcam profile", ofmt="json")]

    class Input(AntaTest.Input):  # pylint: disable=missing-class-docstring
        profile: str
        """Expected TCAM profile"""

    @skip_on_platforms(["cEOSLab", "vEOS-lab"])
    @AntaTest.anta_test
    def test(self) -> None:
        command_output = self.instance_commands[0].json_output
        if command_output["pmfProfiles"]["FixedSystem"]["status"] == command_output["pmfProfiles"]["FixedSystem"]["config"] == self.inputs.profile:
            self.result.is_success()
        else:
            self.result.is_failure(f"Incorrect profile running on device: {command_output['pmfProfiles']['FixedSystem']['status']}")

Input

Bases: Input

Source code in anta/tests/profiles.py
51
52
53
class Input(AntaTest.Input):  # pylint: disable=missing-class-docstring
    profile: str
    """Expected TCAM profile"""

profile instance-attribute

profile: str

Expected TCAM profile

VerifyUnifiedForwardingTableMode

Bases: AntaTest

Verifies the device is using the expected Unified Forwarding Table mode.

Source code in anta/tests/profiles.py
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class VerifyUnifiedForwardingTableMode(AntaTest):
    """
    Verifies the device is using the expected Unified Forwarding Table mode.
    """

    name = "VerifyUnifiedForwardingTableMode"
    description = ""
    categories = ["profiles"]
    commands = [AntaCommand(command="show platform trident forwarding-table partition", ofmt="json")]

    class Input(AntaTest.Input):  # pylint: disable=missing-class-docstring
        mode: Literal[0, 1, 2, 3, 4, "flexible"]
        """Expected UFT mode"""

    @skip_on_platforms(["cEOSLab", "vEOS-lab"])
    @AntaTest.anta_test
    def test(self) -> None:
        command_output = self.instance_commands[0].json_output
        if command_output["uftMode"] == str(self.inputs.mode):
            self.result.is_success()
        else:
            self.result.is_failure(f"Device is not running correct UFT mode (expected: {self.inputs.mode} / running: {command_output['uftMode']})")

Input

Bases: Input

Source code in anta/tests/profiles.py
27
28
29
class Input(AntaTest.Input):  # pylint: disable=missing-class-docstring
    mode: Literal[0, 1, 2, 3, 4, "flexible"]
    """Expected UFT mode"""

mode instance-attribute

mode: Literal[0, 1, 2, 3, 4, 'flexible']

Expected UFT mode


Last update: August 18, 2023