Commit e7534fd4 authored by Vlad Buslov's avatar Vlad Buslov Committed by David S. Miller
Browse files

selftests: implement flower classifier terse dump tests



Implement two basic tests to verify terse dump functionality of flower
classifier:

- Test that verifies that terse dump works.

- Test that verifies that terse dump doesn't print filter key.

Signed-off-by: default avatarVlad Buslov <vladbu@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0348451d
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
@@ -87,5 +87,43 @@
        "teardown": [
            "$TC qdisc del dev $DEV2 ingress"
        ]
    },
    {
        "id": "7c65",
        "name": "Add flower filter and then terse dump it",
        "category": [
            "filter",
            "flower"
        ],
        "setup": [
            "$TC qdisc add dev $DEV2 ingress"
        ],
        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress flower dst_mac e4:11:22:11:4a:51 action drop",
        "expExitCode": "0",
        "verifyCmd": "$TC filter show terse dev $DEV2 ingress",
        "matchPattern": "filter protocol ip pref 1 flower.*handle",
        "matchCount": "1",
        "teardown": [
            "$TC qdisc del dev $DEV2 ingress"
        ]
    },
    {
        "id": "d45e",
        "name": "Add flower filter and verify that terse dump doesn't output filter key",
        "category": [
            "filter",
            "flower"
        ],
        "setup": [
            "$TC qdisc add dev $DEV2 ingress"
        ],
        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress flower dst_mac e4:11:22:11:4a:51 action drop",
        "expExitCode": "0",
        "verifyCmd": "$TC filter show terse dev $DEV2 ingress",
        "matchPattern": "  dst_mac e4:11:22:11:4a:51",
        "matchCount": "0",
        "teardown": [
            "$TC qdisc del dev $DEV2 ingress"
        ]
    }
]