diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-05-20 17:04:45 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-05-20 17:04:45 +0200 |
commit | 6d1458814b1d9b3030f4823461e22a2be8d3fc68 (patch) | |
tree | 56d00fcd6d984b2429740284cf4f0b77004b9ab0 /lib/xmerl/test/xmerl_xsd_lib.erl | |
parent | 2098d573b097566d598ded1444625439ee6c0ae3 (diff) | |
download | otp-6d1458814b1d9b3030f4823461e22a2be8d3fc68.tar.gz otp-6d1458814b1d9b3030f4823461e22a2be8d3fc68.tar.bz2 otp-6d1458814b1d9b3030f4823461e22a2be8d3fc68.zip |
Remove ?line macros
Diffstat (limited to 'lib/xmerl/test/xmerl_xsd_lib.erl')
-rw-r--r-- | lib/xmerl/test/xmerl_xsd_lib.erl | 189 |
1 files changed, 92 insertions, 97 deletions
diff --git a/lib/xmerl/test/xmerl_xsd_lib.erl b/lib/xmerl/test/xmerl_xsd_lib.erl index e008086cc6..46134288f1 100644 --- a/lib/xmerl/test/xmerl_xsd_lib.erl +++ b/lib/xmerl/test/xmerl_xsd_lib.erl @@ -43,10 +43,8 @@ compare_test_results(Config, ST, IT) -> ResIT=compare_instance_test_results(IT), io:format("compare_test_results:~n ST = ~p~n IT = ~p~n ResST = ~p~n ResIT = ~p~n",[ST, IT, ResST, ResIT]), case process_reference_results(Config, ResST, ResIT) of - error -> - error; - Diff -> - return_results(Diff, ResST, ResIT, length(ST)+length(IT)) + error -> error; + Diff -> return_results(Diff, ResST, ResIT, length(ST)+length(IT)) end. compare_schema_test_results(ST) -> @@ -58,7 +56,7 @@ return_results({SkippedN, Diff},{STErrs, _},{ITErrs, _}, TotN) -> NumErrs = length(STErrs ++ ITErrs), case NumErrs == TotN of true when TotN > 0 -> - ?line exit(all_tests_cases_failed); + exit(all_tests_cases_failed); _ -> return_results2(Diff, TotN - NumErrs, SkippedN, TotN) end. @@ -76,29 +74,26 @@ return_results2({[], [], [], []}, NumSucc, SkippedN, TotN) -> {comment,io_lib:format("~p successful tests, ~p skipped tests of totally ~p test cases.~n", [NumSucc, SkippedN, TotN])}; return_results2({NewFail, NewSuccess, NewMal, NewNotMal}, NumSucc, SkippedN, TotN) -> - NFComm = - case NewFail of - [] -> ""; - _ -> io_lib:format("These ~p tests are new failures: ~p~n", - [length(NewFail), NewFail]) - end, - NSComm = - case NewSuccess of - [] -> ""; - _ -> io_lib:format("These ~p skipped tests are new succeeding cases: ~p~n", - [length(NewSuccess), NewSuccess]) - end, - NMComm = - case NewMal of - [] -> ""; - _ -> io_lib:format("These ~p tests are now malicious: ~p~n", - [length(NewMal), NewMal]) - end, - NNMComm = - case NewNotMal of - [] -> ""; - _ -> io_lib:format("These ~p skipped tests were malicious, but succeeds now: ~p~n", [length(NewNotMal), NewNotMal]) - end, + NFComm = case NewFail of + [] -> ""; + _ -> io_lib:format("These ~p tests are new failures: ~p~n", + [length(NewFail), NewFail]) + end, + NSComm = case NewSuccess of + [] -> ""; + _ -> io_lib:format("These ~p skipped tests are new succeeding cases: ~p~n", + [length(NewSuccess), NewSuccess]) + end, + NMComm = case NewMal of + [] -> ""; + _ -> io_lib:format("These ~p tests are now malicious: ~p~n", + [length(NewMal), NewMal]) + end, + NNMComm = case NewNotMal of + [] -> ""; + _ -> io_lib:format("These ~p skipped tests were malicious, but succeeds now: ~p~n", + [length(NewNotMal), NewNotMal]) + end, ct:comment(io_lib:format("~p successful tests, ~p skipped tests of totally ~p test cases. ~n" ++ NFComm ++ NSComm ++ NMComm ++ NNMComm, [NumSucc, SkippedN, TotN])), [] = NewFail. @@ -148,9 +143,9 @@ io:format("D: ~no result\n\n",[]), write_in_log(_Config, [], []) -> ok; write_in_log(Config, AllErrs, AllMals) -> - ?line LogFileName = ?config(xmerl_error_log, Config), + LogFileName = ?config(xmerl_error_log, Config), {ok,IO}=file:open(LogFileName, [append]), - ?line TestCase = ?config(testcase, Config), + TestCase = ?config(testcase, Config), io:format(IO,"{~p,{~p,~p}}.~n", [TestCase, AllErrs, AllMals]), file:close(IO), ok. @@ -183,47 +178,47 @@ schema_test(Config, FileName, XsdBase, Validity, AccState) -> ModuleName = filename:basename(FileName), DataDir = ?config(data_dir, Config), case xmerl_xsd:process_schema(filename:join([DataDir, FileName]), - [{xsdbase, filename:join([DataDir, XsdBase])}, AccState]) of - {error, enoent} -> - {{ModuleName, enoent}, AccState}; - {Ok, S} -> - case Validity of - valid when Ok == ok -> - {{ModuleName, S#xsd_state.errors == []}, S}; - invalid when Ok == error -> - {{ModuleName, no_internal_error(S)}, AccState}; - notKnown -> - {{ModuleName, true}, AccState}; - valid -> - {{ModuleName, false}, AccState}; - _ -> - {{ModuleName, false}, S} - end + [{xsdbase, filename:join([DataDir, XsdBase])}, AccState]) of + {error, enoent} -> + {{ModuleName, enoent}, AccState}; + {Ok, S} -> + case Validity of + valid when Ok == ok -> + {{ModuleName, S#xsd_state.errors == []}, S}; + invalid when Ok == error -> + {{ModuleName, no_internal_error(S)}, AccState}; + notKnown -> + {{ModuleName, true}, AccState}; + valid -> + {{ModuleName, false}, AccState}; + _ -> + {{ModuleName, false}, S} + end end. instance_test(Config, FileName, XMLBase, Validity, State) -> ModuleName = filename:basename(FileName), DataDir = ?config(data_dir, Config), case xmerl_scan:file(filename:join([DataDir, FileName]), - [{xmlbase, filename:join([DataDir, XMLBase])}]) of - {error, enoent} -> - {ModuleName, enoent}; - {E, _} -> - {VE, S2} = xmerl_xsd:validate(E, State), - case Validity of - valid when is_record(VE, xmlElement) -> - case S2#xsd_state.errors of - [] -> ok; - _ -> io:format("test case ~p failed.~nValidity: ~p~nValidation result:~p~n", [FileName, Validity, VE]) - end, - {ModuleName, S2#xsd_state.errors == []}; - invalid when VE == error -> - {ModuleName, no_internal_error(S2)}; - notKnown -> - {ModuleName, true}; - _ -> - io:format("test case ~p failed.~nValidity: ~p~nValidation result:~p~n", [FileName, Validity, VE]), - {ModuleName,false} - end + [{xmlbase, filename:join([DataDir, XMLBase])}]) of + {error, enoent} -> + {ModuleName, enoent}; + {E, _} -> + {VE, S2} = xmerl_xsd:validate(E, State), + case Validity of + valid when is_record(VE, xmlElement) -> + case S2#xsd_state.errors of + [] -> ok; + _ -> io:format("test case ~p failed.~nValidity: ~p~nValidation result:~p~n", [FileName, Validity, VE]) + end, + {ModuleName, S2#xsd_state.errors == []}; + invalid when VE == error -> + {ModuleName, no_internal_error(S2)}; + notKnown -> + {ModuleName, true}; + _ -> + io:format("test case ~p failed.~nValidity: ~p~nValidation result:~p~n", [FileName, Validity, VE]), + {ModuleName,false} + end end. no_internal_error(R) -> @@ -236,8 +231,8 @@ no_internal_error(R) -> unpack(Config, Suite) -> TarFile = suite_tar(Suite), - ?line file:set_cwd(?config(data_dir, Config)), - ?line ok=erl_tar:extract(TarFile, [compressed]), + file:set_cwd(?config(data_dir, Config)), + ok=erl_tar:extract(TarFile, [compressed]), change_mode(filename:rootname(TarFile, ".tar.gz")). suite_tar(sun) -> @@ -250,45 +245,45 @@ suite_tar(nist) -> change_mode(Files) -> change_mode3(Files). change_mode2(Dir)-> - ?line {ok, CWD} = file:get_cwd(), - ?line {ok, FileList} = file:list_dir(Dir), - ?line file:set_cwd(filename:join([CWD, Dir])), + {ok, CWD} = file:get_cwd(), + {ok, FileList} = file:list_dir(Dir), + file:set_cwd(filename:join([CWD, Dir])), change_mode3(FileList), - ?line file:set_cwd(CWD). + file:set_cwd(CWD). change_mode3([]) -> ok; change_mode3([F |Fs]) -> case filelib:is_dir(F) of - true -> - chmod(F), - change_mode2(F); - _ -> - chmod(F) + true -> + chmod(F), + change_mode2(F); + _ -> + chmod(F) end, change_mode3(Fs). chmod(F) -> case file:read_file_info(F) of - {ok, FileInfo} -> - Mode= FileInfo#file_info.mode, - file:write_file_info(F, FileInfo#file_info{mode=8#00777 bor Mode}); - _ -> - ok + {ok, FileInfo} -> + Mode= FileInfo#file_info.mode, + file:write_file_info(F, FileInfo#file_info{mode=8#00777 bor Mode}); + _ -> + ok end. rmdir(Config, Suite) -> - ?line file:set_cwd(?config(data_dir, Config)), + file:set_cwd(?config(data_dir, Config)), SuiteDir = filename:rootname(suite_tar(Suite), ".tar.gz"), - ?line ok=rm_f_(SuiteDir). + ok=rm_f_(SuiteDir). %% Dir is a directory rm_f_(Dir) -> - ?line {ok, CWD} = file:get_cwd(), - ?line {ok, FileList} = file:list_dir(Dir), - ?line file:set_cwd(filename:join([CWD, Dir])), + {ok, CWD} = file:get_cwd(), + {ok, FileList} = file:list_dir(Dir), + file:set_cwd(filename:join([CWD, Dir])), rm_files(FileList), - ?line file:set_cwd(CWD), - ? line ok = file:del_dir(Dir). + file:set_cwd(CWD), + ok = file:del_dir(Dir). rm_files([])-> ok; @@ -298,25 +293,25 @@ rm_files([F |Fs]) -> rm_f_(F); _ -> io:format("rm_files: ~p~n", [F]), - ?line ok = file:delete(F) + ok = file:delete(F) end, rm_files(Fs). create_error_log_file(Config, Suite) -> - ?line {{Y, M, D}, {H, Min, S}} = calendar:local_time(), + {{Y, M, D}, {H, Min, S}} = calendar:local_time(), DTString=lists:concat([Y, "-", M,"-", D, "_", H, ".", Min, ".", S]), FileName = lists:concat([Suite, "_", DTString, ".errorlog"]), -%% ?line {ok,_IO} = file:open(filename:join([?config(priv_dir,Config), +%% {ok,_IO} = file:open(filename:join([?config(priv_dir,Config), %% FileName]),[append]). -%% ?line {ok,_IO} = file:open(FileName,[append]). +%% {ok,_IO} = file:open(FileName,[append]). io:format("error log file: ~p~n", [filename:join([?config(priv_dir,Config), FileName])]), {ok, filename:join([?config(priv_dir,Config), FileName])}. close_error_log_file(Config) -> case lists:keysearch(xmerl_error_log, 1, Config) of - {value,{_, IO}} -> - file:close(IO); - _ -> - ok + {value,{_, IO}} -> + file:close(IO); + _ -> + ok end. |