From 4f2d472e6b628410ff7d7a053f8cca8e98f08a28 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sat, 3 Mar 2018 23:45:11 +0100 Subject: tests: shell: redefine and undefine This tests cover the new redefine and undefine scripting feature. Signed-off-by: Pablo Neira Ayuso --- tests/shell/testcases/nft-f/0016redefines_1 | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 tests/shell/testcases/nft-f/0016redefines_1 (limited to 'tests/shell/testcases/nft-f') diff --git a/tests/shell/testcases/nft-f/0016redefines_1 b/tests/shell/testcases/nft-f/0016redefines_1 new file mode 100755 index 00000000..da303607 --- /dev/null +++ b/tests/shell/testcases/nft-f/0016redefines_1 @@ -0,0 +1,40 @@ +#!/bin/bash + +set -e + +tmpfile=$(mktemp) +if [ ! -w $tmpfile ] ; then + echo "Failed to create tmp file" >&2 + exit 0 +fi + +trap "rm -rf $tmpfile" EXIT # cleanup if aborted + +echo " +table ip x { + chain y { + define unused = 4.4.4.4 + define address = { 1.1.1.1, 2.2.2.2 } + ip saddr $address + redefine address = { 3.3.3.3 } + ip saddr $address + undefine unused + } +}" >> $tmpfile + +EXPECTED="table ip x { + chain y { + ip saddr { 1.1.1.1, 2.2.2.2 } + ip saddr { 3.3.3.3 } + } +}" + +$NFT -f $tmpfile + +GET="$($NFT list ruleset)" + +if [ "$EXPECTED" != "$GET" ] ; then + DIFF="$(which diff)" + [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET") + exit 1 +fi -- cgit v1.2.3