]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
tests: shell: add packetpath test for meta time expression.
authorYi Chen <yiche@redhat.com>
Thu, 13 Nov 2025 07:28:51 +0000 (15:28 +0800)
committerFlorian Westphal <fw@strlen.de>
Wed, 26 Nov 2025 15:14:32 +0000 (16:14 +0100)
v2:
 - Switched to range syntax instead of two matches as suggested by Phil.

Signed-off-by: Yi Chen <yiche@redhat.com>
Reviewed-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Florian Westphal <fw@strlen.de>
tests/shell/testcases/packetpath/dumps/meta_time.nodump [new file with mode: 0644]
tests/shell/testcases/packetpath/meta_time [new file with mode: 0755]

diff --git a/tests/shell/testcases/packetpath/dumps/meta_time.nodump b/tests/shell/testcases/packetpath/dumps/meta_time.nodump
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/shell/testcases/packetpath/meta_time b/tests/shell/testcases/packetpath/meta_time
new file mode 100755 (executable)
index 0000000..67b37f4
--- /dev/null
@@ -0,0 +1,79 @@
+#!/bin/bash
+
+# NFT_TEST_REQUIRES(NFT_TEST_HAVE_meta_time)
+
+. $NFT_TEST_LIBRARY_FILE
+
+gen_in_range_minute()
+{
+       echo $(date -d "-5 minutes" +%H:%M)-$(date -d "+5 minutes" +%H:%M)
+}
+
+gen_out_of_range_minute()
+{
+       echo $(date -d "+2 minutes" +%H:%M)-$(date -d "+5 minutes" +%H:%M)
+}
+
+gen_in_range_hour()
+{
+       echo $(date -d "-2 hours" +%H:%M)-$(date -d "+2 hours" +%H:%M)
+}
+
+gen_out_of_range_hour()
+{
+       echo $(date -d "+1 hours" +%H:%M)-$(date -d "+2 hours" +%H:%M)
+}
+gen_in_range_day()
+{
+       #meta day "Sunday"-"Tuesday"
+       echo \"$(date -d "-1 days" +%A)\"-\"$(date -d "+1 days" +%A)\"
+}
+gen_out_of_range_day()
+{
+       echo \"$(date -d "-2 days" +%A)\"-\"$(date -d "-1 days" +%A)\"
+}
+
+gen_in_range_time()
+{
+       echo \"$(date -d "-1 years +10 days" +%G-%m-%d" "%H:%M:%S)\"-\"$(date -d "+2 days" +%G-%m-%d" "%H:%M:%S)\"
+}
+
+gen_out_of_range_time()
+{
+       echo \"$(date -d "+10 seconds" +%G-%m-%d" "%H:%M:%S)\"-\"$(date -d "+20 seconds" +%G-%m-%d" "%H:%M:%S)\"
+}
+
+$NFT -f - <<-EOF
+table ip time_test {
+       counter matched {}
+       counter unmatch {}
+       chain input {
+               type filter hook input priority filter; policy accept;
+               iifname lo icmp type echo-request meta hour $(gen_in_range_hour)       counter name matched
+               iifname lo icmp type echo-request meta hour $(gen_out_of_range_hour)   counter name unmatch
+               iifname lo icmp type echo-request meta hour $(gen_in_range_minute)     counter name matched
+               iifname lo icmp type echo-request meta hour $(gen_out_of_range_minute) counter name unmatch
+               iifname lo icmp type echo-request meta day  $(gen_in_range_day)        counter name matched
+               iifname lo icmp type echo-request meta day  $(gen_out_of_range_day)    counter name unmatch
+               iifname lo icmp type echo-request meta time $(gen_in_range_time)       counter name matched
+               iifname lo icmp type echo-request meta time $(gen_out_of_range_time)   counter name unmatch
+       }
+}
+EOF
+assert_pass "restore meta time ruleset"
+
+nft add rule ip time_test input ip protocol icmp meta hour \"24:00\"-\"4:00\" 2>/dev/null
+assert_fail "Wrong time format input"
+nft add rule ip time_test input ip protocol icmp meta hour \"-2:00\"-\"4:00\" 2>/dev/null
+assert_fail "Wrong time format input"
+
+ip link set lo up
+ping -W 1 127.0.0.1 -c 1
+assert_pass "ping pass"
+
+$NFT list counter ip time_test matched | grep 'packets 4'
+assert_pass "matched check"
+$NFT list counter ip time_test unmatch | grep 'packets 0'
+assert_pass "unmatch check"
+$NFT delete table ip time_test
+assert_pass "delete table"