diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-03-23 17:16:54 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-03-23 17:16:54 +0000 |
commit | fa4ef8d7ff12a38a5f1d07e2a0b64d7f92bd1142 (patch) | |
tree | 76bb4e5cd4f5d11ff9d69d45e66ec9d9aac9a957 /tests/test_utf8.lua | |
parent | 9168d7b0898104a0dd5cc3df37a7108e2aebb425 (diff) | |
download | prosody-fa4ef8d7ff12a38a5f1d07e2a0b64d7f92bd1142.tar.gz prosody-fa4ef8d7ff12a38a5f1d07e2a0b64d7f92bd1142.zip |
tests: Add UTF-8 validity tests
Diffstat (limited to 'tests/test_utf8.lua')
-rw-r--r-- | tests/test_utf8.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/test_utf8.lua b/tests/test_utf8.lua new file mode 100644 index 00000000..481eff5d --- /dev/null +++ b/tests/test_utf8.lua @@ -0,0 +1,19 @@ +package.cpath = "../?.so" +package.path = "../?.lua"; + +function valid() + local encodings = require "util.encodings"; + local utf8 = assert(encodings.utf8, "no encodings.utf8 module"); + + for line in io.lines("utf8_sequences.txt") do + local data = line:match(":%s*([^#]+)"):gsub("%s+", ""):gsub("..", function (c) return string.char(tonumber(c, 16)); end) + local expect = line:match("(%S+):"); + if expect ~= "pass" and expect ~= "fail" then + error("unknown expectation: "..line:match("^[^:]+")); + end + local prefix, style = " ", valid_style; + local valid = utf8.valid(data); + assert_equal(valid, utf8.valid(data.." ")); + assert_equal(valid, expect == "pass", line); + end +end |