skbedit.json 21.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
[
    {
        "id": "6236",
        "name": "Add skbedit action with valid mark",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 1",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
20
        "matchPattern": "action order [0-9]*: skbedit  mark 1",
21 22 23 24 25
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
R
Roman Mashak 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    {
        "id": "c8cf",
        "name": "Add skbedit action with 32-bit maximum mark",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 4294967295 pipe index 1",
        "expExitCode": "0",
        "verifyCmd": "$TC actions get action skbedit index 1",
        "matchPattern": "action order [0-9]*: skbedit  mark 4294967295.*pipe.*index 1",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
50 51
    {
        "id": "407b",
R
Roman Mashak 已提交
52
        "name": "Add skbedit action with mark exceeding 32-bit maximum",
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 666777888999",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*:  skbedit mark",
        "matchCount": "0",
R
Roman Mashak 已提交
70
        "teardown": []
71
    },
R
Roman Mashak 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
    {
        "id": "d4cd",
        "name": "Add skbedit action with valid mark and mask",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 1/0xaabb",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*: skbedit  mark 1/0xaabb",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "baa7",
        "name": "Add skbedit action with valid mark and 32-bit maximum mask",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 1/0xffffffff",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*: skbedit  mark 1/0xffffffff",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "62a5",
        "name": "Add skbedit action with valid mark and mask exceeding 32-bit maximum",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 1/0xaabbccddeeff112233",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*: skbedit  mark 1/0xaabbccddeeff112233",
        "matchCount": "0",
        "teardown": []
    },
    {
        "id": "bc15",
        "name": "Add skbedit action with valid mark and mask with invalid format",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 1/-1234",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*: skbedit  mark 1/-1234",
        "matchCount": "0",
        "teardown": []
    },
    {
        "id": "57c2",
        "name": "Replace skbedit action with new mask",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ],
            "$TC actions add action skbedit mark 1/0x11223344 index 1"
        ],
        "cmdUnderTest": "$TC actions replace action skbedit mark 1/0xaabb index 1",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*: skbedit  mark 1/0xaabb",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
    {
        "id": "081d",
        "name": "Add skbedit action with priority",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit prio 99",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
207
        "matchPattern": "action order [0-9]*: skbedit  priority :99",
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "cc37",
        "name": "Add skbedit action with invalid priority",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit prio foo",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*:  skbedit priority",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "3c95",
        "name": "Add skbedit action with queue_mapping",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit queue_mapping 909",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
255
        "matchPattern": "action order [0-9]*: skbedit queue_mapping 909",
256 257 258 259 260 261 262
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "985c",
R
Roman Mashak 已提交
263
        "name": "Add skbedit action with queue_mapping exceeding 16-bit maximum",
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit queue_mapping 67000",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*:  skbedit queue_mapping",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "224f",
        "name": "Add skbedit action with ptype host",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit ptype host",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
303
        "matchPattern": "action order [0-9]*: skbedit  ptype host",
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "d1a3",
        "name": "Add skbedit action with ptype otherhost",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit ptype otherhost",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
327
        "matchPattern": "action order [0-9]*: skbedit  ptype otherhost",
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "b9c6",
        "name": "Add skbedit action with invalid ptype",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit ptype openair",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*:  skbedit ptype openair",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
    {
        "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",
375
        "matchPattern": "action order [0-9]*: skbedit  ptype host pipe.*index 11 ref",
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
        "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",
399
        "matchPattern": "action order [0-9]*: skbedit  mark 56789 reclassify.*index 90 ref",
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
        "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",
423
        "matchPattern": "action order [0-9]*: skbedit queue_mapping 3 pass.*index 271 ref",
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
        "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",
447
        "matchPattern": "action order [0-9]*: skbedit queue_mapping 3 drop.*index 271 ref",
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
        "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",
471
        "matchPattern": "action order [0-9]*: skbedit  priority :8 jump 9.*index 2 ref",
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
        "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",
495
        "matchPattern": "action order [0-9]*: skbedit  priority :16 continue.*index 32 ref",
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
        "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",
519
        "matchPattern": "action order [0-9]*: skbedit  priority :16 continue.*index 32 ref.*cookie deadbeef",
520 521 522 523 524
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
    {
        "id": "5172",
        "name": "List skbedit actions",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ],
            "$TC actions add action skbedit ptype otherhost",
            "$TC actions add action skbedit ptype broadcast",
            "$TC actions add action skbedit mark 59",
            "$TC actions add action skbedit mark 409"
        ],
        "cmdUnderTest": "$TC actions list action skbedit",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
547
        "matchPattern": "action order [0-9]*: skbedit",
548 549 550 551 552 553 554
        "matchCount": "4",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "a6d6",
R
Roman Mashak 已提交
555
        "name": "Add skbedit action with index at 32-bit maximum",
556 557 558 559 560 561 562 563 564 565 566 567
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
R
Roman Mashak 已提交
568
        "cmdUnderTest": "$TC actions add action skbedit mark 808 index 4294967295",
569
        "expExitCode": "0",
R
Roman Mashak 已提交
570 571
        "verifyCmd": "$TC actions get action skbedit index 4294967295",
        "matchPattern": "action order [0-9]*: skbedit  mark 808.*index 4294967295",
572 573 574 575 576
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
R
Roman Mashak 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
    {
        "id": "f0f4",
        "name": "Add skbedit action with index exceeding 32-bit maximum",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "$TC actions add action skbedit mark 808 pass index 4294967297",
        "expExitCode": "255",
        "verifyCmd": "$TC actions get action skbedit index 4294967297",
        "matchPattern": "action order [0-9]*:.*skbedit.*mark 808.*pass.*index 4294967297",
        "matchCount": "0",
        "teardown": []
    },
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
    {
        "id": "38f3",
        "name": "Delete skbedit action",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ],
            "$TC actions add action skbedit mark 42 index 9009"
        ],
        "cmdUnderTest": "$TC actions del action skbedit index 9009",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*:  skbedit mark 42",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "ce97",
        "name": "Flush skbedit actions",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            "$TC actions add action skbedit mark 500",
            "$TC actions add action skbedit mark 501",
            "$TC actions add action skbedit mark 502",
            "$TC actions add action skbedit mark 503",
            "$TC actions add action skbedit mark 504",
            "$TC actions add action skbedit mark 505",
            "$TC actions add action skbedit mark 506"
        ],
        "cmdUnderTest": "$TC actions flush action skbedit",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*:  skbedit",
        "matchCount": "0",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
    },
    {
        "id": "1b2b",
        "name": "Replace skbedit action with invalid goto_chain control",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ],
            "$TC actions add action skbedit ptype host pass index 90"
        ],
        "cmdUnderTest": "$TC actions replace action skbedit ptype host goto chain 42 index 90 cookie c1a0c1a0",
        "expExitCode": "255",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "action order [0-9]*: skbedit  ptype host pass.*index 90 ref",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
    },
    {
        "id": "630c",
        "name": "Add batch of 32 skbedit actions with all parameters and cookie",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ]
        ],
        "cmdUnderTest": "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action skbedit queue_mapping 2 priority 10 mark 7/0xaabbccdd ptype host inheritdsfield index \\$i cookie aabbccddeeff112233445566778800a1 \\\"; args=\"\\$args\\$cmd\"; done && $TC actions add \\$args\"",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "^[ \t]+index [0-9]+ ref",
        "matchCount": "32",
        "teardown": [
            "$TC actions flush action skbedit"
        ]
    },
    {
        "id": "706d",
        "name": "Delete batch of 32 skbedit actions with all parameters",
        "category": [
            "actions",
            "skbedit"
        ],
        "setup": [
            [
                "$TC actions flush action skbedit",
                0,
                1,
                255
            ],
            "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action skbedit queue_mapping 2 priority 10 mark 7/0xaabbccdd ptype host inheritdsfield index \\$i \\\"; args=\\\"\\$args\\$cmd\\\"; done && $TC actions add \\$args\""
        ],
        "cmdUnderTest": "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action skbedit index \\$i \\\"; args=\"\\$args\\$cmd\"; done && $TC actions del \\$args\"",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action skbedit",
        "matchPattern": "^[ \t]+index [0-9]+ ref",
        "matchCount": "0",
        "teardown": []
720 721
    }
]