81 lines
2.6 KiB
V
81 lines
2.6 KiB
V
module main
|
|
|
|
// /////////////////////////////////////////////////////////////////////
|
|
// / This file will get compiled as a part of the same module,
|
|
// / in which a given _test.v file is, when v is given -stats argument
|
|
// / The methods defined here are called back by the test program's
|
|
// / main function, so that customizing the look & feel of the results
|
|
// / is easy, since it is done in normal V code, instead of in embedded C ...
|
|
// /////////////////////////////////////////////////////////////////////
|
|
const inner_indent = ' '
|
|
|
|
struct BenchedTests {
|
|
mut:
|
|
oks int
|
|
fails int
|
|
test_suit_file string
|
|
step_func_name string
|
|
total_number_of_tests int
|
|
}
|
|
|
|
// ///////////////////////////////////////////////////////////////////
|
|
// Called at the start of the test program produced by `v -stats file_test.v`
|
|
fn start_testing(total_number_of_tests int, vfilename string) BenchedTests {
|
|
mut benched_tests_res := BenchedTests{}
|
|
benched_tests_res.total_number_of_tests = total_number_of_tests
|
|
benched_tests_res.test_suit_file = vfilename
|
|
println('running tests in: $benched_tests_res.test_suit_file')
|
|
return benched_tests_res
|
|
}
|
|
|
|
// Called before each test_ function, defined in file_test.v
|
|
fn (mut b BenchedTests) testing_step_start(stepfunc string) {
|
|
b.step_func_name = stepfunc.replace('main.', '').replace('__', '.')
|
|
b.oks = C.g_test_oks
|
|
b.fails = C.g_test_fails
|
|
}
|
|
|
|
// Called after each test_ function, defined in file_test.v
|
|
fn (mut b BenchedTests) testing_step_end() {
|
|
ok_diff := C.g_test_oks - b.oks
|
|
fail_diff := C.g_test_fails - b.fails
|
|
// ////////////////////////////////////////////////////////////////
|
|
if ok_diff == 0 && fail_diff == 0 {
|
|
println(inner_indent + ' NO asserts | ' + b.fn_name())
|
|
return
|
|
}
|
|
// ////////////////////////////////////////////////////////////////
|
|
if ok_diff > 0 {
|
|
// b.bench.ok_many(ok_diff)
|
|
}
|
|
if fail_diff > 0 {
|
|
// b.bench.fail_many(fail_diff)
|
|
}
|
|
// ////////////////////////////////////////////////////////////////
|
|
if ok_diff > 0 && fail_diff == 0 {
|
|
println(inner_indent + nasserts(ok_diff) + b.fn_name())
|
|
return
|
|
}
|
|
if fail_diff > 0 {
|
|
println(inner_indent + nasserts(fail_diff) + b.fn_name())
|
|
return
|
|
}
|
|
}
|
|
|
|
fn (b &BenchedTests) fn_name() string {
|
|
return b.step_func_name + '()'
|
|
}
|
|
|
|
// Called at the end of the test program produced by `v -stats file_test.v`
|
|
fn (mut b BenchedTests) end_testing() {
|
|
println(inner_indent + 'running V tests in "' + b.test_suit_file + '"')
|
|
}
|
|
|
|
// ///////////////////////////////////////////////////////////////////
|
|
fn nasserts(n int) string {
|
|
if n == 1 {
|
|
return '${n:5d} assert | '
|
|
}
|
|
return '${n:5d} asserts | '
|
|
}
|