aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_utf8.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-03-27 22:11:58 +0000
committerMatthew Wild <mwild1@gmail.com>2015-03-27 22:11:58 +0000
commiteaf02c2e7fef247e6ff9c4eeb9fb3dfb1c28e5c1 (patch)
tree05c689e53d3416f52f0e9c782cf05887e5fe14da /tests/test_utf8.lua
parent45e1b4d1da5e5c9825e23368d8de92c4c5c390de (diff)
parent382cb50f5196dd4a935a09f5515904820a3ea286 (diff)
downloadprosody-eaf02c2e7fef247e6ff9c4eeb9fb3dfb1c28e5c1.tar.gz
prosody-eaf02c2e7fef247e6ff9c4eeb9fb3dfb1c28e5c1.zip
Merge 0.9->0.10 (third time lucky)
Diffstat (limited to 'tests/test_utf8.lua')
-rw-r--r--tests/test_utf8.lua19
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