2020-04-05 09:40:17 +00:00
|
|
|
module main
|
|
|
|
|
|
|
|
import os
|
|
|
|
import testing
|
2020-04-07 17:51:23 +00:00
|
|
|
import v.pref
|
2020-04-05 09:40:17 +00:00
|
|
|
|
2021-06-14 10:10:20 +00:00
|
|
|
const github_job = os.getenv('GITHUB_JOB')
|
|
|
|
|
2020-04-05 09:40:17 +00:00
|
|
|
const (
|
2021-04-15 06:28:33 +00:00
|
|
|
skip_test_files = [
|
2021-12-02 09:15:07 +00:00
|
|
|
'vlib/context/onecontext/onecontext_test.v',
|
2021-04-15 06:28:33 +00:00
|
|
|
'vlib/context/deadline_test.v' /* sometimes blocks */,
|
2021-07-23 09:33:55 +00:00
|
|
|
'vlib/mysql/mysql_orm_test.v' /* mysql not installed */,
|
2021-07-24 17:49:40 +00:00
|
|
|
'vlib/pg/pg_orm_test.v' /* pg not installed */,
|
2021-04-15 06:28:33 +00:00
|
|
|
]
|
2021-05-29 09:15:10 +00:00
|
|
|
skip_fsanitize_too_slow = [
|
|
|
|
// These tests are too slow to be run in the CI on each PR/commit
|
|
|
|
// in the sanitized modes:
|
|
|
|
'vlib/v/compiler_errors_test.v',
|
|
|
|
'vlib/v/doc/doc_test.v',
|
|
|
|
'vlib/v/fmt/fmt_test.v',
|
|
|
|
'vlib/v/fmt/fmt_keep_test.v',
|
|
|
|
'vlib/v/fmt/fmt_vlib_test.v',
|
|
|
|
'vlib/v/live/live_test.v',
|
|
|
|
'vlib/v/parser/v_parser_test.v',
|
|
|
|
'vlib/v/scanner/scanner_test.v',
|
|
|
|
'vlib/v/tests/inout/compiler_test.v',
|
|
|
|
'vlib/v/tests/prod_test.v',
|
|
|
|
'vlib/v/tests/profile/profile_test.v',
|
|
|
|
'vlib/v/tests/repl/repl_test.v',
|
|
|
|
'vlib/v/tests/valgrind/valgrind_test.v',
|
|
|
|
]
|
2020-12-29 18:27:57 +00:00
|
|
|
skip_with_fsanitize_memory = [
|
2020-12-29 05:46:54 +00:00
|
|
|
'vlib/net/tcp_simple_client_server_test.v',
|
|
|
|
'vlib/net/http/cookie_test.v',
|
|
|
|
'vlib/net/http/http_test.v',
|
|
|
|
'vlib/net/http/status_test.v',
|
2021-02-07 22:10:01 +00:00
|
|
|
'vlib/net/http/http_httpbin_test.v',
|
2021-02-27 21:54:27 +00:00
|
|
|
'vlib/net/http/header_test.v',
|
2021-08-19 08:19:49 +00:00
|
|
|
'vlib/net/http/server_test.v',
|
2021-02-07 22:10:01 +00:00
|
|
|
'vlib/net/udp_test.v',
|
|
|
|
'vlib/net/tcp_test.v',
|
2020-12-29 05:46:54 +00:00
|
|
|
'vlib/orm/orm_test.v',
|
|
|
|
'vlib/sqlite/sqlite_test.v',
|
2021-07-23 09:33:55 +00:00
|
|
|
'vlib/sqlite/sqlite_orm_test.v',
|
2021-02-04 19:28:33 +00:00
|
|
|
'vlib/v/tests/orm_sub_struct_test.v',
|
2021-05-04 09:35:18 +00:00
|
|
|
'vlib/v/tests/orm_sub_array_struct_test.v',
|
2022-02-02 16:05:31 +00:00
|
|
|
'vlib/v/tests/sql_statement_inside_fn_call_test.v',
|
2021-02-07 22:10:01 +00:00
|
|
|
'vlib/vweb/tests/vweb_test.v',
|
2021-02-27 22:18:25 +00:00
|
|
|
'vlib/vweb/request_test.v',
|
2021-06-05 21:43:14 +00:00
|
|
|
'vlib/net/http/request_test.v',
|
2021-08-19 22:13:36 +00:00
|
|
|
'vlib/net/http/response_test.v',
|
2021-03-01 10:50:52 +00:00
|
|
|
'vlib/vweb/route_test.v',
|
2021-07-02 23:56:00 +00:00
|
|
|
'vlib/net/websocket/websocket_test.v',
|
2021-03-16 15:10:03 +00:00
|
|
|
'vlib/crypto/rand/crypto_rand_read_test.v',
|
2022-02-16 07:18:51 +00:00
|
|
|
'vlib/net/smtp/smtp_test.v',
|
2020-12-29 05:46:54 +00:00
|
|
|
]
|
2020-12-29 18:27:57 +00:00
|
|
|
skip_with_fsanitize_address = [
|
2021-07-02 23:56:00 +00:00
|
|
|
'vlib/net/websocket/websocket_test.v',
|
2021-02-07 22:10:01 +00:00
|
|
|
]
|
2021-04-15 06:28:33 +00:00
|
|
|
skip_with_fsanitize_undefined = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
2021-02-07 22:10:01 +00:00
|
|
|
skip_with_werror = [
|
2021-07-20 16:34:16 +00:00
|
|
|
'do_not_remove',
|
2020-12-29 05:46:54 +00:00
|
|
|
]
|
2021-04-15 06:28:33 +00:00
|
|
|
skip_with_asan_compiler = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
|
|
|
skip_with_msan_compiler = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
2020-12-29 18:27:57 +00:00
|
|
|
skip_on_musl = [
|
2020-12-25 16:44:52 +00:00
|
|
|
'vlib/v/tests/profile/profile_test.v',
|
2021-12-17 19:19:18 +00:00
|
|
|
'vlib/gg/draw_fns_api_test.v',
|
2020-12-25 16:44:52 +00:00
|
|
|
]
|
2020-12-29 18:27:57 +00:00
|
|
|
skip_on_ubuntu_musl = [
|
2021-03-01 12:54:49 +00:00
|
|
|
//'vlib/v/gen/js/jsgen_test.v',
|
2020-05-06 20:26:44 +00:00
|
|
|
'vlib/net/http/cookie_test.v',
|
2020-07-08 18:30:57 +00:00
|
|
|
'vlib/net/http/http_test.v',
|
2020-10-09 15:33:16 +00:00
|
|
|
'vlib/net/http/status_test.v',
|
2020-07-17 17:13:22 +00:00
|
|
|
'vlib/net/websocket/ws_test.v',
|
2020-06-07 15:51:28 +00:00
|
|
|
'vlib/sqlite/sqlite_test.v',
|
2021-07-23 09:33:55 +00:00
|
|
|
'vlib/sqlite/sqlite_orm_test.v',
|
2020-06-07 15:51:28 +00:00
|
|
|
'vlib/orm/orm_test.v',
|
2021-02-04 19:28:33 +00:00
|
|
|
'vlib/v/tests/orm_sub_struct_test.v',
|
2021-05-04 09:35:18 +00:00
|
|
|
'vlib/v/tests/orm_sub_array_struct_test.v',
|
2022-02-02 16:05:31 +00:00
|
|
|
'vlib/v/tests/sql_statement_inside_fn_call_test.v',
|
2020-05-06 20:26:44 +00:00
|
|
|
'vlib/clipboard/clipboard_test.v',
|
2020-08-13 22:11:12 +00:00
|
|
|
'vlib/vweb/tests/vweb_test.v',
|
2021-02-27 22:18:25 +00:00
|
|
|
'vlib/vweb/request_test.v',
|
2021-06-05 21:43:14 +00:00
|
|
|
'vlib/net/http/request_test.v',
|
2021-03-01 10:50:52 +00:00
|
|
|
'vlib/vweb/route_test.v',
|
2021-07-02 23:56:00 +00:00
|
|
|
'vlib/net/websocket/websocket_test.v',
|
2021-01-05 10:40:48 +00:00
|
|
|
'vlib/net/http/http_httpbin_test.v',
|
2021-02-27 21:54:27 +00:00
|
|
|
'vlib/net/http/header_test.v',
|
2021-08-19 08:19:49 +00:00
|
|
|
'vlib/net/http/server_test.v',
|
2021-08-19 22:13:36 +00:00
|
|
|
'vlib/net/http/response_test.v',
|
2021-09-29 12:33:14 +00:00
|
|
|
'vlib/builtin/js/array_test.js.v',
|
2022-02-16 07:18:51 +00:00
|
|
|
'vlib/net/smtp/smtp_test.v',
|
2020-05-06 19:59:39 +00:00
|
|
|
]
|
2021-04-15 06:28:33 +00:00
|
|
|
skip_on_linux = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
2020-12-29 18:27:57 +00:00
|
|
|
skip_on_non_linux = [
|
2021-04-15 06:28:33 +00:00
|
|
|
'do_not_remove',
|
2020-05-26 10:50:37 +00:00
|
|
|
]
|
2020-12-29 18:27:57 +00:00
|
|
|
skip_on_windows = [
|
2021-09-27 14:52:20 +00:00
|
|
|
'vlib/context/cancel_test.v',
|
|
|
|
'vlib/context/deadline_test.v',
|
|
|
|
'vlib/context/empty_test.v',
|
|
|
|
'vlib/context/value_test.v',
|
2020-06-07 15:51:28 +00:00
|
|
|
'vlib/orm/orm_test.v',
|
2021-02-04 19:28:33 +00:00
|
|
|
'vlib/v/tests/orm_sub_struct_test.v',
|
2021-08-10 18:27:15 +00:00
|
|
|
'vlib/v/tests/closure_test.v',
|
2021-12-18 15:33:24 +00:00
|
|
|
'vlib/v/tests/closure_generator_test.v',
|
2020-06-09 13:06:07 +00:00
|
|
|
'vlib/net/websocket/ws_test.v',
|
2021-02-11 16:51:12 +00:00
|
|
|
'vlib/net/unix/unix_test.v',
|
2022-02-18 10:45:32 +00:00
|
|
|
'vlib/net/unix/use_net_and_net_unix_together_test.v',
|
2021-07-02 23:56:00 +00:00
|
|
|
'vlib/net/websocket/websocket_test.v',
|
2020-08-13 22:11:12 +00:00
|
|
|
'vlib/vweb/tests/vweb_test.v',
|
2021-02-27 22:18:25 +00:00
|
|
|
'vlib/vweb/request_test.v',
|
2021-06-05 21:43:14 +00:00
|
|
|
'vlib/net/http/request_test.v',
|
2021-03-01 10:50:52 +00:00
|
|
|
'vlib/vweb/route_test.v',
|
2021-12-05 17:44:25 +00:00
|
|
|
'vlib/sync/many_times_test.v',
|
2021-12-05 16:56:03 +00:00
|
|
|
'vlib/sync/once_test.v',
|
2022-02-16 07:18:51 +00:00
|
|
|
'vlib/net/smtp/smtp_test.v',
|
2020-06-07 15:51:28 +00:00
|
|
|
]
|
2021-04-15 06:28:33 +00:00
|
|
|
skip_on_non_windows = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
|
|
|
skip_on_macos = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
|
|
|
skip_on_non_macos = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
2021-08-27 06:47:04 +00:00
|
|
|
skip_on_amd64 = [
|
|
|
|
'do_not_remove',
|
|
|
|
]
|
2021-12-16 16:02:05 +00:00
|
|
|
skip_on_arm64 = [
|
2021-12-18 15:33:24 +00:00
|
|
|
'vlib/v/tests/closure_generator_test.v',
|
2021-12-16 16:02:05 +00:00
|
|
|
'do_not_remove',
|
|
|
|
]
|
|
|
|
skip_on_non_amd64_or_arm64 = [
|
2021-12-15 07:00:38 +00:00
|
|
|
// closures aren't implemented yet:
|
|
|
|
'vlib/v/tests/closure_test.v',
|
|
|
|
'vlib/context/cancel_test.v',
|
|
|
|
'vlib/context/deadline_test.v',
|
|
|
|
'vlib/context/empty_test.v',
|
|
|
|
'vlib/context/value_test.v',
|
|
|
|
'vlib/context/onecontext/onecontext_test.v',
|
|
|
|
'vlib/sync/once_test.v',
|
|
|
|
'vlib/sync/many_times_test.v',
|
2021-08-27 06:47:04 +00:00
|
|
|
'do_not_remove',
|
|
|
|
]
|
2020-04-05 09:40:17 +00:00
|
|
|
)
|
|
|
|
|
2022-03-06 17:01:22 +00:00
|
|
|
// Note: musl misses openssl, thus the http tests can not be done there
|
|
|
|
// Note: http_httpbin_test.v: fails with 'cgen error: json: map_string_string is not struct'
|
2020-04-05 09:40:17 +00:00
|
|
|
fn main() {
|
2020-04-07 17:51:23 +00:00
|
|
|
vexe := pref.vexe_path()
|
|
|
|
vroot := os.dir(vexe)
|
2021-08-28 06:39:18 +00:00
|
|
|
os.chdir(vroot) or { panic(err) }
|
2020-12-20 14:33:55 +00:00
|
|
|
args := os.args.clone()
|
2020-04-05 09:40:17 +00:00
|
|
|
args_string := args[1..].join(' ')
|
2021-01-19 08:41:51 +00:00
|
|
|
cmd_prefix := args_string.all_before('test-self')
|
2021-03-16 16:46:11 +00:00
|
|
|
title := 'testing vlib'
|
2021-09-29 12:33:14 +00:00
|
|
|
mut all_test_files := os.walk_ext(os.join_path(vroot, 'vlib'), '_test.v')
|
2021-12-07 19:31:29 +00:00
|
|
|
test_js_files := os.walk_ext(os.join_path(vroot, 'vlib'), '_test.js.v')
|
|
|
|
all_test_files << test_js_files
|
2020-04-05 09:40:17 +00:00
|
|
|
testing.eheader(title)
|
2021-05-08 10:32:29 +00:00
|
|
|
mut tsession := testing.new_test_session(cmd_prefix, true)
|
2021-06-02 19:13:53 +00:00
|
|
|
tsession.files << all_test_files.filter(!it.contains('testdata' + os.path_separator))
|
2020-04-07 17:51:23 +00:00
|
|
|
tsession.skip_files << skip_test_files
|
2021-06-14 10:10:20 +00:00
|
|
|
|
2021-12-07 19:31:29 +00:00
|
|
|
if !testing.is_node_present {
|
|
|
|
testroot := vroot + os.path_separator
|
|
|
|
tsession.skip_files << test_js_files.map(it.replace(testroot, ''))
|
|
|
|
}
|
|
|
|
testing.find_started_process('mysqld') or {
|
|
|
|
tsession.skip_files << 'vlib/mysql/mysql_orm_test.v'
|
|
|
|
}
|
|
|
|
testing.find_started_process('postgres') or { tsession.skip_files << 'vlib/pg/pg_orm_test.v' }
|
|
|
|
|
2021-06-14 10:10:20 +00:00
|
|
|
if github_job == 'windows-tcc' {
|
|
|
|
// TODO: fix these ASAP
|
|
|
|
tsession.skip_files << 'vlib/net/tcp_test.v'
|
|
|
|
tsession.skip_files << 'vlib/net/udp_test.v'
|
|
|
|
}
|
|
|
|
|
2021-02-07 22:10:01 +00:00
|
|
|
mut werror := false
|
2020-12-29 05:46:54 +00:00
|
|
|
mut sanitize_memory := false
|
|
|
|
mut sanitize_address := false
|
|
|
|
mut sanitize_undefined := false
|
2021-02-21 14:09:19 +00:00
|
|
|
mut asan_compiler := false
|
2021-03-22 22:05:48 +00:00
|
|
|
mut msan_compiler := false
|
2020-12-29 05:46:54 +00:00
|
|
|
for arg in args {
|
2021-03-23 11:36:50 +00:00
|
|
|
if arg.contains('-asan-compiler') {
|
2021-02-21 14:09:19 +00:00
|
|
|
asan_compiler = true
|
|
|
|
}
|
2021-03-23 11:36:50 +00:00
|
|
|
if arg.contains('-msan-compiler') {
|
2021-03-22 22:05:48 +00:00
|
|
|
msan_compiler = true
|
|
|
|
}
|
2021-04-19 12:38:48 +00:00
|
|
|
if arg.contains('-Werror') || arg.contains('-cstrict') {
|
2021-02-07 22:10:01 +00:00
|
|
|
werror = true
|
|
|
|
}
|
2021-03-23 11:36:50 +00:00
|
|
|
if arg.contains('-fsanitize=memory') {
|
2020-12-29 05:46:54 +00:00
|
|
|
sanitize_memory = true
|
|
|
|
}
|
2021-03-23 11:36:50 +00:00
|
|
|
if arg.contains('-fsanitize=address') {
|
2020-12-29 05:46:54 +00:00
|
|
|
sanitize_address = true
|
|
|
|
}
|
2021-03-23 11:36:50 +00:00
|
|
|
if arg.contains('-fsanitize=undefined') {
|
2020-12-29 18:27:57 +00:00
|
|
|
sanitize_undefined = true
|
2020-12-29 05:46:54 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-29 09:15:10 +00:00
|
|
|
if os.getenv('VTEST_RUN_FSANITIZE_TOO_SLOW').len == 0
|
|
|
|
&& (sanitize_undefined || sanitize_memory || sanitize_address) {
|
|
|
|
tsession.skip_files << skip_fsanitize_too_slow
|
|
|
|
}
|
2021-02-07 22:10:01 +00:00
|
|
|
if werror {
|
|
|
|
tsession.skip_files << skip_with_werror
|
|
|
|
}
|
2020-12-29 05:46:54 +00:00
|
|
|
if sanitize_memory {
|
|
|
|
tsession.skip_files << skip_with_fsanitize_memory
|
|
|
|
}
|
|
|
|
if sanitize_address {
|
|
|
|
tsession.skip_files << skip_with_fsanitize_address
|
|
|
|
}
|
|
|
|
if sanitize_undefined {
|
|
|
|
tsession.skip_files << skip_with_fsanitize_undefined
|
|
|
|
}
|
2021-02-21 14:09:19 +00:00
|
|
|
if asan_compiler {
|
|
|
|
tsession.skip_files << skip_with_asan_compiler
|
|
|
|
}
|
2021-03-22 22:05:48 +00:00
|
|
|
if msan_compiler {
|
|
|
|
tsession.skip_files << skip_with_msan_compiler
|
|
|
|
}
|
2021-01-05 16:13:38 +00:00
|
|
|
// println(tsession.skip_files)
|
2020-05-06 19:59:39 +00:00
|
|
|
if os.getenv('V_CI_MUSL').len > 0 {
|
|
|
|
tsession.skip_files << skip_on_musl
|
|
|
|
}
|
2020-07-08 18:30:57 +00:00
|
|
|
if os.getenv('V_CI_UBUNTU_MUSL').len > 0 {
|
|
|
|
tsession.skip_files << skip_on_ubuntu_musl
|
|
|
|
}
|
2021-12-16 16:02:05 +00:00
|
|
|
$if !amd64 && !arm64 {
|
2021-08-27 06:47:04 +00:00
|
|
|
tsession.skip_files << skip_on_non_amd64
|
|
|
|
}
|
|
|
|
$if amd64 {
|
|
|
|
tsession.skip_files << skip_on_amd64
|
|
|
|
}
|
2021-12-16 16:02:05 +00:00
|
|
|
$if arm64 {
|
|
|
|
tsession.skip_files << skip_on_arm64
|
|
|
|
}
|
2020-04-11 09:41:48 +00:00
|
|
|
$if !linux {
|
2020-05-06 19:59:39 +00:00
|
|
|
tsession.skip_files << skip_on_non_linux
|
2020-04-11 09:41:48 +00:00
|
|
|
}
|
2020-04-11 10:41:59 +00:00
|
|
|
$if linux {
|
2020-05-06 19:59:39 +00:00
|
|
|
tsession.skip_files << skip_on_linux
|
|
|
|
}
|
|
|
|
$if windows {
|
|
|
|
tsession.skip_files << skip_on_windows
|
|
|
|
}
|
|
|
|
$if !windows {
|
|
|
|
tsession.skip_files << skip_on_non_windows
|
|
|
|
}
|
|
|
|
$if macos {
|
|
|
|
tsession.skip_files << skip_on_macos
|
|
|
|
}
|
|
|
|
$if !macos {
|
|
|
|
tsession.skip_files << skip_on_non_macos
|
2020-04-11 10:41:59 +00:00
|
|
|
}
|
2020-04-05 09:40:17 +00:00
|
|
|
tsession.test()
|
|
|
|
eprintln(tsession.benchmark.total_message(title))
|
|
|
|
if tsession.benchmark.nfail > 0 {
|
2020-10-14 20:42:30 +00:00
|
|
|
eprintln('\nWARNING: failed $tsession.benchmark.nfail times.\n')
|
|
|
|
exit(1)
|
2020-04-05 12:20:28 +00:00
|
|
|
}
|
2020-04-05 09:40:17 +00:00
|
|
|
}
|