v/cmd/tools/modules/testing/common.v

394 lines
10 KiB
V
Raw Normal View History

2019-12-01 10:50:13 +01:00
module testing
2020-04-26 08:32:05 +02:00
import os
import time
2020-04-26 08:32:05 +02:00
import term
import benchmark
import sync
import v.pref
import v.util.vtest
2019-12-01 10:50:13 +01:00
pub struct TestSession {
pub mut:
files []string
skip_files []string
vexe string
vroot string
2020-12-01 16:43:34 +01:00
vtmp_dir string
vargs string
failed bool
benchmark benchmark.Benchmark
2020-12-01 16:43:34 +01:00
rm_binaries bool = true
2020-10-18 19:02:47 +02:00
silent_mode bool
progress_mode bool
root_relative bool // used by CI runs, so that the output is stable everywhere
nmessages chan LogMessage // many publishers, single consumer/printer
nmessage_idx int // currently printed message index
nprint_ended chan int // read to block till printing ends, 1:1
2019-12-01 10:50:13 +01:00
}
enum MessageKind {
ok
fail
skip
sentinel
}
struct LogMessage {
message string
kind MessageKind
}
pub fn (mut ts TestSession) append_message(kind MessageKind, msg string) {
ts.nmessages <- LogMessage{
message: msg
kind: kind
}
}
pub fn (mut ts TestSession) print_messages() {
empty := term.header(' ', ' ')
2020-10-18 19:02:47 +02:00
mut print_msg_time := time.new_stopwatch({})
for {
2020-10-18 19:02:47 +02:00
// get a message from the channel of messages to be printed:
mut rmessage := <-ts.nmessages
if rmessage.kind == .sentinel {
// a sentinel for stopping the printing thread
2020-10-18 19:02:47 +02:00
if !ts.silent_mode && ts.progress_mode {
eprintln('')
}
ts.nprint_ended <- 0
return
}
ts.nmessage_idx++
msg := rmessage.message.replace_each([
'TMP1',
'${ts.nmessage_idx:1d}',
'TMP2',
'${ts.nmessage_idx:2d}',
'TMP3',
'${ts.nmessage_idx:3d}',
'TMP4',
'${ts.nmessage_idx:4d}',
])
is_ok := rmessage.kind == .ok
2020-10-18 19:02:47 +02:00
//
time_passed := print_msg_time.elapsed().seconds()
if time_passed > 10 && ts.silent_mode && is_ok {
// Even if OK tests are suppressed,
// show *at least* 1 result every 10 seconds,
// otherwise the CI can seem stuck ...
eprintln(msg)
2020-10-18 19:02:47 +02:00
print_msg_time.restart()
continue
}
if ts.progress_mode {
// progress mode, the last line is rewritten many times:
if is_ok && !ts.silent_mode {
print('\r$empty\r$msg')
} else {
// the last \n is needed, so SKIP/FAIL messages
// will not get overwritten by the OK ones
eprint('\r$empty\r$msg\n')
}
2020-10-18 19:02:47 +02:00
continue
}
if !ts.silent_mode || !is_ok {
// normal expanded mode, or failures in -silent mode
eprintln(msg)
continue
}
}
}
2020-03-06 18:53:29 +01:00
pub fn new_test_session(_vargs string) TestSession {
2020-04-26 13:49:31 +02:00
mut skip_files := []string{}
skip_files << '_non_existing_'
$if solaris {
skip_files << 'examples/gg/gg2.v'
skip_files << 'examples/pico/pico.v'
skip_files << 'examples/sokol/fonts.v'
skip_files << 'examples/sokol/drawing.v'
}
$if windows {
skip_files << 'examples/x/websocket/ping.v' // requires OpenSSL
}
2020-10-18 19:02:47 +02:00
vargs := _vargs.replace('-progress', '').replace('-progress', '')
vexe := pref.vexe_path()
2020-12-01 16:43:34 +01:00
new_vtmp_dir := setup_new_vtmp_folder()
2019-12-01 10:50:13 +01:00
return TestSession{
vexe: vexe
vroot: os.dir(vexe)
skip_files: skip_files
2019-12-01 10:50:13 +01:00
vargs: vargs
2020-12-01 16:43:34 +01:00
vtmp_dir: new_vtmp_dir
2020-10-18 19:02:47 +02:00
silent_mode: _vargs.contains('-silent')
progress_mode: _vargs.contains('-progress')
2019-12-01 10:50:13 +01:00
}
}
2020-05-17 13:51:18 +02:00
pub fn (mut ts TestSession) init() {
ts.files.sort()
2020-04-18 04:49:03 +02:00
ts.benchmark = benchmark.new_benchmark_no_cstep()
2019-12-01 10:50:13 +01:00
}
2020-05-17 13:51:18 +02:00
pub fn (mut ts TestSession) test() {
// Ensure that .tmp.c files generated from compiling _test.v files,
// are easy to delete at the end, *without* affecting the existing ones.
current_wd := os.getwd()
if current_wd == os.wd_at_startup && current_wd == ts.vroot {
ts.root_relative = true
}
//
2019-12-01 10:50:13 +01:00
ts.init()
2020-04-26 13:49:31 +02:00
mut remaining_files := []string{}
2019-12-01 10:50:13 +01:00
for dot_relative_file in ts.files {
relative_file := dot_relative_file.replace('./', '')
2020-03-20 16:41:18 +01:00
file := os.real_path(relative_file)
2019-12-01 10:50:13 +01:00
$if windows {
2020-01-18 07:27:50 +01:00
if file.contains('sqlite') || file.contains('httpbin') {
continue
}
2019-12-01 10:50:13 +01:00
}
2019-12-06 00:11:39 +01:00
$if !macos {
if file.contains('customer') {
continue
}
2019-12-06 00:11:39 +01:00
}
2019-12-01 10:50:13 +01:00
$if msvc {
if file.contains('asm') {
continue
}
2019-12-01 10:50:13 +01:00
}
$if tinyc {
if file.contains('asm') {
continue
}
2019-12-01 10:50:13 +01:00
}
2019-12-30 05:23:54 +01:00
remaining_files << dot_relative_file
}
remaining_files = vtest.filter_vtest_only(remaining_files, fix_slashes: false)
ts.files = remaining_files
2019-12-30 05:23:54 +01:00
ts.benchmark.set_total_expected_steps(remaining_files.len)
mut pool_of_test_runners := sync.new_pool_processor(callback: worker_trunner)
2020-04-18 04:49:03 +02:00
// for handling messages across threads
ts.nmessages = chan LogMessage{cap: 10000}
ts.nprint_ended = chan int{cap: 0}
ts.nmessage_idx = 0
go ts.print_messages()
pool_of_test_runners.set_shared_context(ts)
pool_of_test_runners.work_on_pointers(remaining_files.pointers())
ts.benchmark.stop()
ts.append_message(.sentinel, '') // send the sentinel
_ := <-ts.nprint_ended // wait for the stop of the printing thread
2020-01-28 05:18:19 +01:00
eprintln(term.h_divider('-'))
// cleanup generated .tmp.c files after successfull tests:
if ts.benchmark.nfail == 0 {
2020-12-01 16:43:34 +01:00
if ts.rm_binaries {
os.rmdir_all(ts.vtmp_dir)
}
}
}
2020-06-04 10:35:40 +02:00
fn worker_trunner(mut p sync.PoolProcessor, idx int, thread_id int) voidptr {
mut ts := &TestSession(p.get_shared_context())
2020-12-01 16:43:34 +01:00
tmpd := ts.vtmp_dir
show_stats := '-stats' in ts.vargs.split(' ')
// tls_bench is used to format the step messages/timings
mut tls_bench := &benchmark.Benchmark(p.get_thread_context(idx))
if isnil(tls_bench) {
tls_bench = benchmark.new_benchmark_pointer()
tls_bench.set_total_expected_steps(ts.benchmark.nexpected_steps)
p.set_thread_context(idx, tls_bench)
}
2020-04-18 04:49:03 +02:00
tls_bench.no_cstep = true
dot_relative_file := p.get_string_item(idx)
mut relative_file := dot_relative_file.replace('./', '')
if ts.root_relative {
relative_file = relative_file.replace(ts.vroot + os.path_separator, '')
}
2020-03-20 16:41:18 +01:00
file := os.real_path(relative_file)
// Ensure that the generated binaries will be stored in the temporary folder.
// Remove them after a test passes/fails.
2020-03-19 15:49:07 +01:00
fname := os.file_name(file)
generated_binary_fname := if os.user_os() == 'windows' { fname.replace('.v', '.exe') } else { fname.replace('.v',
'') }
2020-03-09 02:23:34 +01:00
generated_binary_fpath := os.join_path(tmpd, generated_binary_fname)
if os.exists(generated_binary_fpath) {
2020-12-01 16:43:34 +01:00
if ts.rm_binaries {
os.rm(generated_binary_fpath)
}
}
mut cmd_options := [ts.vargs]
if !ts.vargs.contains('fmt') {
cmd_options << ' -o "$generated_binary_fpath"'
}
cmd := '"$ts.vexe" ' + cmd_options.join(' ') + ' "$file"'
ts.benchmark.step()
tls_bench.step()
2020-04-11 16:57:02 +02:00
if relative_file.replace('\\', '/') in ts.skip_files {
ts.benchmark.skip()
tls_bench.skip()
ts.append_message(.skip, tls_bench.step_message_skip(relative_file))
return sync.no_result
}
if show_stats {
ts.append_message(.ok, term.h_divider('-'))
status := os.system(cmd)
if status == 0 {
ts.benchmark.ok()
tls_bench.ok()
} else {
ts.failed = true
ts.benchmark.fail()
tls_bench.fail()
return sync.no_result
}
} else {
r := os.exec(cmd) or {
ts.failed = true
ts.benchmark.fail()
tls_bench.fail()
ts.append_message(.fail, tls_bench.step_message_fail(relative_file))
return sync.no_result
}
if r.exit_code != 0 {
ts.failed = true
ts.benchmark.fail()
tls_bench.fail()
ts.append_message(.fail, tls_bench.step_message_fail('$relative_file\n$r.output\n'))
} else {
ts.benchmark.ok()
tls_bench.ok()
ts.append_message(.ok, tls_bench.step_message_ok(relative_file))
2019-12-01 10:50:13 +01:00
}
}
if os.exists(generated_binary_fpath) {
2020-12-01 16:43:34 +01:00
if ts.rm_binaries {
os.rm(generated_binary_fpath)
}
}
return sync.no_result
2019-12-01 10:50:13 +01:00
}
pub fn vlib_should_be_present(parent_dir string) {
vlib_dir := os.join_path(parent_dir, 'vlib')
if !os.is_dir(vlib_dir) {
2019-12-01 14:12:51 +01:00
eprintln('$vlib_dir is missing, it must be next to the V executable')
2019-12-01 10:50:13 +01:00
exit(1)
}
}
pub fn v_build_failing(zargs string, folder string) bool {
return v_build_failing_skipped(zargs, folder, [])
}
2020-12-01 16:43:34 +01:00
pub fn prepare_test_session(zargs string, folder string, oskipped []string, main_label string) TestSession {
2020-02-20 11:33:01 +01:00
vexe := pref.vexe_path()
2020-03-07 22:26:26 +01:00
parent_dir := os.dir(vexe)
vlib_should_be_present(parent_dir)
vargs := zargs.replace(vexe, '')
2020-02-08 17:01:10 +01:00
eheader(main_label)
if vargs.len > 0 {
eprintln('v compiler args: "$vargs"')
}
mut session := new_test_session(vargs)
2020-03-09 02:23:34 +01:00
files := os.walk_ext(os.join_path(parent_dir, folder), '.v')
2020-04-26 13:49:31 +02:00
mut mains := []string{}
mut skipped := oskipped.clone()
for f in files {
if !f.contains('modules') && !f.contains('preludes') {
// $if !linux {
// run pg example only on linux
if f.contains('/pg/') {
continue
}
// }
2020-06-07 15:44:33 +02:00
if f.contains('life_gg') || f.contains('/graph.v') || f.contains('rune.v') {
2020-06-02 15:49:43 +02:00
continue
}
$if windows {
// skip pico example on windows
if f.ends_with('examples\\pico\\pico.v') {
continue
}
}
c := os.read_file(f) or { panic(err) }
maxc := if c.len > 300 { 300 } else { c.len }
start := c[0..maxc]
if start.contains('module ') && !start.contains('module main') {
skipped_f := f.replace(os.join_path(parent_dir, ''), '')
skipped << skipped_f
}
mains << f
}
}
session.files << mains
session.skip_files << skipped
2020-12-01 16:43:34 +01:00
return session
}
pub fn v_build_failing_skipped(zargs string, folder string, oskipped []string) bool {
main_label := 'Building $folder ...'
finish_label := 'building $folder'
mut session := prepare_test_session(zargs, folder, oskipped, main_label)
2019-12-01 10:50:13 +01:00
session.test()
eprintln(session.benchmark.total_message(finish_label))
2019-12-01 10:50:13 +01:00
return session.failed
}
2019-12-01 14:12:51 +01:00
pub fn build_v_cmd_failed(cmd string) bool {
res := os.exec(cmd) or { return true }
2019-12-01 14:12:51 +01:00
if res.exit_code != 0 {
eprintln('')
eprintln(res.output)
2019-12-01 14:12:51 +01:00
return true
}
return false
}
pub fn building_any_v_binaries_failed() bool {
2020-02-08 17:01:10 +01:00
eheader('Building V binaries...')
2019-12-01 14:12:51 +01:00
eprintln('VFLAGS is: "' + os.getenv('VFLAGS') + '"')
2020-02-20 11:33:01 +01:00
vexe := pref.vexe_path()
2020-03-07 22:26:26 +01:00
parent_dir := os.dir(vexe)
vlib_should_be_present(parent_dir)
os.chdir(parent_dir)
2019-12-06 00:11:39 +01:00
mut failed := false
v_build_commands := ['$vexe -o v_g -g cmd/v', '$vexe -o v_prod_g -prod -g cmd/v',
'$vexe -o v_cg -cg cmd/v', '$vexe -o v_prod_cg -prod -cg cmd/v', '$vexe -o v_prod -prod cmd/v']
2019-12-01 14:12:51 +01:00
mut bmark := benchmark.new_benchmark()
2019-12-06 00:11:39 +01:00
for cmd in v_build_commands {
2019-12-01 14:12:51 +01:00
bmark.step()
if build_v_cmd_failed(cmd) {
bmark.fail()
failed = true
eprintln(bmark.step_message_fail('command: $cmd . See details above ^^^^^^^'))
2019-12-01 14:12:51 +01:00
eprintln('')
continue
}
bmark.ok()
eprintln(bmark.step_message_ok('command: $cmd'))
2019-12-01 14:12:51 +01:00
}
bmark.stop()
2020-01-28 05:18:19 +01:00
eprintln(term.h_divider('-'))
eprintln(bmark.total_message('building v binaries'))
2019-12-01 14:12:51 +01:00
return failed
}
2020-02-08 17:01:10 +01:00
pub fn eheader(msg string) {
eprintln(term.header(msg, '-'))
2020-02-08 17:01:10 +01:00
}
pub fn header(msg string) {
println(term.header(msg, '-'))
2020-02-08 17:01:10 +01:00
}
pub fn setup_new_vtmp_folder() string {
now := time.sys_mono_now()
new_vtmp_dir := os.join_path(os.temp_dir(), 'v', 'test_session_$now')
os.mkdir_all(new_vtmp_dir)
os.setenv('VTMP', new_vtmp_dir, true)
return new_vtmp_dir
}