]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
tests: shell: fix spurious errors in sets/0036add_set_element_expiration_0
authorPablo Neira Ayuso <pablo@netfilter.org>
Wed, 27 Sep 2023 14:36:45 +0000 (16:36 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 27 Sep 2023 16:35:40 +0000 (18:35 +0200)
A number of changes to fix spurious errors:

- Add seconds as expiration, otherwise 14m59 reports 14m in minute
  granularity, this ensures suficient time in a very slow environment with
  debugging instrumentation.

- Provide expected output.

- Update sed regular expression to make 'ms' optional and use -E mode.

Fixes: adf38fd84257 ("tests: shell: use minutes granularity in sets/0036add_set_element_expiration_0")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
tests/shell/testcases/sets/0036add_set_element_expiration_0

index 12f10074409f673d519077f8b0b747aa112fa770..0fd016e9f8570d9747fca0b4d392089eea72d193 100755 (executable)
@@ -3,17 +3,21 @@
 set -e
 
 drop_seconds() {
-       sed 's/m[0-9]*s[0-9]*ms/m/g'
+       sed -E 's/m[0-9]*s([0-9]*ms)?/m/g'
 }
 
 RULESET="add table ip x
+add set ip x y { type ipv4_addr; flags dynamic,timeout; }
+add element ip x y { 1.1.1.1 timeout 30m expires 15m59s }"
+
+EXPECTED="add table ip x
 add set ip x y { type ipv4_addr; flags dynamic,timeout; } 
 add element ip x y { 1.1.1.1 timeout 30m expires 15m }"
 
 test_output=$($NFT -e -f - <<< "$RULESET" 2>&1 | grep -v '# new generation' | drop_seconds)
 
-if [ "$test_output" != "$RULESET" ] ; then
-       $DIFF -u <(echo "$test_output") <(echo "$RULESET")
+if [ "$test_output" != "$EXPECTED" ] ; then
+       $DIFF -u <(echo "$test_output") <(echo "$EXPECTED")
        exit 1
 fi