]> git.ipfire.org Git - thirdparty/suricata-verify.git/commitdiff
test: check flowint isnotset support 2165/head
authorJuliana Fajardini <jufajardini@gmail.com>
Thu, 5 Dec 2024 01:32:05 +0000 (22:32 -0300)
committerVictor Julien <victor@inliniac.net>
Thu, 5 Dec 2024 09:02:27 +0000 (10:02 +0100)
Related to
Task #7426

tests/flowint-isnotset/README.md [new file with mode: 0644]
tests/flowint-isnotset/test.rules [new file with mode: 0644]
tests/flowint-isnotset/test.yaml [new file with mode: 0644]

diff --git a/tests/flowint-isnotset/README.md b/tests/flowint-isnotset/README.md
new file mode 100644 (file)
index 0000000..66c9058
--- /dev/null
@@ -0,0 +1,15 @@
+Test
+----
+
+Simple test to check that the keyword ``flowint`` accepts both ``notset``
+and ``isnotset``.
+
+Pcap
+----
+
+From test tls-subjectaltname
+
+Redmine Ticket
+--------------
+
+https://redmine.openinfosecfoundation.org/issues/7426
diff --git a/tests/flowint-isnotset/test.rules b/tests/flowint-isnotset/test.rules
new file mode 100644 (file)
index 0000000..2767ee0
--- /dev/null
@@ -0,0 +1,2 @@
+alert tls any any -> any any (msg:"test flowint isnotset"; flowint:flowtls1,isnotset; flowint:flowtls1,+,1; noalert; sid:1;)
+alert tls any any -> any any (msg:"test flowint notset"; flowint:flowtls2,notset; flowint:flowtls2,+,1; sid:2;)
diff --git a/tests/flowint-isnotset/test.yaml b/tests/flowint-isnotset/test.yaml
new file mode 100644 (file)
index 0000000..15f2412
--- /dev/null
@@ -0,0 +1,19 @@
+requires:
+  min-version: 8
+
+pcap: ../tls/tls-subjectaltname/input.pcap
+
+args:
+- -k none
+
+checks:
+- filter:
+    count: 0
+    match:
+      alert.signature_id: 1
+      event_type: alert
+- filter:
+    count: 40
+    match:
+      alert.signature_id: 2
+      event_type: alert