aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-30 18:57:23 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-30 18:57:23 +0000
commita52274f5e6c2381874468a6e568511ae97f2b87a (patch)
tree6a1385f836eeb7bec274873dd013add1fac4ba18 /tests/test.lua
parent93aceeb147b71ce7a52f90acd2f3c569b004a483 (diff)
downloadprosody-a52274f5e6c2381874468a6e568511ae97f2b87a.tar.gz
prosody-a52274f5e6c2381874468a6e568511ae97f2b87a.zip
Add test for latin1toutf8 (which passes)
Diffstat (limited to 'tests/test.lua')
-rw-r--r--tests/test.lua40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 19aa8389..47a66afe 100644
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -4,6 +4,8 @@ function run_all_tests()
dotest "core.stanza_router"
dotest "core.s2smanager"
dotest "core.configmanager"
+
+ dosingletest("test_sasl.lua", "latin1toutf8");
end
local verbosity = tonumber(arg[1]) or 2;
@@ -26,6 +28,44 @@ function assert_equal(a, b, message)
end
end
+function dosingletest(testname, fname)
+ local tests = setmetatable({}, { __index = _G });
+ tests.__unit = testname;
+ tests.__test = fname;
+ local chunk, err = loadfile(testname);
+ if not chunk then
+ print("WARNING: ", "Failed to load tests for "..testname, err);
+ return;
+ end
+
+ setfenv(chunk, tests);
+ local success, err = pcall(chunk);
+ if not success then
+ print("WARNING: ", "Failed to initialise tests for "..testname, err);
+ return;
+ end
+
+ if type(tests[fname]) ~= "function" then
+ error(testname.." has no test '"..fname.."'", 0);
+ end
+
+
+ local line_hook, line_info = new_line_coverage_monitor(testname);
+ debug.sethook(line_hook, "l")
+ local success, ret = pcall(tests[fname]);
+ debug.sethook();
+ if not success then
+ print("TEST FAILED! Unit: ["..testname.."] Function: ["..fname.."]");
+ print(" Location: "..ret:gsub(":%s*\n", "\n"));
+ line_info(fname, false, report_file);
+ elseif verbosity >= 2 then
+ print("TEST SUCCEEDED: ", testname, fname);
+ print(string.format("TEST COVERED %d/%d lines", line_info(fname, true, report_file)));
+ else
+ line_info(name, success, report_file);
+ end
+end
+
function dotest(unitname)
local tests = setmetatable({}, { __index = _G });
tests.__unit = unitname;