git: 193455c91b90 - stable/13 - pf tests: test setting and retrieving timeout values

From: Kristof Provost <kp_at_FreeBSD.org>
Date: Thu, 25 Jul 2024 13:41:47 UTC
The branch stable/13 has been updated by kp:

URL: https://cgit.FreeBSD.org/src/commit/?id=193455c91b9065beef2b4a86956713f633041340

commit 193455c91b9065beef2b4a86956713f633041340
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2024-06-06 15:50:42 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2024-07-25 08:23:35 +0000

    pf tests: test setting and retrieving timeout values
    
    (cherry picked from commit 8ed5170c66ec4914e90c2f3657227ceb9e35193f)
---
 tests/sys/netpfil/pf/sctp.sh | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/tests/sys/netpfil/pf/sctp.sh b/tests/sys/netpfil/pf/sctp.sh
index c6dba1719d00..c3e1301238b0 100644
--- a/tests/sys/netpfil/pf/sctp.sh
+++ b/tests/sys/netpfil/pf/sctp.sh
@@ -656,6 +656,37 @@ pfsync_cleanup()
 	pfsynct_cleanup
 }
 
+atf_test_case "timeout" "cleanup"
+timeout_head()
+{
+	atf_set descr 'Test setting and retrieving timeout values'
+	atf_set require.user root
+}
+
+timeout_body()
+{
+	sctp_init
+}
+
+timeout_cleanup()
+{
+	pft_cleanup
+
+	vnet_mkjail timeout
+
+	pft_set_rules timeout \
+		"set timeout sctp.first 13" \
+		"set timeout sctp.opening 14"
+
+	atf_check -s exit:0 -o match:"sctp.first.*13" \
+	    jexec timeout pfctl -st
+	atf_check -s exit:0 -o match:"sctp.opening.*14" \
+	    jexec timeout pfctl -st
+	# We've not changed other timeouts
+	atf_check -s exit:0 -o match:"sctp.established.*86400" \
+	    jexec timeout pfctl -st
+}
+
 atf_init_test_cases()
 {
 	atf_add_test_case "basic_v4"
@@ -666,4 +697,5 @@ atf_init_test_cases()
 	atf_add_test_case "nat_v6"
 	atf_add_test_case "rdr_v4"
 	atf_add_test_case "pfsync"
+	atf_add_test_case "timeout"
 }