1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/preludes/tests_with_stats.v

92 lines
2.8 KiB
V
Raw Normal View History

module main
2019-12-30 07:23:54 +03:00
// /////////////////////////////////////////////////////////////////////
// / 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 ...
2019-12-30 07:23:54 +03:00
// /////////////////////////////////////////////////////////////////////
2020-04-26 09:32:05 +03:00
import os
import benchmark
2019-12-30 07:23:54 +03:00
const (
2020-05-22 18:36:09 +03:00
inner_indent = ' '
2019-12-30 07:23:54 +03:00
)
struct BenchedTests {
mut:
2020-05-18 22:38:06 +03:00
bench benchmark.Benchmark
2019-12-30 07:23:54 +03:00
oks int
fails int
test_suit_file string
step_func_name string
}
2020-05-22 18:36:09 +03:00
2019-12-30 07:23:54 +03:00
// ///////////////////////////////////////////////////////////////////
// Called at the start of the test program produced by `v -stats file_test.v`
2019-12-30 07:23:54 +03:00
fn start_testing(total_number_of_tests int, vfilename string) BenchedTests {
mut b := BenchedTests{
bench: benchmark.new_benchmark()
}
b.bench.set_total_expected_steps(total_number_of_tests)
b.test_suit_file = vfilename
println('running tests in: $b.test_suit_file')
return b
}
// Called before each test_ function, defined in file_test.v
2020-05-17 14:51:18 +03:00
fn (mut b BenchedTests) testing_step_start(stepfunc string) {
b.step_func_name = stepfunc.replace('main.', '').replace('__', '.')
2019-12-30 07:23:54 +03:00
b.oks = C.g_test_oks
b.fails = C.g_test_fails
b.bench.step()
}
// Called after each test_ function, defined in file_test.v
2020-05-17 14:51:18 +03:00
fn (mut b BenchedTests) testing_step_end() {
2019-12-30 07:23:54 +03:00
ok_diff := C.g_test_oks - b.oks
fail_diff := C.g_test_fails - b.fails
2019-12-30 07:23:54 +03:00
// ////////////////////////////////////////////////////////////////
if ok_diff == 0 && fail_diff == 0 {
b.bench.neither_fail_nor_ok()
2020-05-22 18:36:09 +03:00
println(inner_indent + b.bench.step_message_ok(' NO asserts | ') + b.fn_name())
return
2019-12-30 07:23:54 +03:00
}
// ////////////////////////////////////////////////////////////////
if ok_diff > 0 {
b.bench.ok_many(ok_diff)
}
if fail_diff > 0 {
b.bench.fail_many(fail_diff)
}
2019-12-30 07:23:54 +03:00
// ////////////////////////////////////////////////////////////////
if ok_diff > 0 && fail_diff == 0 {
2020-05-22 18:36:09 +03:00
println(inner_indent + b.bench.step_message_ok(nasserts(ok_diff)) + b.fn_name())
return
}
2019-12-30 07:23:54 +03:00
if fail_diff > 0 {
2020-05-22 18:36:09 +03:00
println(inner_indent + b.bench.step_message_fail(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`
2020-05-17 14:51:18 +03:00
fn (mut b BenchedTests) end_testing() {
b.bench.stop()
println(inner_indent + b.bench.total_message('running V tests in "' + os.file_name(b.test_suit_file) +
'"'))
}
2019-12-30 07:23:54 +03:00
// ///////////////////////////////////////////////////////////////////
fn nasserts(n int) string {
2019-12-30 07:23:54 +03:00
if n == 1 {
2020-03-30 18:21:32 +03:00
return '${n:5d} assert | '
2019-12-30 07:23:54 +03:00
}
return '${n:5d} asserts | '
}