tests/test_utf8.lua
author Anton Shestakov <av6@dwimlabs.net>
Sat, 23 Jul 2016 20:24:14 +0800
changeset 7518 9e48299799d8
parent 6597 fa6eb6fb4a80
child 7964 ff556d010225
permissions -rw-r--r--
test_utf8: remove 2 unused variables and an undefined variable [luacheck]

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 valid = utf8.valid(data);
		assert_equal(valid, utf8.valid(data.." "));
		assert_equal(valid, expect == "pass", line);
	end
end