]> jfr.im git - solanum.git/commitdiff
Add (some failing) tests for mask matching
authorEd Kellett <redacted>
Fri, 30 Oct 2020 00:55:21 +0000 (00:55 +0000)
committerEd Kellett <redacted>
Sat, 31 Oct 2020 17:00:25 +0000 (17:00 +0000)
tests/Makefile.am
tests/TESTS
tests/match1.c [new file with mode: 0644]

index f4754f63d31cc87ef380c73bab3fee65657c0425..5c6c67d13dd116c9bc0a694bf85fd75fb48b16fc 100644 (file)
@@ -1,4 +1,5 @@
 check_PROGRAMS = runtests \
+       match1 \
        msgbuf_parse1 \
        msgbuf_unparse1 \
        hostmask1 \
@@ -23,6 +24,7 @@ check_LIBRARIES = tap/libtap.a
 tap_libtap_a_SOURCES = tap/basic.c tap/basic.h \
        tap/float.c tap/float.h tap/macros.h
 
+match1_SOURCES = match1.c
 msgbuf_parse1_SOURCES = msgbuf_parse1.c
 msgbuf_unparse1_SOURCES = msgbuf_unparse1.c
 hostmask1_SOURCES = hostmask1.c
index 31cc388cbfaf7ff3ad16487f8c6b87bfb2c8933f..a7627c177a76c59c737173ddbee08470461f2794 100644 (file)
@@ -1,3 +1,4 @@
+match1
 msgbuf_parse1
 msgbuf_unparse1
 hostmask1
diff --git a/tests/match1.c b/tests/match1.c
new file mode 100644 (file)
index 0000000..9d118ed
--- /dev/null
@@ -0,0 +1,74 @@
+/*
+ *  Copyright (C) 2020 Ed Kellett
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+ *  USA
+ */
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include "tap/basic.h"
+
+#include "stdinc.h"
+#include "client.h"
+#include "match.h"
+
+#define MSG "%s:%d (%s)", __FILE__, __LINE__, __FUNCTION__
+
+struct Client me;
+
+static void test_match(void)
+{
+       is_int(0, match("*foo*", "bar"), MSG);
+       is_int(1, match("*foo*", "foo"), MSG);
+
+       is_int(1, match("*foo*", "xfofoo"), MSG);
+}
+
+static void test_mask_match(void)
+{
+       is_int(0, mask_match("*foo*", "bar"), MSG);
+       is_int(1, mask_match("*foo*", "foo"), MSG);
+
+       is_int(1, mask_match("*foo*", "xfofoo"), MSG);
+
+       is_int(1, mask_match("*", "*foo*"), MSG);
+       is_int(0, mask_match("*foo*", "*"), MSG);
+       is_int(1, mask_match("*", "*"), MSG);
+       is_int(0, mask_match("?", "*"), MSG);
+       is_int(1, mask_match("*?", "*?"), MSG);
+       is_int(1, mask_match("?*", "*?"), MSG);
+       is_int(1, mask_match("*?*?*?*", "*?????*"), MSG);
+       is_int(0, mask_match("*??*??*??*", "*?????*"), MSG);
+
+       is_int(1, mask_match("?*", "*a"), MSG);
+       is_int(1, mask_match("???*", "*a*a*a"), MSG);
+       is_int(0, mask_match("???*", "*a*a*"), MSG);
+
+       is_int(0, mask_match("??", "a"), MSG);
+       is_int(1, mask_match("??", "aa"), MSG);
+       is_int(0, mask_match("??", "aaa"), MSG);
+}
+
+int main(int argc, char *argv[])
+{
+       plan_lazy();
+
+       test_match();
+       test_mask_match();
+
+       return 0;
+}