diff options
author | Florian Westphal <fw@strlen.de> | 2024-08-08 12:25:32 +0200 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2024-08-08 12:31:24 +0200 |
commit | 273411f5326f54a09133663d61dc4903ed56193a (patch) | |
tree | 9f09bf468d5a7ae5056796b9bd72553784c6eaaa /tests/shell/testcases/transactions | |
parent | 156b5936b3b7a0b1ee590a02874beaba5235f758 (diff) |
tests: shell: resolve check-tree.sh errors
It prints a few errors like this:
ERR: "tests/shell/testcases/chains/jump_to_base_chain" has no "tests/shell/testcases/chains/dumps/jump_to_base_chain.{nft,nodump}" file
For all of those, add the relevant .nft dump file.
Add a 'nodump' file in case the test doesn't print anything (e.g.
because the test checks that invalid ruleset fails validation).
Some tests have a .nft but not .json-nft, this is because json lacks
some features, in particular "typeof" and anonymous/implicit chains.
ERR: "tests/shell/testcases/maps/delete_element_catchall" has no "tests/shell/testcases/maps/dumps/delete_element_catchall.{nft,nodump}" file
ERR: "tests/shell/testcases/maps/dumps/delete_elem_catchall.nft" has no test "tests/shell/testcases/maps/delete_elem_catchall"
these two are related, rename the dump file to match the script name.
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'tests/shell/testcases/transactions')
-rw-r--r-- | tests/shell/testcases/transactions/dumps/handle_bad_family.json-nft | 18 | ||||
-rw-r--r-- | tests/shell/testcases/transactions/dumps/handle_bad_family.nft | 2 |
2 files changed, 20 insertions, 0 deletions
diff --git a/tests/shell/testcases/transactions/dumps/handle_bad_family.json-nft b/tests/shell/testcases/transactions/dumps/handle_bad_family.json-nft new file mode 100644 index 00000000..15ec0aac --- /dev/null +++ b/tests/shell/testcases/transactions/dumps/handle_bad_family.json-nft @@ -0,0 +1,18 @@ +{ + "nftables": [ + { + "metainfo": { + "version": "VERSION", + "release_name": "RELEASE_NAME", + "json_schema_version": 1 + } + }, + { + "table": { + "family": "ip", + "name": "x", + "handle": 0 + } + } + ] +} diff --git a/tests/shell/testcases/transactions/dumps/handle_bad_family.nft b/tests/shell/testcases/transactions/dumps/handle_bad_family.nft new file mode 100644 index 00000000..5d4d2caf --- /dev/null +++ b/tests/shell/testcases/transactions/dumps/handle_bad_family.nft @@ -0,0 +1,2 @@ +table ip x { +} |