From 3fb3bb60337483c6dd578a4ae4ffccf4829b726e Mon Sep 17 00:00:00 2001 From: Arturo Borrero Date: Wed, 13 Jan 2016 19:29:09 +0100 Subject: tests/listing: add some listing tests Let's test what is shown with the 'list' command, for ruleset, tables and sets. In order to ease debug in case of failure, if the diff tool is in the system, then a textual diff is printed. Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- tests/shell/testcases/listing/0004table_0 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 tests/shell/testcases/listing/0004table_0 (limited to 'tests/shell/testcases/listing/0004table_0') diff --git a/tests/shell/testcases/listing/0004table_0 b/tests/shell/testcases/listing/0004table_0 new file mode 100755 index 00000000..2c7c9952 --- /dev/null +++ b/tests/shell/testcases/listing/0004table_0 @@ -0,0 +1,19 @@ +#!/bin/bash + +# list table only show table asked for + +EXPECTED="table ip test { +}" + +set -e + +$NFT add table test +$NFT add table test2 + +GET="$($NFT list table test)" +if [ "$EXPECTED" != "$GET" ] ; then + DIFF="$(which diff)" + [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET") + exit 1 +fi + -- cgit v1.2.3