Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 808679e7 authored by Roman Mashak's avatar Roman Mashak Committed by David S. Miller
Browse files

tc-testing: updated police, mirred, skbedit and skbmod with more tests



Added extra test cases for control actions (reclassify, pipe etc.),
cookies, max index value and police args sanity check.

Signed-off-by: default avatarRoman Mashak <mrv@mojatatu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9e096868
Loading
Loading
Loading
Loading
+192 −0
Original line number Diff line number Diff line
@@ -170,6 +170,198 @@
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "8917",
        "name": "Add mirred mirror action with control pass",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo pass index 1",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 1",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) pass.*index 1 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "1054",
        "name": "Add mirred mirror action with control pipe",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo pipe index 15",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 15",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) pipe.*index 15 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "9887",
        "name": "Add mirred mirror action with control continue",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo continue index 15",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 15",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) continue.*index 15 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "e4aa",
        "name": "Add mirred mirror action with control reclassify",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo reclassify index 150",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 150",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) reclassify.*index 150 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "ece9",
        "name": "Add mirred mirror action with control drop",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo drop index 99",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 99",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) drop.*index 99 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "0031",
        "name": "Add mirred mirror action with control jump",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo jump 10 index 99",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 99",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) jump 10.*index 99 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "407c",
        "name": "Add mirred mirror action with cookie",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo reclassify cookie aa11bb22cc33dd44ee55",
        "expExitCode": "0",
        "verifyCmd": "$TC actions ls action mirred",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) reclassify.*cookie aa11bb22cc33dd44ee55",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "8b69",
        "name": "Add mirred mirror action with maximum index",
        "category": [
            "actions",
            "mirred"
        ],
        "setup": [
            [
                "$TC actions flush action mirred",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action mirred ingress mirror dev lo pipe index 4294967295",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 4294967295",
        "matchPattern": "action order [0-9]*: mirred \\(Ingress Mirror to device lo\\) pipe.*index 4294967295",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "a70e",
        "name": "Delete mirred mirror action",
+144 −0
Original line number Diff line number Diff line
@@ -264,6 +264,150 @@
            "$TC actions flush action police"
        ]
    },
    {
        "id": "ddd6",
        "name": "Add police action with invalid rate value",
        "category": [
            "actions",
            "police"
        ],
        "setup": [
            [
                "$TC actions flush action police",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action police rate 3tb burst 250k conform-exceed pass/pipe index 5",
        "expExitCode": "255",
        "verifyCmd": "$TC actions ls action police",
        "matchPattern": "action order [0-9]*:  police 0x5 rate 3Tb burst 250Kb mtu 2Kb action pass/pipe",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action police"
        ]
    },
    {
        "id": "f61c",
        "name": "Add police action with invalid burst value",
        "category": [
            "actions",
            "police"
        ],
        "setup": [
            [
                "$TC actions flush action police",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action police rate 3kbit burst 250P conform-exceed pass/pipe index 5",
        "expExitCode": "255",
        "verifyCmd": "$TC actions ls action police",
        "matchPattern": "action order [0-9]*:  police 0x5 rate 3Kbit burst 250Pb mtu 2Kb action pass/pipe",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action police"
        ]
    },
    {
        "id": "c26f",
        "name": "Add police action with invalid peakrate value",
        "category": [
            "actions",
            "police"
        ],
        "setup": [
            [
                "$TC actions flush action police",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action police rate 90kbit burst 10k mtu 2kb peakrate 100T index 1",
        "expExitCode": "255",
        "verifyCmd": "$TC actions ls action police",
        "matchPattern": "action order [0-9]*:  police 0x1 rate 90Kbit burst 10Kb mtu 2Kb peakrate 100Tbit",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action police"
        ]
    },
    {
        "id": "db04",
        "name": "Add police action with invalid mtu value",
        "category": [
            "actions",
            "police"
        ],
        "setup": [
            [
                "$TC actions flush action police",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action police rate 10kbit burst 10k mtu 2Pbit index 1",
        "expExitCode": "255",
        "verifyCmd": "$TC actions ls action police",
        "matchPattern": "action order [0-9]*:  police 0x1 rate 10Kbit burst 1Kb mtu 2Pb",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action police"
        ]
    },
    {
        "id": "f3c9",
        "name": "Add police action with cookie",
        "category": [
            "actions",
            "police"
        ],
        "setup": [
            [
                "$TC actions flush action police",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action police rate 10mbit burst 10k index 1 cookie a1b1c1d1e1f12233bb",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action police index 1",
        "matchPattern": "action order [0-9]*:  police 0x1 rate 10Mbit burst 10Kb mtu 2Kb.*cookie a1b1c1d1e1f12233bb",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action police"
        ]
    },
    {
        "id": "d190",
        "name": "Add police action with maximum index",
        "category": [
            "actions",
            "police"
        ],
        "setup": [
            [
                "$TC actions flush action police",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action police rate 10mbit burst 10k index 4294967295",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action mirred index 4294967295",
        "matchPattern": "action order [0-9]*:  police 0xffffffff rate 10Mbit burst 10Kb mtu 2Kb",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action mirred"
        ]
    },
    {
        "id": "336e",
        "name": "Delete police action",
+168 −0
Original line number Diff line number Diff line
@@ -215,6 +215,174 @@
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "464a",
        "name": "Add skbedit action with control pipe",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit ptype host pipe index 11",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 11",
        "matchPattern": "action order [0-9]*:  skbedit ptype host pipe.*index 11 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "212f",
        "name": "Add skbedit action with control reclassify",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 56789 reclassify index 90",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 90",
        "matchPattern": "action order [0-9]*:  skbedit mark 56789 reclassify.*index 90 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "0651",
        "name": "Add skbedit action with control pass",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit queue_mapping 3 pass index 271",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 271",
        "matchPattern": "action order [0-9]*:  skbedit queue_mapping 3 pass.*index 271 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "cc53",
        "name": "Add skbedit action with control drop",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit queue_mapping 3 drop index 271",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 271",
        "matchPattern": "action order [0-9]*:  skbedit queue_mapping 3 drop.*index 271 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "ec16",
        "name": "Add skbedit action with control jump",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit priority 8 jump 9 index 2",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 2",
        "matchPattern": "action order [0-9]*:  skbedit priority :8 jump 9.*index 2 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "db54",
        "name": "Add skbedit action with control continue",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit priority 16 continue index 32",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 32",
        "matchPattern": "action order [0-9]*:  skbedit priority :16 continue.*index 32 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "1055",
        "name": "Add skbedit action with cookie",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit priority 16 continue index 32 cookie deadbeef",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 32",
        "matchPattern": "action order [0-9]*:  skbedit priority :16 continue.*index 32 ref.*cookie deadbeef",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "5172",
        "name": "List skbedit actions",
+24 −0
Original line number Diff line number Diff line
@@ -263,6 +263,30 @@
            "$TC actions flush action skbmod"
        ]
    },
    {
        "id": "6046",
        "name": "Add skbmod action with control reclassify and cookie",
        "category": [
            "actions",
            "skbmod"
        ],
        "setup": [
            [
                "$TC actions flush action skbmod",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbmod set smac 00:01:02:03:04:01 reclassify index 1 cookie ddeeffaabb11cc22",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbmod index 1",
        "matchPattern": "action order [0-9]*: skbmod reclassify set smac 00:01:02:03:04:01.*index 1 ref.*cookie ddeeffaabb11cc22",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbmod"
        ]
    },
    {
        "id": "58cb",
        "name": "List skbmod actions",