Add NotRun tests

This commit is contained in:
Bruce Hill 2025-03-25 02:39:33 -04:00
parent 94af62e581
commit 6c53216b98

View File

@ -27,9 +27,11 @@ LESSONS := [
Lesson((./lessons/lesson-16-reducers.tm), "Reducers"), Lesson((./lessons/lesson-16-reducers.tm), "Reducers"),
] ]
enum TestResult(Success(output:Text), Error(err:Text), WrongOutput(actual:Text, expected:Text)): enum TestResult(NotRun, Success(output:Text), Error(err:Text), WrongOutput(actual:Text, expected:Text)):
func print(result:TestResult): func print(result:TestResult):
when result is Success(s): when result is NotRun:
pass
is Success(s):
$Colorful" $Colorful"
@(b,u:Program Output:) @(b,u:Program Output:)
@(green:$s) @(green:$s)
@ -80,22 +82,21 @@ func summarize_tests(results:[TestResult], highlight=none:Path):
passing := 0 passing := 0
failing := 0 failing := 0
for i,lesson in LESSONS: for i,lesson in LESSONS:
result := results[i] when results[i] is Success:
if result:is_success():
passing += 1 passing += 1
$Colorful" $Colorful"
@(green,bold:$(Text(i):left_pad(2)): "$(lesson.description)" (passes)) @(green,bold:$(Text(i):left_pad(2)): "$(lesson.description)" (passes))
":print() ":print()
is NotRun:
failing += 1
$Colorful"
@(dim:$(Text(i):left_pad(2)): "$(lesson.description)" (not yet attempted))
":print()
else: else:
failing += 1 failing += 1
if lesson.file == highlight or (highlight == none:Path and failing == 1): $Colorful"
$Colorful" @(red:$(Text(i):left_pad(2)): "$(lesson.description)" (failing))
@(red:$(Text(i):left_pad(2)): "$(lesson.description)" (not yet passing)) ":print()
":print()
else:
$Colorful"
@(dim:$(Text(i):left_pad(2)): "$(lesson.description)" (not yet passing))
":print()
completed := (Num(passing)/Num(passing+failing))! completed := (Num(passing)/Num(passing+failing))!
$Colorful" $Colorful"
@ -107,10 +108,12 @@ func summarize_tests(results:[TestResult], highlight=none:Path):
func short_summarize_tests(results:[TestResult]): func short_summarize_tests(results:[TestResult]):
say("Progress: ", newline=no) say("Progress: ", newline=no)
for result in results: for result in results:
if result:is_success(): when result is Success:
$Colorful"@(green,bold:#)":print(newline=no) $Colorful"@(green,bold:#)":print(newline=no)
is NotRun:
$Colorful"@(dim:#)":print(newline=no)
else: else:
$Colorful"@(red,dim:#)":print(newline=no) $Colorful"@(red:#)":print(newline=no)
say(\n) say(\n)
@ -142,10 +145,15 @@ func show_lesson(lesson:Lesson, result:TestResult):
":print() ":print()
result:print() result:print()
if result:is_success(): when result is Success:
$Colorful" $Colorful"
@(green,b:✨ Great job, this test is passing! ✨) @(green,b:✨ Great job, this test is passing! ✨)
":print()
is NotRun:
$Colorful"
@(dim,italic:...nothing, edit the file to make your first attempt...)
":print() ":print()
else: else:
$Colorful" $Colorful"
@ -200,7 +208,7 @@ func main(clean=no -> Abort):
cp -r lesson-templates lessons cp -r lesson-templates lessons
":run():or_fail("Could not make lessons directory") ":run():or_fail("Could not make lessons directory")
test_results := &[l:get_result() for l in LESSONS] test_results := &[TestResult.NotRun for l in LESSONS]
ask_continue() ask_continue()
repeat: repeat: