diff options
author | Harsha Sharma <harshasharmaiitr@gmail.com> | 2018-01-19 02:15:14 +0530 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-03-05 17:57:57 +0100 |
commit | 2783e89a5cfe0d464f0cbb1f42e1e02e432fca92 (patch) | |
tree | b6ae8f5d732186dcfd09b6c8adf997b8e4f923bb | |
parent | 07561df0a461257e1be44b6ae8cefcbf0d601947 (diff) |
tests/shell: add tests for deletion of objects via object handle
Delete objects with given object handle
Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rwxr-xr-x | tests/shell/testcases/optionals/delete_object_handles_0 | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/shell/testcases/optionals/delete_object_handles_0 b/tests/shell/testcases/optionals/delete_object_handles_0 new file mode 100755 index 00000000..355de5f1 --- /dev/null +++ b/tests/shell/testcases/optionals/delete_object_handles_0 @@ -0,0 +1,40 @@ +#!/bin/bash + +set -e +$NFT add table test-ip +$NFT add counter test-ip https-traffic # should have handle 1 +$NFT add quota test-ip https-quota 25 mbytes # should have handle 2 +$NFT add map test-ip ports { type inet_service : quota \; } # should have handle 3 +$NFT add table ip6 test-ip6 +$NFT add quota ip6 test-ip6 http-quota over 25 mbytes # should have handle 1 +$NFT add counter ip6 test-ip6 http-traffic # should have handle 2 +$NFT add quota ip6 test-ip6 ssh-quota 10 mbytes # should have handle 3 +$NFT delete counter test-ip handle 1 +$NFT delete quota ip6 test-ip6 handle 3 + +EXPECTED="table ip test-ip { + quota https-quota { + 25 mbytes used 2 bytes + } # handle 2 + + map ports { + type inet_service : quota + } # handle 3 +} # handle 1 +table ip6 test-ip6 { + quota http-quota { + over 25 mbytes used 1 bytes + } # handle 1 + + counter http-traffic { + packets 0 bytes 2 + } # handle 2 +} # handle 2" + +GET="$($NFT list ruleset -a)" + +if [ "$EXPECTED" != "$GET" ] ; then + DIFF="$(which diff)" + [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET") + exit 1 +fi |