summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/optionals/update_object_handles_0
blob: 8b12b8c57cd8bb4f7b33f802cc0297e01ff71e83 (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
#!/bin/bash

set -e
$NFT add table test-ip
$NFT add counter test-ip traffic-counter
$NFT add counter test-ip traffic-counter
$NFT add quota test-ip traffic-quota 25 mbytes
$NFT add quota test-ip traffic-quota 50 mbytes

EXPECTED="table ip test-ip {
	counter traffic-counter {
		packets 0 bytes 0
	}

	quota traffic-quota {
		50 mbytes
	}
}"

GET="$($NFT list ruleset)"
if [ "$EXPECTED" != "$GET" ] ; then
	$DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi