2019-12-01 10:50:13 +01:00
|
|
|
module testing
|
|
|
|
|
2020-04-26 08:32:05 +02:00
|
|
|
import os
|
2020-07-06 14:08:38 +02:00
|
|
|
import time
|
2020-04-26 08:32:05 +02:00
|
|
|
import term
|
|
|
|
import benchmark
|
2021-02-11 09:55:23 +01:00
|
|
|
import sync.pool
|
2020-04-26 08:32:05 +02:00
|
|
|
import v.pref
|
2020-08-05 18:34:27 +02:00
|
|
|
import v.util.vtest
|
2021-10-11 12:10:55 +02:00
|
|
|
import runtime
|
2019-12-01 10:50:13 +01:00
|
|
|
|
2021-11-15 10:44:54 +01:00
|
|
|
pub const github_job = os.getenv('GITHUB_JOB')
|
2021-01-03 16:56:55 +01:00
|
|
|
|
2021-11-15 10:44:54 +01:00
|
|
|
pub const show_start = os.getenv('VTEST_SHOW_START') == '1'
|
2021-01-25 15:29:56 +01:00
|
|
|
|
2021-11-15 10:44:54 +01:00
|
|
|
pub const hide_skips = os.getenv('VTEST_HIDE_SKIP') == '1'
|
2021-05-08 12:32:29 +02:00
|
|
|
|
2021-11-15 10:44:54 +01:00
|
|
|
pub const hide_oks = os.getenv('VTEST_HIDE_OK') == '1'
|
|
|
|
|
|
|
|
pub const fail_fast = os.getenv('VTEST_FAIL_FAST') == '1'
|
2021-05-08 12:32:29 +02:00
|
|
|
|
2021-12-20 16:22:02 +01:00
|
|
|
pub const test_only = os.getenv('VTEST_ONLY').split_any(',')
|
|
|
|
|
|
|
|
pub const test_only_fn = os.getenv('VTEST_ONLY_FN').split_any(',')
|
|
|
|
|
2021-12-07 20:31:29 +01:00
|
|
|
pub const is_node_present = os.execute('node --version').exit_code == 0
|
|
|
|
|
|
|
|
pub const all_processes = os.execute('ps ax').output.split_any('\r\n')
|
|
|
|
|
2019-12-01 10:50:13 +01:00
|
|
|
pub struct TestSession {
|
|
|
|
pub mut:
|
2020-03-04 20:28:42 +01:00
|
|
|
files []string
|
2020-03-21 09:48:02 +01:00
|
|
|
skip_files []string
|
2020-03-04 20:28:42 +01:00
|
|
|
vexe string
|
2020-03-21 09:48:02 +01:00
|
|
|
vroot string
|
2020-12-01 16:43:34 +01:00
|
|
|
vtmp_dir string
|
2020-03-04 20:28:42 +01:00
|
|
|
vargs string
|
|
|
|
failed bool
|
2021-11-15 10:44:54 +01:00
|
|
|
fail_fast bool
|
2020-03-04 20:28:42 +01:00
|
|
|
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
|
2020-09-18 17:35:38 +02:00
|
|
|
root_relative bool // used by CI runs, so that the output is stable everywhere
|
2020-11-04 12:38:05 +01:00
|
|
|
nmessages chan LogMessage // many publishers, single consumer/printer
|
2021-01-03 23:28:51 +01:00
|
|
|
nmessage_idx int // currently printed message index
|
2020-11-04 12:38:05 +01:00
|
|
|
nprint_ended chan int // read to block till printing ends, 1:1
|
2021-07-15 08:52:22 +02:00
|
|
|
failed_cmds shared []string
|
2019-12-01 10:50:13 +01:00
|
|
|
}
|
|
|
|
|
2020-11-04 12:38:05 +01:00
|
|
|
enum MessageKind {
|
|
|
|
ok
|
|
|
|
fail
|
|
|
|
skip
|
2021-01-25 15:29:56 +01:00
|
|
|
info
|
2020-11-04 12:38:05 +01:00
|
|
|
sentinel
|
|
|
|
}
|
|
|
|
|
|
|
|
struct LogMessage {
|
|
|
|
message string
|
|
|
|
kind MessageKind
|
|
|
|
}
|
|
|
|
|
2021-07-15 08:52:22 +02:00
|
|
|
pub fn (mut ts TestSession) add_failed_cmd(cmd string) {
|
|
|
|
lock ts.failed_cmds {
|
|
|
|
ts.failed_cmds << cmd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (mut ts TestSession) show_list_of_failed_tests() {
|
|
|
|
for i, cmd in ts.failed_cmds {
|
|
|
|
eprintln(term.failed('Failed command ${i + 1}:') + ' $cmd')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-04 12:38:05 +01:00
|
|
|
pub fn (mut ts TestSession) append_message(kind MessageKind, msg string) {
|
|
|
|
ts.nmessages <- LogMessage{
|
|
|
|
message: msg
|
|
|
|
kind: kind
|
|
|
|
}
|
2020-10-18 17:16:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (mut ts TestSession) print_messages() {
|
2020-10-18 18:00:32 +02:00
|
|
|
empty := term.header(' ', ' ')
|
2021-07-20 10:17:08 +02:00
|
|
|
mut print_msg_time := time.new_stopwatch()
|
2020-10-18 17:16:33 +02:00
|
|
|
for {
|
2020-10-18 19:02:47 +02:00
|
|
|
// get a message from the channel of messages to be printed:
|
|
|
|
mut rmessage := <-ts.nmessages
|
2020-11-04 12:38:05 +01:00
|
|
|
if rmessage.kind == .sentinel {
|
2020-10-18 18:00:32 +02:00
|
|
|
// a sentinel for stopping the printing thread
|
2020-10-18 19:02:47 +02:00
|
|
|
if !ts.silent_mode && ts.progress_mode {
|
2020-10-18 18:00:32 +02:00
|
|
|
eprintln('')
|
|
|
|
}
|
|
|
|
ts.nprint_ended <- 0
|
|
|
|
return
|
|
|
|
}
|
2021-01-25 16:58:01 +01:00
|
|
|
if rmessage.kind != .info {
|
|
|
|
ts.nmessage_idx++
|
|
|
|
}
|
2020-12-02 18:47:07 +01:00
|
|
|
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}',
|
|
|
|
])
|
2020-11-04 12:38:05 +01:00
|
|
|
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 ...
|
2020-10-18 18:00:32 +02:00
|
|
|
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 {
|
2020-10-18 18:00:32 +02:00
|
|
|
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-10-18 18:00:32 +02:00
|
|
|
}
|
2020-10-18 17:16:33 +02:00
|
|
|
}
|
2020-04-18 17:44:21 +02:00
|
|
|
}
|
|
|
|
|
2021-05-08 12:32:29 +02:00
|
|
|
pub fn new_test_session(_vargs string, will_compile bool) TestSession {
|
2020-04-26 13:49:31 +02:00
|
|
|
mut skip_files := []string{}
|
2021-05-08 12:32:29 +02:00
|
|
|
if will_compile {
|
2021-07-30 20:46:59 +02:00
|
|
|
$if msvc {
|
|
|
|
skip_files << 'vlib/v/tests/const_comptime_eval_before_vinit_test.v' // _constructor used
|
|
|
|
}
|
2021-05-08 12:32:29 +02:00
|
|
|
$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 macos {
|
|
|
|
skip_files << 'examples/database/mysql.v'
|
|
|
|
skip_files << 'examples/database/orm.v'
|
2021-06-07 17:22:45 +02:00
|
|
|
skip_files << 'examples/database/psql/customer.v'
|
2021-05-08 12:32:29 +02:00
|
|
|
}
|
|
|
|
$if windows {
|
|
|
|
skip_files << 'examples/database/mysql.v'
|
|
|
|
skip_files << 'examples/database/orm.v'
|
2022-02-16 08:18:51 +01:00
|
|
|
skip_files << 'examples/smtp/mail.v' // requires OpenSSL
|
2021-05-08 12:32:29 +02:00
|
|
|
skip_files << 'examples/websocket/ping.v' // requires OpenSSL
|
|
|
|
skip_files << 'examples/websocket/client-server/client.v' // requires OpenSSL
|
|
|
|
skip_files << 'examples/websocket/client-server/server.v' // requires OpenSSL
|
|
|
|
$if tinyc {
|
|
|
|
skip_files << 'examples/database/orm.v' // try fix it
|
|
|
|
}
|
|
|
|
}
|
2022-02-12 18:38:07 +01:00
|
|
|
$if windows {
|
|
|
|
// TODO: remove when closures on windows are supported
|
|
|
|
skip_files << 'examples/pendulum-simulation/animation.v'
|
|
|
|
skip_files << 'examples/pendulum-simulation/full.v'
|
|
|
|
skip_files << 'examples/pendulum-simulation/parallel.v'
|
|
|
|
skip_files << 'examples/pendulum-simulation/parallel_with_iw.v'
|
|
|
|
skip_files << 'examples/pendulum-simulation/sequential.v'
|
|
|
|
}
|
2021-05-08 12:32:29 +02:00
|
|
|
if testing.github_job != 'sokol-shaders-can-be-compiled' {
|
|
|
|
// These examples need .h files that are produced from the supplied .glsl files,
|
|
|
|
// using by the shader compiler tools in https://github.com/floooh/sokol-tools-bin/archive/pre-feb2021-api-changes.tar.gz
|
2022-01-27 20:16:00 +01:00
|
|
|
skip_files << 'examples/sokol/simple_shader_glsl/simple_shader.v'
|
2021-05-08 12:32:29 +02:00
|
|
|
skip_files << 'examples/sokol/02_cubes_glsl/cube_glsl.v'
|
|
|
|
skip_files << 'examples/sokol/03_march_tracing_glsl/rt_glsl.v'
|
|
|
|
skip_files << 'examples/sokol/04_multi_shader_glsl/rt_glsl.v'
|
|
|
|
skip_files << 'examples/sokol/05_instancing_glsl/rt_glsl.v'
|
|
|
|
// Skip obj_viewer code in the CI
|
|
|
|
skip_files << 'examples/sokol/06_obj_viewer/show_obj.v'
|
|
|
|
}
|
|
|
|
if testing.github_job != 'ubuntu-tcc' {
|
|
|
|
skip_files << 'examples/c_interop_wkhtmltopdf.v' // needs installation of wkhtmltopdf from https://github.com/wkhtmltopdf/packaging/releases
|
2022-01-09 18:53:36 +01:00
|
|
|
skip_files << 'examples/call_v_from_python/test.v' // the example only makes sense to be compiled, when python is installed
|
2021-05-08 12:32:29 +02:00
|
|
|
// the ttf_test.v is not interactive, but needs X11 headers to be installed, which is done only on ubuntu-tcc for now
|
|
|
|
skip_files << 'vlib/x/ttf/ttf_test.v'
|
2021-05-11 16:47:43 +02:00
|
|
|
skip_files << 'vlib/vweb/vweb_app_test.v' // imports the `sqlite` module, which in turn includes sqlite3.h
|
2021-05-08 12:32:29 +02:00
|
|
|
}
|
|
|
|
if testing.github_job != 'audio-examples' {
|
|
|
|
skip_files << 'examples/sokol/sounds/melody.v'
|
|
|
|
skip_files << 'examples/sokol/sounds/wav_player.v'
|
|
|
|
skip_files << 'examples/sokol/sounds/simple_sin_tones.v'
|
2021-02-11 01:23:03 +01:00
|
|
|
}
|
2021-01-03 16:56:55 +01:00
|
|
|
}
|
2020-10-18 19:02:47 +02:00
|
|
|
vargs := _vargs.replace('-progress', '').replace('-progress', '')
|
2020-03-21 09:48:02 +01:00
|
|
|
vexe := pref.vexe_path()
|
2021-01-10 19:14:41 +01:00
|
|
|
vroot := os.dir(vexe)
|
2020-12-01 16:43:34 +01:00
|
|
|
new_vtmp_dir := setup_new_vtmp_folder()
|
2021-01-13 10:07:12 +01:00
|
|
|
if term.can_show_color_on_stderr() {
|
|
|
|
os.setenv('VCOLORS', 'always', true)
|
|
|
|
}
|
2019-12-01 10:50:13 +01:00
|
|
|
return TestSession{
|
2020-03-21 09:48:02 +01:00
|
|
|
vexe: vexe
|
2021-01-10 19:14:41 +01:00
|
|
|
vroot: vroot
|
2020-03-21 09:48:02 +01:00
|
|
|
skip_files: skip_files
|
2021-11-15 10:44:54 +01:00
|
|
|
fail_fast: testing.fail_fast
|
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() {
|
2020-09-26 09:11:28 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-01-08 11:25:22 +01:00
|
|
|
pub fn (mut ts TestSession) add(file string) {
|
|
|
|
ts.files << file
|
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
pub fn (mut ts TestSession) test() {
|
2020-07-06 14:08:38 +02:00
|
|
|
// Ensure that .tmp.c files generated from compiling _test.v files,
|
|
|
|
// are easy to delete at the end, *without* affecting the existing ones.
|
2020-09-18 17:35:38 +02:00
|
|
|
current_wd := os.getwd()
|
|
|
|
if current_wd == os.wd_at_startup && current_wd == ts.vroot {
|
|
|
|
ts.root_relative = true
|
|
|
|
}
|
2020-07-06 14:08:38 +02:00
|
|
|
//
|
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 {
|
2021-09-06 02:11:58 +02:00
|
|
|
file := os.real_path(dot_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') {
|
2019-12-27 17:59:04 +01:00
|
|
|
continue
|
|
|
|
}
|
2019-12-01 10:50:13 +01:00
|
|
|
}
|
2019-12-06 00:11:39 +01:00
|
|
|
$if !macos {
|
2019-12-27 17:59:04 +01:00
|
|
|
if file.contains('customer') {
|
|
|
|
continue
|
|
|
|
}
|
2019-12-06 00:11:39 +01:00
|
|
|
}
|
2019-12-01 10:50:13 +01:00
|
|
|
$if msvc {
|
2019-12-27 17:59:04 +01:00
|
|
|
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
|
|
|
|
}
|
2020-12-21 18:51:20 +01:00
|
|
|
remaining_files = vtest.filter_vtest_only(remaining_files, fix_slashes: false)
|
2020-01-19 23:33:16 +01:00
|
|
|
ts.files = remaining_files
|
2019-12-30 05:23:54 +01:00
|
|
|
ts.benchmark.set_total_expected_steps(remaining_files.len)
|
2021-12-21 01:51:26 +01:00
|
|
|
mut njobs := runtime.nr_jobs()
|
|
|
|
if remaining_files.len < njobs {
|
|
|
|
njobs = remaining_files.len
|
|
|
|
}
|
|
|
|
ts.benchmark.njobs = njobs
|
2021-02-11 09:55:23 +01:00
|
|
|
mut pool_of_test_runners := pool.new_pool_processor(callback: worker_trunner)
|
2020-04-18 04:49:03 +02:00
|
|
|
// for handling messages across threads
|
2020-11-04 12:38:05 +01:00
|
|
|
ts.nmessages = chan LogMessage{cap: 10000}
|
2020-10-18 18:00:32 +02:00
|
|
|
ts.nprint_ended = chan int{cap: 0}
|
2020-10-18 17:16:33 +02:00
|
|
|
ts.nmessage_idx = 0
|
|
|
|
go ts.print_messages()
|
2020-03-04 20:28:42 +01:00
|
|
|
pool_of_test_runners.set_shared_context(ts)
|
2021-02-26 22:55:09 +01:00
|
|
|
pool_of_test_runners.work_on_pointers(unsafe { remaining_files.pointers() })
|
2020-01-19 23:33:16 +01:00
|
|
|
ts.benchmark.stop()
|
2020-11-04 12:38:05 +01:00
|
|
|
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('-'))
|
2021-12-24 09:47:48 +01:00
|
|
|
// cleanup generated .tmp.c files after successful tests:
|
2020-07-06 14:08:38 +02:00
|
|
|
if ts.benchmark.nfail == 0 {
|
2020-12-01 16:43:34 +01:00
|
|
|
if ts.rm_binaries {
|
2021-09-15 14:15:46 +02:00
|
|
|
os.rmdir_all(ts.vtmp_dir) or {}
|
2020-12-01 16:43:34 +01:00
|
|
|
}
|
2020-07-06 14:08:38 +02:00
|
|
|
}
|
2021-07-15 08:52:22 +02:00
|
|
|
ts.show_list_of_failed_tests()
|
2020-01-19 23:33:16 +01:00
|
|
|
}
|
|
|
|
|
2021-02-11 09:55:23 +01:00
|
|
|
fn worker_trunner(mut p pool.PoolProcessor, idx int, thread_id int) voidptr {
|
2020-03-04 20:28:42 +01:00
|
|
|
mut ts := &TestSession(p.get_shared_context())
|
2021-11-15 10:44:54 +01:00
|
|
|
if ts.fail_fast {
|
|
|
|
if ts.failed {
|
|
|
|
return pool.no_result
|
|
|
|
}
|
|
|
|
}
|
2020-12-01 16:43:34 +01:00
|
|
|
tmpd := ts.vtmp_dir
|
2020-01-19 23:33:16 +01:00
|
|
|
show_stats := '-stats' in ts.vargs.split(' ')
|
2020-03-04 20:28:42 +01:00
|
|
|
// 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
|
2021-10-11 12:10:55 +02:00
|
|
|
tls_bench.njobs = ts.benchmark.njobs
|
2021-09-06 02:11:58 +02:00
|
|
|
mut relative_file := os.real_path(p.get_item<string>(idx))
|
2021-07-27 19:14:30 +02:00
|
|
|
mut cmd_options := [ts.vargs]
|
2021-09-29 14:33:14 +02:00
|
|
|
mut run_js := false
|
|
|
|
|
|
|
|
is_fmt := ts.vargs.contains('fmt')
|
|
|
|
|
|
|
|
if relative_file.ends_with('js.v') {
|
|
|
|
if !is_fmt {
|
|
|
|
cmd_options << ' -b js'
|
|
|
|
}
|
|
|
|
run_js = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if relative_file.contains('global') && !is_fmt {
|
2021-07-27 19:14:30 +02:00
|
|
|
cmd_options << ' -enable-globals'
|
|
|
|
}
|
2020-09-18 17:35:38 +02:00
|
|
|
if ts.root_relative {
|
2020-09-18 18:20:01 +02:00
|
|
|
relative_file = relative_file.replace(ts.vroot + os.path_separator, '')
|
2020-09-18 17:35:38 +02:00
|
|
|
}
|
2020-03-20 16:41:18 +01:00
|
|
|
file := os.real_path(relative_file)
|
2021-05-31 14:56:36 +02:00
|
|
|
normalised_relative_file := relative_file.replace('\\', '/')
|
2020-03-04 20:28:42 +01:00
|
|
|
// 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)
|
2021-09-29 14:33:14 +02:00
|
|
|
generated_binary_fname := if os.user_os() == 'windows' && !run_js {
|
2021-02-11 09:55:23 +01:00
|
|
|
fname.replace('.v', '.exe')
|
2021-09-29 14:33:14 +02:00
|
|
|
} else if !run_js {
|
|
|
|
fname.replace('.v', '')
|
2021-02-11 09:55:23 +01:00
|
|
|
} else {
|
|
|
|
fname.replace('.v', '')
|
|
|
|
}
|
2021-11-22 20:42:43 +01:00
|
|
|
generated_binary_fpath := os.join_path_single(tmpd, generated_binary_fname)
|
2020-03-04 20:28:42 +01:00
|
|
|
if os.exists(generated_binary_fpath) {
|
2020-12-01 16:43:34 +01:00
|
|
|
if ts.rm_binaries {
|
2021-09-15 14:15:46 +02:00
|
|
|
os.rm(generated_binary_fpath) or {}
|
2020-12-01 16:43:34 +01:00
|
|
|
}
|
2020-03-04 20:28:42 +01:00
|
|
|
}
|
2021-09-29 14:33:14 +02:00
|
|
|
|
2020-03-04 20:28:42 +01:00
|
|
|
if !ts.vargs.contains('fmt') {
|
2022-01-22 20:56:01 +01:00
|
|
|
cmd_options << ' -o ${os.quoted_path(generated_binary_fpath)}'
|
2020-03-04 20:28:42 +01:00
|
|
|
}
|
2022-01-22 20:56:01 +01:00
|
|
|
cmd := '${os.quoted_path(ts.vexe)} ' + cmd_options.join(' ') + ' ${os.quoted_path(file)}'
|
2020-03-04 20:28:42 +01:00
|
|
|
ts.benchmark.step()
|
|
|
|
tls_bench.step()
|
2020-04-11 16:57:02 +02:00
|
|
|
if relative_file.replace('\\', '/') in ts.skip_files {
|
2020-11-04 12:38:05 +01:00
|
|
|
ts.benchmark.skip()
|
|
|
|
tls_bench.skip()
|
2021-05-08 12:32:29 +02:00
|
|
|
if !testing.hide_skips {
|
2021-05-31 14:56:36 +02:00
|
|
|
ts.append_message(.skip, tls_bench.step_message_skip(normalised_relative_file))
|
2021-05-08 12:32:29 +02:00
|
|
|
}
|
2021-02-11 09:55:23 +01:00
|
|
|
return pool.no_result
|
2020-03-21 09:48:02 +01:00
|
|
|
}
|
2020-03-04 20:28:42 +01:00
|
|
|
if show_stats {
|
2020-11-04 12:38:05 +01:00
|
|
|
ts.append_message(.ok, term.h_divider('-'))
|
2021-09-18 10:33:05 +02:00
|
|
|
mut status := os.system(cmd)
|
|
|
|
if status != 0 {
|
|
|
|
details := get_test_details(file)
|
|
|
|
os.setenv('VTEST_RETRY_MAX', '$details.retry', true)
|
|
|
|
for retry := 1; retry <= details.retry; retry++ {
|
|
|
|
ts.append_message(.info, ' retrying $retry/$details.retry of $relative_file ...')
|
|
|
|
os.setenv('VTEST_RETRY', '$retry', true)
|
|
|
|
status = os.system(cmd)
|
|
|
|
if status == 0 {
|
|
|
|
unsafe {
|
|
|
|
goto test_passed_system
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 16:43:55 +01:00
|
|
|
time.sleep(500 * time.millisecond)
|
2021-09-18 10:33:05 +02:00
|
|
|
}
|
2020-03-04 20:28:42 +01:00
|
|
|
ts.failed = true
|
|
|
|
ts.benchmark.fail()
|
|
|
|
tls_bench.fail()
|
2021-07-15 08:52:22 +02:00
|
|
|
ts.add_failed_cmd(cmd)
|
2021-02-11 09:55:23 +01:00
|
|
|
return pool.no_result
|
2021-09-18 10:33:05 +02:00
|
|
|
} else {
|
|
|
|
test_passed_system:
|
|
|
|
ts.benchmark.ok()
|
|
|
|
tls_bench.ok()
|
2019-12-27 17:59:04 +01:00
|
|
|
}
|
2020-11-04 12:38:05 +01:00
|
|
|
} else {
|
2021-01-25 15:29:56 +01:00
|
|
|
if testing.show_start {
|
|
|
|
ts.append_message(.info, ' starting $relative_file ...')
|
|
|
|
}
|
2021-09-18 10:33:05 +02:00
|
|
|
mut r := os.execute(cmd)
|
2021-03-08 19:52:13 +01:00
|
|
|
if r.exit_code < 0 {
|
2020-03-04 20:28:42 +01:00
|
|
|
ts.failed = true
|
|
|
|
ts.benchmark.fail()
|
|
|
|
tls_bench.fail()
|
2021-05-31 14:56:36 +02:00
|
|
|
ts.append_message(.fail, tls_bench.step_message_fail(normalised_relative_file))
|
2021-07-15 08:52:22 +02:00
|
|
|
ts.add_failed_cmd(cmd)
|
2021-02-11 09:55:23 +01:00
|
|
|
return pool.no_result
|
2020-03-04 20:28:42 +01:00
|
|
|
}
|
|
|
|
if r.exit_code != 0 {
|
2021-09-18 10:33:05 +02:00
|
|
|
details := get_test_details(file)
|
|
|
|
os.setenv('VTEST_RETRY_MAX', '$details.retry', true)
|
|
|
|
for retry := 1; retry <= details.retry; retry++ {
|
|
|
|
ts.append_message(.info, ' retrying $retry/$details.retry of $relative_file ...')
|
|
|
|
os.setenv('VTEST_RETRY', '$retry', true)
|
|
|
|
r = os.execute(cmd)
|
|
|
|
if r.exit_code == 0 {
|
|
|
|
unsafe {
|
|
|
|
goto test_passed_execute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-04 20:28:42 +01:00
|
|
|
ts.failed = true
|
|
|
|
ts.benchmark.fail()
|
|
|
|
tls_bench.fail()
|
2021-01-13 10:07:12 +01:00
|
|
|
ending_newline := if r.output.ends_with('\n') { '\n' } else { '' }
|
2021-05-31 14:56:36 +02:00
|
|
|
ts.append_message(.fail, tls_bench.step_message_fail('$normalised_relative_file\n$r.output.trim_space()$ending_newline'))
|
2021-07-15 08:52:22 +02:00
|
|
|
ts.add_failed_cmd(cmd)
|
2020-11-04 12:38:05 +01:00
|
|
|
} else {
|
2021-09-18 10:33:05 +02:00
|
|
|
test_passed_execute:
|
2020-03-04 20:28:42 +01:00
|
|
|
ts.benchmark.ok()
|
|
|
|
tls_bench.ok()
|
2021-05-08 12:32:29 +02:00
|
|
|
if !testing.hide_oks {
|
2021-05-31 14:56:36 +02:00
|
|
|
ts.append_message(.ok, tls_bench.step_message_ok(normalised_relative_file))
|
2021-05-08 12:32:29 +02:00
|
|
|
}
|
2019-12-01 10:50:13 +01:00
|
|
|
}
|
|
|
|
}
|
2020-03-04 20:28:42 +01:00
|
|
|
if os.exists(generated_binary_fpath) {
|
2020-12-01 16:43:34 +01:00
|
|
|
if ts.rm_binaries {
|
2021-09-15 14:15:46 +02:00
|
|
|
os.rm(generated_binary_fpath) or {}
|
2020-12-01 16:43:34 +01:00
|
|
|
}
|
2020-03-04 20:28:42 +01:00
|
|
|
}
|
2021-02-11 09:55:23 +01:00
|
|
|
return pool.no_result
|
2019-12-01 10:50:13 +01:00
|
|
|
}
|
|
|
|
|
2019-12-27 17:59:04 +01:00
|
|
|
pub fn vlib_should_be_present(parent_dir string) {
|
2021-11-22 20:42:43 +01:00
|
|
|
vlib_dir := os.join_path_single(parent_dir, 'vlib')
|
2019-12-27 17:59:04 +01:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)
|
2019-12-27 17:59:04 +01:00
|
|
|
vlib_should_be_present(parent_dir)
|
2019-12-05 12:22:54 +01:00
|
|
|
vargs := zargs.replace(vexe, '')
|
2020-02-08 17:01:10 +01:00
|
|
|
eheader(main_label)
|
2020-10-18 18:00:32 +02:00
|
|
|
if vargs.len > 0 {
|
|
|
|
eprintln('v compiler args: "$vargs"')
|
|
|
|
}
|
2021-05-08 12:32:29 +02:00
|
|
|
mut session := new_test_session(vargs, true)
|
2021-11-22 20:42:43 +01:00
|
|
|
files := os.walk_ext(os.join_path_single(parent_dir, folder), '.v')
|
2020-04-26 13:49:31 +02:00
|
|
|
mut mains := []string{}
|
2020-12-20 15:33:55 +01:00
|
|
|
mut skipped := oskipped.clone()
|
2021-01-08 11:25:22 +01:00
|
|
|
next_file: for f in files {
|
2021-06-02 20:19:03 +02:00
|
|
|
fnormalised := f.replace('\\', '/')
|
|
|
|
// NB: a `testdata` folder, is the preferred name of a folder, containing V code,
|
|
|
|
// that you *do not want* the test framework to find incidentally for various reasons,
|
|
|
|
// for example module import tests, or subtests, that are compiled/run by other parent tests
|
|
|
|
// in specific configurations, etc.
|
|
|
|
if fnormalised.contains('testdata/') || fnormalised.contains('modules/')
|
|
|
|
|| f.contains('preludes/') {
|
2021-01-08 11:25:22 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
$if windows {
|
2021-02-07 12:46:22 +01:00
|
|
|
// skip pico and process/command examples on windows
|
2021-06-02 20:19:03 +02:00
|
|
|
if fnormalised.ends_with('examples/pico/pico.v')
|
|
|
|
|| fnormalised.ends_with('examples/process/command.v') {
|
2020-06-02 15:49:43 +02:00
|
|
|
continue
|
|
|
|
}
|
2021-01-08 11:25:22 +01:00
|
|
|
}
|
2021-03-01 00:18:14 +01:00
|
|
|
c := os.read_file(f) or { panic(err) }
|
2022-01-09 18:53:36 +01:00
|
|
|
maxc := if c.len > 500 { 500 } else { c.len }
|
2021-01-08 11:25:22 +01:00
|
|
|
start := c[0..maxc]
|
|
|
|
if start.contains('module ') && !start.contains('module main') {
|
2021-11-22 20:42:43 +01:00
|
|
|
skipped_f := f.replace(os.join_path_single(parent_dir, ''), '')
|
2021-01-08 11:25:22 +01:00
|
|
|
skipped << skipped_f
|
|
|
|
}
|
|
|
|
for skip_prefix in oskipped {
|
|
|
|
if f.starts_with(skip_prefix) {
|
|
|
|
continue next_file
|
2020-07-01 13:29:58 +02:00
|
|
|
}
|
2020-01-23 12:58:47 +01:00
|
|
|
}
|
2021-01-08 11:25:22 +01:00
|
|
|
mains << f
|
2020-01-23 12:58:47 +01:00
|
|
|
}
|
2019-12-27 17:59:04 +01:00
|
|
|
session.files << mains
|
2020-05-16 23:14:06 +02:00
|
|
|
session.skip_files << skipped
|
2020-12-01 16:43:34 +01:00
|
|
|
return session
|
|
|
|
}
|
|
|
|
|
2021-12-11 22:20:08 +01:00
|
|
|
pub type FnTestSetupCb = fn (mut session TestSession)
|
|
|
|
|
|
|
|
pub fn v_build_failing_skipped(zargs string, folder string, oskipped []string, cb FnTestSetupCb) bool {
|
2020-12-01 16:43:34 +01:00
|
|
|
main_label := 'Building $folder ...'
|
|
|
|
finish_label := 'building $folder'
|
|
|
|
mut session := prepare_test_session(zargs, folder, oskipped, main_label)
|
2021-12-11 22:20:08 +01:00
|
|
|
cb(mut session)
|
2019-12-01 10:50:13 +01:00
|
|
|
session.test()
|
2019-12-27 17:59:04 +01:00
|
|
|
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
|
|
|
|
2019-12-27 17:59:04 +01:00
|
|
|
pub fn build_v_cmd_failed(cmd string) bool {
|
2021-03-08 19:52:13 +01:00
|
|
|
res := os.execute(cmd)
|
|
|
|
if res.exit_code < 0 {
|
|
|
|
return true
|
|
|
|
}
|
2019-12-01 14:12:51 +01:00
|
|
|
if res.exit_code != 0 {
|
|
|
|
eprintln('')
|
2019-12-27 17:59:04 +01:00
|
|
|
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)
|
2020-11-04 12:38:05 +01:00
|
|
|
vlib_should_be_present(parent_dir)
|
2021-08-28 08:39:18 +02:00
|
|
|
os.chdir(parent_dir) or { panic(err) }
|
2019-12-06 00:11:39 +01:00
|
|
|
mut failed := false
|
2020-11-04 12:38:05 +01:00
|
|
|
v_build_commands := ['$vexe -o v_g -g cmd/v', '$vexe -o v_prod_g -prod -g cmd/v',
|
2021-03-24 22:37:10 +01:00
|
|
|
'$vexe -o v_cg -cg cmd/v', '$vexe -o v_prod_cg -prod -cg cmd/v',
|
2021-09-21 15:20:09 +02:00
|
|
|
'$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
|
2020-11-04 12:38:05 +01:00
|
|
|
eprintln(bmark.step_message_fail('command: $cmd . See details above ^^^^^^^'))
|
2019-12-01 14:12:51 +01:00
|
|
|
eprintln('')
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
bmark.ok()
|
2021-05-08 12:32:29 +02:00
|
|
|
if !testing.hide_oks {
|
|
|
|
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('-'))
|
2019-12-27 17:59:04 +01:00
|
|
|
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) {
|
2021-05-20 09:03:53 +02:00
|
|
|
eprintln(term.header_left(msg, '-'))
|
2020-02-08 17:01:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn header(msg string) {
|
2021-05-20 09:03:53 +02:00
|
|
|
println(term.header_left(msg, '-'))
|
2020-02-08 17:01:10 +01:00
|
|
|
}
|
2020-10-14 17:20:19 +02: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')
|
2021-03-01 00:18:14 +01:00
|
|
|
os.mkdir_all(new_vtmp_dir) or { panic(err) }
|
2020-10-14 17:20:19 +02:00
|
|
|
os.setenv('VTMP', new_vtmp_dir, true)
|
|
|
|
return new_vtmp_dir
|
|
|
|
}
|
2021-09-18 10:33:05 +02:00
|
|
|
|
|
|
|
pub struct TestDetails {
|
|
|
|
pub mut:
|
|
|
|
retry int
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_test_details(file string) TestDetails {
|
|
|
|
mut res := TestDetails{}
|
|
|
|
lines := os.read_lines(file) or { [] }
|
|
|
|
for line in lines {
|
|
|
|
if line.starts_with('// vtest retry:') {
|
|
|
|
res.retry = line.all_after(':').trim_space().int()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
2021-12-07 20:31:29 +01:00
|
|
|
|
|
|
|
pub fn find_started_process(pname string) ?string {
|
|
|
|
for line in testing.all_processes {
|
|
|
|
if line.contains(pname) {
|
|
|
|
return line
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return error('could not find process matching $pname')
|
|
|
|
}
|