This patch adds test cases for ct expression. Signed-off-by: Varsha Rao <rvarsha016@xxxxxxxxx> --- tests/shell/testcases/transactions/0025rule_0 | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 tests/shell/testcases/transactions/0025rule_0 diff --git a/tests/shell/testcases/transactions/0025rule_0 b/tests/shell/testcases/transactions/0025rule_0 new file mode 100755 index 0000000..b8df747 --- /dev/null +++ b/tests/shell/testcases/transactions/0025rule_0 @@ -0,0 +1,36 @@ +#!/bin/bash + +# Test for ct statements. + +set -e + +$NFT add table x +$NFT add chain x y { type filter hook output priority 0\; } +$NFT add rule x y ct state new,established +$NFT add rule x y ct direction original +$NFT add rule x y ct direction reply +$NFT add rule x y ct status expected +$NFT add rule x y ct mark 0 +$NFT add rule x y ct expiration 30 +$NFT add rule x y ct helper "ftp" + +EXPECTED="table ip x { + chain y { + type filter hook output priority 0; policy accept; + ct state established,new + ct direction original + ct direction reply + ct status expected + ct mark 0x00000000 + ct expiration 30s + ct helper \"ftp\" + } +}" + +GET="$($NFT list ruleset)" + +if [ "$EXPECTED" != "$GET" ] ; then + DIFF="$(which diff)" + [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET") + exit 1 +fi -- 2.13.6 -- 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