2021-06-22 17:52:34 +02:00
|
|
|
import os
|
|
|
|
import rand
|
|
|
|
import term
|
|
|
|
import v.util.vtest
|
|
|
|
import v.util.diff
|
|
|
|
|
|
|
|
const vexe = @VEXE
|
|
|
|
|
|
|
|
const vroot = @VMODROOT
|
|
|
|
|
|
|
|
const diff_cmd = find_diff_cmd()
|
|
|
|
|
|
|
|
fn find_diff_cmd() string {
|
|
|
|
return diff.find_working_diff_command() or { '' }
|
|
|
|
}
|
|
|
|
|
2021-08-28 15:21:46 +02:00
|
|
|
fn test_vet() ? {
|
2021-06-22 17:52:34 +02:00
|
|
|
os.setenv('VCOLORS', 'never', true)
|
2021-08-28 15:21:46 +02:00
|
|
|
os.chdir(vroot) ?
|
2021-06-22 17:52:34 +02:00
|
|
|
test_dir := 'cmd/tools/vdoc/tests/testdata'
|
|
|
|
main_files := get_main_files_in_dir(test_dir)
|
|
|
|
fails := check_path(vexe, test_dir, main_files)
|
|
|
|
assert fails == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_main_files_in_dir(dir string) []string {
|
|
|
|
mut mfiles := os.walk_ext(dir, '.v')
|
|
|
|
mfiles.sort()
|
|
|
|
return mfiles
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_path(vexe string, dir string, tests []string) int {
|
|
|
|
mut nb_fail := 0
|
|
|
|
paths := vtest.filter_vtest_only(tests, basepath: vroot)
|
|
|
|
for path in paths {
|
|
|
|
program := path
|
|
|
|
print(path + ' ')
|
2022-01-22 20:13:16 +01:00
|
|
|
res := os.execute('${os.quoted_path(vexe)} doc ${os.quoted_path(program)}')
|
2021-06-22 17:52:34 +02:00
|
|
|
if res.exit_code < 0 {
|
|
|
|
panic(res.output)
|
|
|
|
}
|
|
|
|
mut expected := os.read_file(program.replace('main.v', 'main.out')) or { panic(err) }
|
|
|
|
expected = clean_line_endings(expected)
|
|
|
|
found := clean_line_endings(res.output)
|
|
|
|
if expected != found {
|
2021-08-19 09:20:43 +02:00
|
|
|
print_compare(expected, found)
|
|
|
|
}
|
|
|
|
|
2022-01-22 20:13:16 +01:00
|
|
|
res_comments := os.execute('${os.quoted_path(vexe)} doc -comments ${os.quoted_path(program)}')
|
2021-08-19 09:20:43 +02:00
|
|
|
if res_comments.exit_code < 0 {
|
|
|
|
panic(res_comments.output)
|
|
|
|
}
|
|
|
|
mut expected_comments := os.read_file(program.replace('main.v', 'main.comments.out')) or {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
expected_comments = clean_line_endings(expected_comments)
|
|
|
|
found_comments := clean_line_endings(res_comments.output)
|
|
|
|
if expected_comments != found_comments {
|
|
|
|
print_compare(expected_comments, found_comments)
|
|
|
|
}
|
|
|
|
|
|
|
|
if expected == found && expected_comments == found_comments {
|
2021-06-22 17:52:34 +02:00
|
|
|
println(term.green('OK'))
|
2021-08-19 09:20:43 +02:00
|
|
|
} else {
|
|
|
|
nb_fail++
|
2021-06-22 17:52:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nb_fail
|
|
|
|
}
|
|
|
|
|
2021-08-19 09:20:43 +02:00
|
|
|
fn print_compare(expected string, found string) {
|
|
|
|
println(term.red('FAIL'))
|
|
|
|
println('============')
|
|
|
|
println('expected:')
|
|
|
|
println(expected)
|
|
|
|
println('============')
|
|
|
|
println('found:')
|
|
|
|
println(found)
|
|
|
|
println('============\n')
|
|
|
|
println('diff:')
|
|
|
|
println(diff.color_compare_strings(diff_cmd, rand.ulid(), found, expected))
|
|
|
|
println('============\n')
|
|
|
|
}
|
|
|
|
|
2021-06-22 17:52:34 +02:00
|
|
|
fn clean_line_endings(s string) string {
|
|
|
|
mut res := s.trim_space()
|
|
|
|
res = res.replace(' \n', '\n')
|
|
|
|
res = res.replace(' \r\n', '\n')
|
|
|
|
res = res.replace('\r\n', '\n')
|
|
|
|
res = res.trim('\n')
|
|
|
|
return res
|
|
|
|
}
|