2019-09-15 17:08:16 +02:00
|
|
|
module runner
|
|
|
|
|
2019-12-23 11:09:22 +01:00
|
|
|
import (
|
|
|
|
os
|
|
|
|
filepath
|
|
|
|
)
|
2019-09-15 17:08:16 +02:00
|
|
|
|
2020-01-20 17:06:36 +01:00
|
|
|
pub struct RunnerOptions {
|
2019-09-15 17:08:16 +02:00
|
|
|
pub:
|
|
|
|
wd string
|
|
|
|
vexec string
|
|
|
|
files []string
|
|
|
|
}
|
|
|
|
|
2019-11-09 17:35:26 +01:00
|
|
|
pub fn full_path_to_v(dirs_in int) string {
|
2019-11-28 09:46:52 +01:00
|
|
|
vexe_from_env := os.getenv('VEXE')
|
|
|
|
if vexe_from_env.len > 0 {
|
|
|
|
return vexe_from_env
|
|
|
|
}
|
2019-11-09 17:35:26 +01:00
|
|
|
vname := if os.user_os() == 'windows' { 'v.exe' } else { 'v' }
|
|
|
|
mut path := os.executable()
|
|
|
|
for i := 0; i < dirs_in; i++ {
|
2019-12-23 11:09:22 +01:00
|
|
|
path = filepath.dir(path)
|
2019-11-09 17:35:26 +01:00
|
|
|
}
|
2020-01-20 17:06:36 +01:00
|
|
|
vexec := filepath.join( path, vname )
|
2019-09-15 17:08:16 +02:00
|
|
|
/*
|
|
|
|
args := os.args
|
|
|
|
vreal := os.realpath('v')
|
|
|
|
myself := os.realpath( os.executable() )
|
2020-01-20 17:06:36 +01:00
|
|
|
wd := os.getwd()
|
2019-09-15 17:08:16 +02:00
|
|
|
println('args are: $args')
|
|
|
|
println('vreal : $vreal')
|
|
|
|
println('myself : $myself')
|
|
|
|
println('wd : $wd')
|
|
|
|
*/
|
|
|
|
return vexec
|
|
|
|
}
|
|
|
|
|
2019-09-25 21:00:56 +02:00
|
|
|
fn find_working_diff_command() ?string {
|
|
|
|
for diffcmd in ['colordiff', 'diff', 'colordiff.exe', 'diff.exe'] {
|
|
|
|
p := os.exec('$diffcmd --version') or { continue }
|
|
|
|
if p.exit_code == 0 { return diffcmd }
|
|
|
|
}
|
|
|
|
return error('no working diff command found')
|
|
|
|
}
|
|
|
|
|
|
|
|
fn diff_files( file_result, file_expected string ) string {
|
|
|
|
diffcmd := find_working_diff_command() or { return err }
|
2020-01-20 23:04:26 +01:00
|
|
|
diff := os.exec('$diffcmd --minimal --text --unified=2 ${file_result} ${file_expected}') or { return 'found diff command "$diffcmd" does not work' }
|
2019-09-25 21:00:56 +02:00
|
|
|
return diff.output
|
|
|
|
}
|
|
|
|
|
2019-09-23 22:17:06 +02:00
|
|
|
pub fn run_repl_file(wd string, vexec string, file string) ?string {
|
2020-01-20 23:04:26 +01:00
|
|
|
fcontent := os.read_file(file) or { return error('Could not read file ${file}') }
|
2019-09-15 17:08:16 +02:00
|
|
|
content := fcontent.replace('\r', '')
|
|
|
|
input := content.all_before('===output===\n')
|
|
|
|
output := content.all_after('===output===\n')
|
2020-01-20 17:06:36 +01:00
|
|
|
|
|
|
|
fname := filepath.filename( file )
|
2020-01-20 23:04:26 +01:00
|
|
|
|
2020-01-20 17:06:36 +01:00
|
|
|
input_temporary_filename := os.realpath(filepath.join( wd, 'input_temporary_filename.txt'))
|
2019-09-15 17:08:16 +02:00
|
|
|
os.write_file(input_temporary_filename, input)
|
2020-01-20 17:06:36 +01:00
|
|
|
os.write_file( os.realpath(filepath.join( wd, 'original.txt' ) ), fcontent )
|
|
|
|
rcmd := '"$vexec" repl -replfolder "$wd" -replprefix "${fname}." < $input_temporary_filename'
|
2020-01-17 14:09:26 +01:00
|
|
|
r := os.exec(rcmd) or {
|
2019-09-15 17:08:16 +02:00
|
|
|
os.rm(input_temporary_filename)
|
2020-01-17 14:09:26 +01:00
|
|
|
return error('Could not execute: $rcmd')
|
2019-09-15 17:08:16 +02:00
|
|
|
}
|
|
|
|
os.rm(input_temporary_filename)
|
2020-01-20 17:06:36 +01:00
|
|
|
|
|
|
|
result := r.output.replace('\r','')
|
|
|
|
.replace('>>> ', '')
|
|
|
|
.replace('>>>', '')
|
|
|
|
.replace('... ', '')
|
|
|
|
.all_after('Use Ctrl-C or `exit` to exit\n')
|
|
|
|
.replace(wd + os.path_separator, '' )
|
2019-09-15 17:08:16 +02:00
|
|
|
|
|
|
|
if result != output {
|
2019-09-25 21:00:56 +02:00
|
|
|
file_result := '${file}.result.txt'
|
|
|
|
file_expected := '${file}.expected.txt'
|
|
|
|
os.write_file( file_result, result )
|
|
|
|
os.write_file( file_expected, output )
|
|
|
|
diff := diff_files( file_result, file_expected )
|
2020-01-20 23:04:26 +01:00
|
|
|
return error('Difference found in REPL file: ${file}
|
2019-09-15 17:08:16 +02:00
|
|
|
====> Got :
|
|
|
|
|$result|
|
|
|
|
====> Expected :
|
|
|
|
|$output|
|
2019-09-25 21:00:56 +02:00
|
|
|
====> Diff :
|
|
|
|
$diff
|
2019-09-15 17:08:16 +02:00
|
|
|
')
|
|
|
|
} else {
|
2020-01-20 23:04:26 +01:00
|
|
|
return 'Repl file ${file} is OK'
|
2019-09-15 17:08:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 17:35:26 +01:00
|
|
|
pub fn run_prod_file(wd string, vexec string, file string) ?string {
|
|
|
|
file_expected := '${file}.expected.txt'
|
2020-01-20 23:04:26 +01:00
|
|
|
f_expected_content := os.read_file(file_expected) or { return error('Could not read file ${file}') }
|
2019-11-09 17:35:26 +01:00
|
|
|
expected_content := f_expected_content.replace('\r', '')
|
|
|
|
|
2020-01-20 23:04:26 +01:00
|
|
|
cmd := '"$vexec" -prod run "${file}"'
|
2019-11-09 17:35:26 +01:00
|
|
|
r := os.exec(cmd) or {
|
|
|
|
return error('Could not execute: $cmd')
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.exit_code != 0 {
|
|
|
|
return error('$cmd return exit code: $r.exit_code')
|
|
|
|
}
|
|
|
|
|
|
|
|
result := r.output.replace('\r','')
|
|
|
|
|
|
|
|
if result != expected_content {
|
|
|
|
file_result := '${file}.result.txt'
|
|
|
|
os.write_file( file_result, result )
|
|
|
|
diff := diff_files( file_result, file_expected )
|
2020-01-20 23:04:26 +01:00
|
|
|
return error('Difference found in test: ${file}
|
2019-11-09 17:35:26 +01:00
|
|
|
====> Got :
|
|
|
|
|$result|
|
|
|
|
====> Expected :
|
|
|
|
|$expected_content|
|
|
|
|
====> Diff :
|
|
|
|
$diff
|
|
|
|
')
|
|
|
|
} else {
|
2020-01-20 23:04:26 +01:00
|
|
|
return 'Prod file ${file} is OK'
|
2019-11-09 17:35:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-15 17:08:16 +02:00
|
|
|
pub fn new_options() RunnerOptions {
|
2019-11-09 17:35:26 +01:00
|
|
|
vexec := full_path_to_v(5)
|
2020-01-20 23:04:26 +01:00
|
|
|
mut wd := os.getwd()
|
2019-09-15 17:08:16 +02:00
|
|
|
mut files := []string
|
|
|
|
if os.args.len > 1 {
|
2019-10-27 08:03:15 +01:00
|
|
|
files = os.args[1..]
|
2019-09-15 17:08:16 +02:00
|
|
|
} else {
|
2020-01-20 23:04:26 +01:00
|
|
|
os.chdir( filepath.dir(vexec) )
|
|
|
|
wd = os.getwd()
|
2019-09-15 17:08:16 +02:00
|
|
|
files = os.walk_ext('.', '.repl')
|
|
|
|
}
|
|
|
|
return RunnerOptions {
|
|
|
|
wd: wd
|
|
|
|
vexec: vexec
|
|
|
|
files: files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 17:35:26 +01:00
|
|
|
pub fn new_prod_options() RunnerOptions {
|
2020-01-20 17:06:36 +01:00
|
|
|
wd := os.getwd()
|
2019-11-09 17:35:26 +01:00
|
|
|
vexec := full_path_to_v(4)
|
|
|
|
mut files := []string
|
|
|
|
if os.args.len > 1 {
|
|
|
|
files = os.args[1..]
|
|
|
|
} else {
|
|
|
|
files = os.walk_ext(wd, '.prod.v')
|
|
|
|
}
|
|
|
|
return RunnerOptions {
|
|
|
|
wd: wd
|
|
|
|
vexec: vexec
|
|
|
|
files: files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|