-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tests): improve test runner system
* Implements an extension to frktest's `lune_console_reporter` for displaying status of individual running test cases and suites -- with colors :O! * Include mechanism for running select tests using the test runner script.
- Loading branch information
Showing
6 changed files
with
104 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
local stdio = require("@lune/stdio") | ||
|
||
local frktest = require("@pkg/frktest") | ||
local Reporter = frktest._reporters.lune_console_reporter | ||
|
||
local STYLE = table.freeze({ | ||
suite = function(name: string) | ||
return `{stdio.style("bold")}{stdio.color("purple")}SUITE{stdio.style("reset")} {name}` | ||
end, | ||
|
||
report = function(name: string, state: "run" | "success" | "error" | "skip") | ||
local state_color: stdio.Color = if state == "run" | ||
then "white" | ||
elseif state == "success" then "green" | ||
elseif state == "error" then "red" | ||
elseif state == "skip" then "yellow" | ||
else error("Invalid test state") | ||
return ` {stdio.style("bold")}{stdio.color(state_color)}{if state == "skip" then "SKIP" else "TEST"}{stdio.style( | ||
"reset" | ||
)} {name}` | ||
end, | ||
}) | ||
|
||
--- Clears a the previous line, and moves to its beginning | ||
local function clear_last_line(): () | ||
return stdio.write("\x1b[A\x1b[K\x1b[0G\x1b[?25h") | ||
end | ||
|
||
local ReporterExt = {} | ||
function ReporterExt.init() | ||
frktest.test.on_suite_enter(function(suite) | ||
print(STYLE.suite(suite.name)) | ||
end) | ||
|
||
frktest.test.on_suite_leave(function() | ||
stdio.write("\n") | ||
end) | ||
|
||
frktest.test.on_test_enter(function(test) | ||
print(STYLE.report(test.name, "run")) | ||
end) | ||
|
||
frktest.test.on_test_leave(function(test) | ||
clear_last_line() | ||
print(STYLE.report(test.name, if test.failed then "error" else "success")) | ||
end) | ||
|
||
frktest.test.on_test_skipped(function(test) | ||
print(STYLE.report(test.name, "skip")) | ||
end) | ||
|
||
Reporter.init() | ||
end | ||
|
||
return setmetatable(ReporterExt, { __index = Reporter }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters