/* Part of SWI-Prolog Author: Jan Wielemaker E-mail: J.Wielemaker@vu.nl WWW: http://www.swi-prolog.org Copyright (c) 2005-2014, University of Amsterdam VU University Amsterdam All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ :- module(test_sgml_write, [ test_sgml_write/0 ]). :- asserta(user:file_search_path(foreign, '.')). :- asserta(user:file_search_path(library, '.')). :- asserta(user:file_search_path(library, '../RDF')). :- use_module(library(sgml)). :- use_module(library(sgml_write)). :- use_module(library(pprint)). :- dynamic failed/2. test_sgml_write :- % default test fp('Test'). test(File) :- file_name_extension(_, xml, File), !, load_xml_file(File, Term), xml_write(user_output, Term, []). test(File) :- file_name_extension(_, sgml, File), !, load_sgml_file(File, Term), sgml_write(user_output, Term, []). test(File) :- file_name_extension(_, html, File), !, load_html_file(File, Term), html_write(user_output, Term, []). test(File, Into, Encoding) :- file_name_extension(_, xml, File), !, load_xml_file(File, Term), open(Into, write, Out, [encoding(Encoding)]), xml_write(Out, Term, []), close(Out). fp(Dir) :- retractall(failed(_, _)), atom_concat(Dir, '/*', Pattern), expand_file_name(Pattern, Files), ( member(File, Files), file_name_extension(_, Ext, File), ml_file(Ext), file_base_name(File, Base), \+ blocked(Base), debug(sgml(test), '~w ... ', [Base]), ( \+ utf8(Base) -> debug(sgml(test), ' (ISO Latin-1) ... ', []), fixed_point(File, iso_latin_1) ; true ), debug(sgml(test), ' (UTF-8) ... ', []), fixed_point(File, utf8), debug(sgml(test), ' done~n', []), fail ; report_failed ). ml_file(xml). ml_file(sgml). ml_file(html). %! blocked(+File) % % List of test-files that are blocked. These are either negative % tests or tests involving SDATA. blocked('bat.sgml'). blocked('i.sgml'). blocked('sdata.sgml'). blocked('cent-nul.xml'). blocked('defent.sgml'). blocked('comment.xml'). blocked('badxmlent.xml'). blocked('nosysent.xml'). %! utf8(+File) % % File requires UTF-8. These are files that have UTF-8 characters % in element or attribute names. utf8('utf8-ru.xml'). report_failed :- findall(X, failed(X, _), L), length(L, Len), ( Len > 0 -> format('~N*** ~w tests failed ***~n', [Len]), fail ; format('~NAll read/write roundtrip tests passed~n', []) ). %! fixed_point(+File, +Encoding) % % Perform write/read round-trip and validate the data has not % changed. fixed_point(File, Encoding) :- file_name_extension(_, xml, File), !, fp(File, Encoding, load_xml_file, xml_write). fixed_point(File, Encoding) :- file_name_extension(_, sgml, File), !, fp(File, Encoding, load_sgml_file, sgml_write). fixed_point(File, Encoding) :- file_name_extension(_, html, File), !, fp(File, Encoding, load_html_file, html_write). fp(File, Encoding, Load, Write) :- ( debugging(sgml(test)) -> put_char(user_error, r) ; true ), call(Load, File, Term), tmp_file(xml, TmpFile), open(TmpFile, write, TmpOut, [encoding(Encoding)]), ( debugging(sgml(test)) -> put_char(user_error, w) ; true ), call(Write, TmpOut, Term, []), close(TmpOut), % cat(TmpFile, Encoding), ( debugging(sgml(test)) -> put_char(user_error, r) ; true ), call(Load, TmpFile, Term2), delete_file(TmpFile), ( eq(Term, Term2) -> true ; assert(failed(File, Encoding)), format(user_error, 'First file:~n', []), pretty_print(Term), format(user_error, 'Second file:~n', []), pretty_print(Term2), fail ). cat(File, Encoding) :- open(File, read, In, [encoding(Encoding)]), copy_stream_data(In, current_output), close(In). % eq(M1, M2) % % Test two terms for equivalence. The following mismatches are % allowed: % % * Order of attributes % * Layout in `element-only' content eq(X, X) :- !. eq([], []) :- !. eq([B|T], L) :- % delete blanks blank_atom(B), !, eq(T, L). eq(L, [B|T]) :- blank_atom(B), !, eq(T, L). eq([H1|T1], [H2|T2]) :- !, eq(H1, H2), eq(T1, T2). eq(element(Name, A1, C1), element(Name, A2, C2)) :- att_eq(A1, A2), ceq(C1, C2). eq(A1, A2) :- atom(A1), atom(A2), !, normalise_blanks(A1, B1), normalise_blanks(A2, B2), ( B1 == B2 -> true ; format(user_error, 'ERROR: CDATA differs:~n\c \t~p~n\c \t~p~n', [B1, B2]) ). eq(X, Y) :- format(user_error, 'ERROR: Content differs:~n\c \t~p~n\c \t~p~n', [X, Y]). att_eq(A1, A2) :- % ordering is unimportant sort(A1, S), sort(A2, S), !. att_eq(A1, A2) :- format(user_error, 'ERROR: Attribute lists differ:~n\c \t~p~n\c \t~p~n', [A1, A2]). ceq(C1, C2) :- element_content(C1, E1), element_content(C2, E2), !, eq(E1, E2). ceq(C1, C2) :- eq(C1, C2). element_content([], []). element_content([element(Name,Atts,C)|T0], [element(Name,Atts,C)|T]) :- !, element_content(T0, T). element_content([Blank|T0], T) :- blank_atom(Blank), element_content(T0, T). blank_atom(Atom) :- atom(Atom), atom_codes(Atom, Codes), all_blanks(Codes). all_blanks([]). all_blanks([H|T]) :- code_type(H, space), all_blanks(T). normalise_blanks(Atom, Normalised) :- atom_codes(Atom, Codes), eat_blanks(Codes, Codes1), normalise_blanks2(Codes1, N), atom_codes(Normalised, N). normalise_blanks2([], []). normalise_blanks2([H|T0], T) :- code_type(H, space), !, eat_blanks(T0, T1), ( T1 == [] -> T = [] ; T = [32|T2], normalise_blanks2(T1, T2) ). normalise_blanks2([H|T0], [H|T]) :- normalise_blanks2(T0, T). eat_blanks([H|T0], T) :- code_type(H, space), !, eat_blanks(T0, T). eat_blanks(L, L). pretty_print(Term) :- print_term(Term, [output(current_output)]).