From: Arturo Borrero Gonzalez <arturo@xxxxxxxxxx> This patch adds a several testcases for comments in set elements. This includes the netfilter bug #1090 about comments in set interval elements. Signed-off-by: Arturo Borrero Gonzalez <arturo@xxxxxxxxxx> --- tests/shell/testcases/sets/0008comments_interval_0 | 12 ++++++++++++ tests/shell/testcases/sets/0009comments_timeout_0 | 12 ++++++++++++ tests/shell/testcases/sets/0010comments_0 | 11 +++++++++++ 3 files changed, 35 insertions(+) create mode 100755 tests/shell/testcases/sets/0008comments_interval_0 create mode 100755 tests/shell/testcases/sets/0009comments_timeout_0 create mode 100755 tests/shell/testcases/sets/0010comments_0 diff --git a/tests/shell/testcases/sets/0008comments_interval_0 b/tests/shell/testcases/sets/0008comments_interval_0 new file mode 100755 index 0000000..98c709c --- /dev/null +++ b/tests/shell/testcases/sets/0008comments_interval_0 @@ -0,0 +1,12 @@ +#!/bin/bash + +# This test netfilter bug #1090 +# https://bugzilla.netfilter.org/show_bug.cgi?id=1090 + +$NFT add table t +$NFT add set t s {type ipv4_addr \; flags interval \;} +$NFT add element t s { 1.1.1.1 comment "test" } +if ! $NFT list ruleset | grep test >/dev/null ; then + echo "E: missing comment in set element" >&2 + exit 1 +fi diff --git a/tests/shell/testcases/sets/0009comments_timeout_0 b/tests/shell/testcases/sets/0009comments_timeout_0 new file mode 100755 index 0000000..4e3f80c --- /dev/null +++ b/tests/shell/testcases/sets/0009comments_timeout_0 @@ -0,0 +1,12 @@ +#!/bin/bash + +# Test that comments are added to set elements in timemout sets. + +$NFT flush ruleset +$NFT add table t +$NFT add set t s {type ipv4_addr \; flags timeout \;} +$NFT add element t s { 1.1.1.1 comment "test" } +if ! $NFT list ruleset | grep test >/dev/null ; then + echo "E: missing comment in set element" >&2 + exit 1 +fi diff --git a/tests/shell/testcases/sets/0010comments_0 b/tests/shell/testcases/sets/0010comments_0 new file mode 100755 index 0000000..4467a3b --- /dev/null +++ b/tests/shell/testcases/sets/0010comments_0 @@ -0,0 +1,11 @@ +#!/bin/bash + +# Test that comments are added to set elements in standard sets. + +$NFT add table inet t +$NFT add set inet t s {type ipv6_addr \; } +$NFT add element inet t s { ::1 comment "test" } +if ! $NFT list ruleset | grep test >/dev/null ; then + echo "E: missing comment in set element" >&2 + exit 1 +fi -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html