aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2022-12-22 11:08:10 +0000
committerGitHub <noreply@github.com>2022-12-22 11:08:10 +0000
commitc8f05b7c0c02fb2fb03d592a751bdb91ec4369f1 (patch)
treede5547c0885b386be4d9f5cbb326d902f86eda21 /tests
parentb00c4a6a8f59c33afc44eebfc8463ce0a0aec8b9 (diff)
parent63a0395a79505598ae89c756c7394765bd89c1aa (diff)
Merge pull request #2269 from Skytrias/luapattern
Add lua pattern matching to core:text with tests
Diffstat (limited to 'tests')
-rw-r--r--tests/core/Makefile7
-rw-r--r--tests/core/build.bat5
-rw-r--r--tests/core/text/match/test_core_text_match.odin396
3 files changed, 406 insertions, 2 deletions
diff --git a/tests/core/Makefile b/tests/core/Makefile
index 92f12cbe7..478d6ae2c 100644
--- a/tests/core/Makefile
+++ b/tests/core/Makefile
@@ -2,7 +2,7 @@ ODIN=../../odin
PYTHON=$(shell which python3)
all: download_test_assets image_test compress_test strings_test hash_test crypto_test noise_test encoding_test \
- math_test linalg_glsl_math_test filepath_test reflect_test os_exit_test i18n_test c_libc_test
+ math_test linalg_glsl_math_test filepath_test reflect_test os_exit_test i18n_test match_test c_libc_test
download_test_assets:
$(PYTHON) download_assets.py
@@ -49,5 +49,8 @@ os_exit_test:
i18n_test:
$(ODIN) run text/i18n -out:test_core_i18n
+match_test:
+ $(ODIN) run text/match -out:test_core_match
+
c_libc_test:
- $(ODIN) run c/libc -out:test_core_libc \ No newline at end of file
+ $(ODIN) run c/libc -out:test_core_libc
diff --git a/tests/core/build.bat b/tests/core/build.bat
index 69a102daa..e4e146588 100644
--- a/tests/core/build.bat
+++ b/tests/core/build.bat
@@ -72,6 +72,11 @@ echo ---
%PATH_TO_ODIN% run text\i18n %COMMON% -out:test_core_i18n.exe
echo ---
+echo Running core:text/lua tests
+echo ---
+%PATH_TO_ODIN% run text\lua %COMMON% -out:test_core_lua_strlib.exe
+
+echo ---
echo Running core:slice tests
echo ---
%PATH_TO_ODIN% run slice %COMMON% -out:test_core_slice.exe
diff --git a/tests/core/text/match/test_core_text_match.odin b/tests/core/text/match/test_core_text_match.odin
new file mode 100644
index 000000000..79defb849
--- /dev/null
+++ b/tests/core/text/match/test_core_text_match.odin
@@ -0,0 +1,396 @@
+package test_strlib
+
+import "core:text/match"
+import "core:testing"
+import "core:fmt"
+import "core:os"
+import "core:io"
+
+TEST_count: int
+TEST_fail: int
+
+// inline expect with custom props
+failed :: proc(t: ^testing.T, ok: bool, loc := #caller_location) -> bool {
+ TEST_count += 1
+
+ if !ok {
+ fmt.wprintf(t.w, "%v: ", loc)
+ t.error_count += 1
+ TEST_fail += 1
+ }
+
+ return !ok
+}
+
+expect :: testing.expect
+
+logf :: proc(t: ^testing.T, format: string, args: ..any) {
+ fmt.wprintf(t.w, format, ..args)
+}
+
+// find correct byte offsets
+@test
+test_find :: proc(t: ^testing.T) {
+ Entry :: struct {
+ s, p: string,
+ offset: int,
+
+ match: struct {
+ start, end: int, // expected start/end
+ ok: bool,
+ },
+ }
+
+ ENTRIES :: [?]Entry {
+ { "", "", 0, { 0, 0, true } },
+ { "alo", "", 0, { 0, 0, true } },
+ { "a o a o a o", "a", 0, { 0, 1, true } },
+ { "a o a o a o", "a o", 1, { 4, 7, true } },
+ { "alo123alo", "12", 0, { 3, 5, true } },
+ { "alo123alo", "^12", 0, {} },
+
+ // from https://riptutorial.com/lua/example/20535/string-find--introduction-
+ { "137'5 m47ch s0m3 d1g175", "m%d%d", 0, { 6, 9, true } },
+ { "stack overflow", "[abc]", 0, { 2, 3, true } },
+ { "stack overflow", "[^stack ]", 0, { 6, 7, true } },
+ { "hello", "o%d?", 0, { 4, 5, true } },
+ { "hello20", "o%d?", 0, { 4, 6, true } },
+ { "helllllo", "el+", 0, { 1, 7, true } },
+ { "heo", "el+", 0, {} },
+ { "helelo", "h.+l", 0, { 0, 5, true } },
+ { "helelo", "h.-l", 0, { 0, 3, true } },
+ }
+
+ for entry, i in ENTRIES {
+ matcher := match.matcher_init(entry.s, entry.p, entry.offset)
+ start, end, ok := match.matcher_find(&matcher)
+ success := entry.match.ok == ok && start == entry.match.start && end == entry.match.end
+
+ if failed(t, success) {
+ logf(t, "Find %d failed!\n", i)
+ logf(t, "\tHAYSTACK %s\tPATTERN %s\n", entry.s, entry.p)
+ logf(t, "\tSTART: %d == %d?\n", entry.match.start, start)
+ logf(t, "\tEND: %d == %d?\n", entry.match.end, end)
+ logf(t, "\tErr: %v\tLength %d\n", matcher.err, matcher.captures_length)
+ }
+ }
+}
+
+@test
+test_match :: proc(t: ^testing.T) {
+ Entry :: struct {
+ s, p: string,
+ result: string, // expected start/end
+ ok: bool,
+ }
+
+ ENTRIES :: [?]Entry {
+ // star
+ { "aaab", ".*b", "aaab", true },
+ { "aaa", ".*a", "aaa", true },
+ { "b", ".*b", "b", true },
+
+ // plus
+ { "aaab", ".+b", "aaab", true },
+ { "aaa", ".+a", "aaa", true },
+ { "b", ".+b", "", false },
+
+ // question
+ { "aaab", ".?b", "ab", true },
+ { "aaa", ".?a", "aa", true },
+ { "b", ".?b", "b", true },
+
+ // CLASSES, checking shorted invalid patterns
+ { "a", "%", "", false },
+
+ // %a letter (A-Z, a-z)
+ { "letterS", "%a+", "letterS", true },
+ { "Let123", "%a+", "Let", true },
+ { "Let123", "%A+", "123", true },
+
+ // %c control characters (\n, \t, \r)
+ { "\n", "%c", "\n", true },
+ { "\t", "%c", "\t", true },
+ { "\t", "%C", "", false },
+ { "a", "%C", "a", true },
+
+ // %d digit characters (0-9)
+ { "0123", "%d+", "0123", true },
+ { "abcd", "%D+", "abcd", true },
+ { "ab23", "%d+", "23", true },
+
+ // %l lower characters (a-z)
+ { "lowerCASE", "%l+", "lower", true },
+ { "LOWERcase", "%l+", "case", true },
+ { "LOWERcase", "%L+", "LOWER", true },
+
+ // %p punctionation characters (!, ?, &, ...)
+ { "!?&", "%p+", "!?&", true },
+ { "abc!abc", "%p", "!", true },
+ { "!abc!", "%P+", "abc", true },
+
+ // %s space characters
+ { " ", "%s", " ", true },
+ { "a", "%S", "a", true },
+ { "abc ", "%s+", " ", true },
+
+ // %u upper characters (A-Z)
+ { "lowerCASE", "%u+", "CASE", true },
+ { "LOWERcase", "%u+", "LOWER", true },
+ { "LOWERcase", "%U+", "case", true },
+
+ // %w alpha numeric (A-Z, a-z, 0-9)
+ { "0123", "%w+", "0123", true },
+ { "abcd", "%W+", "", false },
+ { "ab23", "%w+", "ab23", true },
+
+ // %x hexadecimal digits (0x1A, ...)
+ { "3", "%x", "3", true },
+ { "9f", "%x+", "9f", true },
+ { "9g", "%x+", "9", true },
+ { "9g", "%X+", "g", true },
+
+ // random tests
+ { "f123", "%D", "f", true },
+ { "f123", "%d", "1", true },
+ { "f123", "%d+", "123", true },
+ { "foo 123 bar", "%d%d%d", "123", true },
+ { "Uppercase", "%u", "U", true },
+ { "abcd", "[bc][bc]", "bc", true },
+ { "abcd", "[^ad]", "b", true },
+ { "123", "[0-9]", "1", true },
+
+ // end of line
+ { "testing this", "this$", "this", true },
+ { "testing this ", "this$", "", false },
+ { "testing this$", "this%$$", "this$", true },
+
+ // start of line
+ { "testing this", "^testing", "testing", true },
+ { " testing this", "^testing", "", false },
+ { "testing this", "^%w+", "testing", true },
+ { " testing this", "^%w+", "", false },
+
+ // balanced string %b
+ { "testing (this) out", "%b()", "(this)", true },
+ { "testing athisz out", "%baz", "athisz", true },
+ { "testing _this_ out", "%b__", "_this_", true },
+ { "testing _this_ out", "%b_", "", false },
+ }
+
+ for entry, i in ENTRIES {
+ matcher := match.matcher_init(entry.s, entry.p)
+ result, ok := match.matcher_match(&matcher)
+ success := entry.ok == ok && result == entry.result
+
+ if failed(t, success) {
+ logf(t, "Match %d failed!\n", i)
+ logf(t, "\tHAYSTACK %s\tPATTERN %s\n", entry.s, entry.p)
+ logf(t, "\tResults: WANTED %s\tGOT %s\n", entry.result, result)
+ logf(t, "\tErr: %v\tLength %d\n", matcher.err, matcher.captures_length)
+ }
+ }
+}
+
+@test
+test_captures :: proc(t: ^testing.T) {
+ Temp :: struct {
+ pattern: string,
+ captures: [match.MAX_CAPTURES]match.Match,
+ }
+
+ // match all captures
+ compare_captures :: proc(t: ^testing.T, test: ^Temp, haystack: string, comp: []string, loc := #caller_location) {
+ length, err := match.find_aux(haystack, test.pattern, 0, false, &test.captures)
+ if failed(t, len(comp) == length) {
+ logf(t, "Captures Compare Failed -> Lengths %d != %d\n", len(comp), length)
+ }
+
+ for i in 0..<length {
+ cap := test.captures[i]
+ text := haystack[cap.byte_start:cap.byte_end]
+
+ if failed(t, comp[i] == text) {
+ logf(t, "Capture don't equal -> %s != %s\n", comp[i], text)
+ }
+ }
+ }
+
+ // match to expected results
+ matches :: proc(t: ^testing.T, test: ^Temp, haystack: string, ok: bool, loc := #caller_location) {
+ length, err := match.find_aux(haystack, test.pattern, 0, false, &test.captures)
+ result := length > 0 && err == .OK
+
+ if failed(t, result == ok) {
+ logf(t, "Capture match failed!\n")
+ logf(t, "\tErr: %v\n", err)
+ logf(t, "\tLength: %v\n", length)
+ }
+ }
+
+ temp := Temp { pattern = "(one).+" }
+ compare_captures(t, &temp, " one two", { "one two", "one" })
+ compare_captures(t, &temp, "three", {})
+
+ matches(t, &temp, "one dog", true)
+ matches(t, &temp, "dog one ", true)
+ matches(t, &temp, "dog one", false)
+
+ temp.pattern = "^(%a+)"
+ matches(t, &temp, "one dog", true)
+ matches(t, &temp, " one dog", false)
+
+ // multiple captures
+ {
+ haystack := " 233 hello dolly"
+ pattern := "%s*(%d+)%s+(%S+)"
+ captures: [match.MAX_CAPTURES]match.Match
+ match.find_aux(haystack, pattern, 0, false, &captures)
+ cap1 := captures[1]
+ cap2 := captures[2]
+ text1 := haystack[cap1.byte_start:cap1.byte_end]
+ text2 := haystack[cap2.byte_start:cap2.byte_end]
+ expect(t, text1 == "233", "Multi-Capture failed at 1")
+ expect(t, text2 == "hello", "Multi-Capture failed at 2")
+ }
+}
+
+gmatch_check :: proc(t: ^testing.T, index: int, a: []string, b: string) {
+ if failed(t, a[index] == b) {
+ logf(t, "GMATCH %d failed!\n", index)
+ logf(t, "\t%s != %s\n", a[index], b)
+ }
+}
+
+@test
+test_gmatch :: proc(t: ^testing.T) {
+ {
+ matcher := match.matcher_init("testing this out 123", "%w+")
+ output := [?]string { "testing", "this", "out", "123" }
+
+ for match, index in match.matcher_gmatch(&matcher) {
+ gmatch_check(t, index, output[:], match)
+ }
+ }
+
+ {
+ matcher := match.matcher_init("#afdde6", "%x%x")
+ output := [?]string { "af", "dd", "e6" }
+
+ for match, index in match.matcher_gmatch(&matcher) {
+ gmatch_check(t, index, output[:], match)
+ }
+ }
+
+ {
+ matcher := match.matcher_init("testing outz captures yo outz outtz", "(out)z")
+ output := [?]string { "out", "out" }
+
+ for match, index in match.matcher_gmatch(&matcher) {
+ gmatch_check(t, index, output[:], match)
+ }
+ }
+}
+
+@test
+test_gsub :: proc(t: ^testing.T) {
+ result := match.gsub("testing123testing", "%d+", " sup ", context.temp_allocator)
+ expect(t, result == "testing sup testing", "GSUB 0: failed")
+ result = match.gsub("testing123testing", "%a+", "345", context.temp_allocator)
+ expect(t, result == "345123345", "GSUB 1: failed")
+}
+
+@test
+test_gfind :: proc(t: ^testing.T) {
+ haystack := "test1 123 test2 123 test3"
+ pattern := "%w+"
+ captures: [match.MAX_CAPTURES]match.Match
+ s := &haystack
+ output := [?]string { "test1", "123", "test2", "123", "test3" }
+ index: int
+
+ for word in match.gfind(s, pattern, &captures) {
+ if failed(t, output[index] == word) {
+ logf(t, "GFIND %d failed!\n", index)
+ logf(t, "\t%s != %s\n", output[index], word)
+ }
+ index += 1
+ }
+}
+
+@test
+test_frontier :: proc(t: ^testing.T) {
+ Temp :: struct {
+ t: ^testing.T,
+ index: int,
+ output: [3]string,
+ }
+
+ call :: proc(data: rawptr, word: string, haystack: string, captures: []match.Match) {
+ temp := cast(^Temp) data
+
+ if failed(temp.t, word == temp.output[temp.index]) {
+ logf(temp.t, "GSUB_WITH %d failed!\n", temp.index)
+ logf(temp.t, "\t%s != %s\n", temp.output[temp.index], word)
+ }
+
+ temp.index += 1
+ }
+
+ temp := Temp {
+ t = t,
+ output = {
+ "THE",
+ "QUICK",
+ "JUMPS",
+ },
+ }
+
+ // https://lua-users.org/wiki/FrontierPattern example taken from here
+ match.gsub_with("THE (QUICK) brOWN FOx JUMPS", "%f[%a]%u+%f[%A]", &temp, call)
+}
+
+@test
+test_utf8 :: proc(t: ^testing.T) {
+ matcher := match.matcher_init("恥ず べき恥 フク恥ロ", "%w+")
+ output := [?]string { "恥ず", "べき恥", "フク恥ロ" }
+
+ for match, index in match.matcher_gmatch(&matcher) {
+ gmatch_check(t, index, output[:], match)
+ }
+}
+
+@test
+test_case_insensitive :: proc(t: ^testing.T) {
+ {
+ pattern := match.pattern_case_insensitive("test", 256, context.temp_allocator)
+ goal := "[tT][eE][sS][tT]"
+
+ if failed(t, pattern == goal) {
+ logf(t, "Case Insensitive Pattern doesn't match result\n")
+ logf(t, "\t%s != %s\n", pattern, goal)
+ }
+ }
+}
+
+main :: proc() {
+ t: testing.T
+ stream := os.stream_from_handle(os.stdout)
+ w := io.to_writer(stream)
+ t.w = w
+
+ test_find(&t)
+ test_match(&t)
+ test_captures(&t)
+ test_gmatch(&t)
+ test_gsub(&t)
+ test_gfind(&t)
+ test_frontier(&t)
+ test_utf8(&t)
+ test_case_insensitive(&t)
+
+ fmt.wprintf(w, "%v/%v tests successful.\n", TEST_count - TEST_fail, TEST_count)
+ if TEST_fail > 0 {
+ os.exit(1)
+ }
+} \ No newline at end of file