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

111 lines
2.7 KiB
V
Raw Normal View History

2020-10-24 16:36:26 +03:00
module main
import os
import testing
import v.util
const (
vet_known_failing_exceptions = []string{}
vet_folders = [
2020-10-24 16:36:26 +03:00
'vlib/sqlite',
'vlib/v',
'cmd/v',
'cmd/tools',
]
verify_known_failing_exceptions = []string{}
vfmt_verify_list = [
'cmd/v/v.v',
'cmd/tools/vdoc/',
'cmd/tools/vvet/',
'vlib/arrays/',
'vlib/benchmark/',
'vlib/bitfield/',
2020-10-24 16:36:26 +03:00
'vlib/builtin/array.v',
'vlib/builtin/array_test.v',
'vlib/builtin/map.v',
2020-10-24 16:36:26 +03:00
'vlib/math/bits/bits.v',
2020-12-26 15:40:22 +03:00
'vlib/orm/',
2020-10-24 16:36:26 +03:00
'vlib/term/colors.v',
'vlib/term/term.v',
'vlib/v/ast/',
'vlib/v/builder/',
'vlib/v/cflag/',
'vlib/v/checker/',
'vlib/v/depgraph/',
'vlib/v/doc/',
'vlib/v/errors/',
'vlib/v/eval/',
'vlib/v/fmt/',
'vlib/v/gen/auto_str_methods.v',
'vlib/v/gen/cgen.v',
'vlib/v/gen/cgen_test.v',
'vlib/v/gen/cmain.v',
'vlib/v/gen/comptime.v',
'vlib/v/gen/fn.v',
'vlib/v/gen/json.v',
'vlib/v/gen/live.v',
'vlib/v/gen/profile.v',
'vlib/v/gen/sql.v',
'vlib/v/gen/str.v',
'vlib/v/gen/x64/elf.v',
'vlib/v/gen/x64/elf_obj.v',
'vlib/v/gen/x64/gen.v',
'vlib/v/parser/',
'vlib/v/pref/',
'vlib/v/scanner/',
'vlib/v/table/',
'vlib/v/util/',
'vlib/v/vet/',
'vlib/v/vmod/',
'vlib/cli/',
'vlib/flag/',
2020-11-15 17:16:08 +03:00
'vlib/gg/gg.v',
'vlib/math/big/',
'vlib/os/',
2020-12-21 23:00:32 +03:00
'vlib/semver/',
'vlib/strings/',
'vlib/time/',
'vlib/vweb/',
'vlib/x/websocket/',
2020-10-24 16:36:26 +03:00
]
)
const vexe = os.getenv('VEXE')
const vroot = os.dir(vexe)
2020-10-24 16:36:26 +03:00
fn main() {
2020-12-20 17:40:49 +03:00
args_string := os.args[1..].join(' ')
2020-11-15 17:24:25 +03:00
pass_args := args_string.all_before('test-cleancode')
2020-10-24 16:36:26 +03:00
v_test_vetting(pass_args)
}
fn tsession(vargs string, tool_source string, tool_cmd string, tool_args string, flist []string, slist []string) testing.TestSession {
os.chdir(vroot)
2020-10-24 16:36:26 +03:00
util.prepare_tool_when_needed(tool_source)
testing.eheader('Run `$tool_cmd` over most .v files')
mut test_session := testing.new_test_session('$vargs $tool_args')
test_session.files << flist
test_session.skip_files << slist
test_session.test()
eprintln(test_session.benchmark.total_message('running `$tool_cmd` over most .v files'))
return test_session
}
fn v_test_vetting(vargs string) {
vet_session := tsession(vargs, 'vvet', 'v vet', 'vet', vet_folders, vet_known_failing_exceptions)
verify_session := tsession(vargs, 'vfmt.v', 'v fmt -verify', 'fmt -verify', vfmt_verify_list,
verify_known_failing_exceptions)
2020-10-24 16:36:26 +03:00
//
if vet_session.benchmark.nfail > 0 || verify_session.benchmark.nfail > 0 {
eprintln('\n')
if vet_session.benchmark.nfail > 0 {
eprintln('WARNING: `v vet` failed $vet_session.benchmark.nfail times.')
}
if verify_session.benchmark.nfail > 0 {
eprintln('WARNING: `v fmt -verify` failed $verify_session.benchmark.nfail times.')
}
exit(1)
}
}