summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/listing/0013objects_0
blob: c5e0e323de3faa79b8e169db37b6b76548cde23e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

# list table with all objects and chains

EXPECTED="table ip test {
	quota https-quota {
		25 mbytes
	}

	ct helper cthelp {
		type \"sip\" protocol tcp
		l3proto ip
	}

	chain input {
	}
}"

set -e

$NFT add table test
$NFT add chain test input
$NFT add quota test https-quota 25 mbytes
$NFT add ct helper test cthelp { type \"sip\" protocol tcp \; }
$NFT add table test-ip

GET="$($NFT list table test)"
if [ "$EXPECTED" != "$GET" ] ; then
	DIFF="$(which diff)"
	[ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi