import os import toml // Instructions for developers: // The actual tests and data can be obtained by doing: // `cd vlib/toml/tests/testdata` // `git clone --depth 1 https://github.com/BurntSushi/toml-test.git burntsushi/toml-test` // See also the CI toml tests // TODO Goal: make parsing AND value retrieval of all of https://github.com/BurntSushi/toml-test/test/ pass const ( valid_exceptions = [ 'table/array-table-array.toml', ] invalid_exceptions = [ // Table 'table/rrbrace.toml', 'table/duplicate-table-array2.toml', 'table/duplicate.toml', 'table/array-implicit.toml', 'table/injection-2.toml', 'table/llbrace.toml', 'table/injection-1.toml', 'table/duplicate-table-array.toml', // Array 'array/tables-1.toml', //'array/missing-separator.toml', 'array/text-after-array-entries.toml', 'array/text-before-array-separator.toml', // Date / Time 'datetime/impossible-date.toml', 'datetime/no-leads-with-milli.toml', 'datetime/no-leads.toml', // Inline table 'inline-table/linebreak-4.toml', 'inline-table/linebreak-3.toml', 'inline-table/linebreak-1.toml', 'inline-table/linebreak-2.toml', // Key 'key/duplicate.toml', 'key/after-table.toml', 'key/duplicate-keys.toml', 'key/after-value.toml', 'key/newline.toml', 'key/without-value-2.toml', 'key/no-eol.toml', 'key/after-array.toml', 'key/multiline.toml', ] ) // test_burnt_sushi_tomltest run though 'testdata/burntsushi/toml-test/*' if found. fn test_burnt_sushi_tomltest() { this_file := @FILE test_root := os.join_path(os.dir(this_file), 'testdata', 'burntsushi', 'toml-test', 'tests') if os.is_dir(test_root) { valid_test_files := os.walk_ext(os.join_path(test_root, 'valid'), '.toml') println('Testing $valid_test_files.len valid TOML files...') mut valid := 0 mut e := 0 for i, valid_test_file in valid_test_files { relative := valid_test_file.all_after(os.join_path('toml-test', 'tests', 'valid')).trim_left(os.path_separator) if relative !in valid_exceptions { println('OK [$i/$valid_test_files.len] "$valid_test_file"...') toml_doc := toml.parse_file(valid_test_file) or { panic(err) } // parsed_json := toml_doc.to_json().replace(' ','') // mut test_suite_json := os.read_file(valid_test_file.all_before_last('.')+'.json') or { panic(err) } // test_suite_json = test_suite_json.replace('\n ','').replace(' ','') // println(test_suite_json.replace('\n ','').replace(' ','')) // assert parsed_json == test_suite_json valid++ } else { e++ println('SKIP [$i/$valid_test_files.len] "$valid_test_file" EXCEPTION [$e/$valid_exceptions.len]...') } } println('$valid/$valid_test_files.len TOML files was parsed correctly') if valid_exceptions.len > 0 { println('TODO Skipped parsing of $valid_exceptions.len valid TOML files...') } // NOTE uncomment to see list of skipped files // assert false // TODO test cases where the parser should fail invalid_test_files := os.walk_ext(os.join_path(test_root, 'invalid'), '.toml') println('Testing $invalid_test_files.len invalid TOML files...') mut invalid := 0 e = 0 for i, invalid_test_file in invalid_test_files { relative := invalid_test_file.all_after(os.join_path('toml-test', 'tests', 'invalid')).trim_left(os.path_separator) if relative !in invalid_exceptions { println('OK [$i/$invalid_test_files.len] "$invalid_test_file"...') if toml_doc := toml.parse_file(invalid_test_file) { content_that_should_have_failed := os.read_file(invalid_test_file) or { panic(err) } println(' This TOML should have failed:\n${'-'.repeat(40)}\n$content_that_should_have_failed\n${'-'.repeat(40)}') assert false } else { println(' $err.msg') assert true // err.msg == 'your error' } invalid++ } else { e++ println('SKIP [$i/$invalid_test_files.len] "$invalid_test_file" EXCEPTION [$e/$invalid_exceptions.len]...') } } println('$invalid/$invalid_test_files.len TOML files was parsed correctly') if invalid_exceptions.len > 0 { println('TODO Skipped parsing of $invalid_exceptions.len invalid TOML files...') } // NOTE uncomment to see list of skipped files // assert false } else { println('No test data directory found in "$test_root"') assert true } }