93 |
@{$test->{errors}->[0]} = sort {$a cmp $b} @{$test->{errors}->[0] ||= []}; |
@{$test->{errors}->[0]} = sort {$a cmp $b} @{$test->{errors}->[0] ||= []}; |
94 |
|
|
95 |
ok join ("\n", @errors), join ("\n", @{$test->{errors}->[0] or []}), |
ok join ("\n", @errors), join ("\n", @{$test->{errors}->[0] or []}), |
96 |
'Parse error: ' . Data::Dumper::qquote ($test->{data}->[0]) . '; ' . |
'Parse error: ' . Data::Dumper::qquote ($test->{data}->[0]); |
97 |
join (', ', @errors) . ';' . join (', ', @{$test->{errors}->[0] or []}); |
|
98 |
|
if ($test->{'xml-version'}) { |
99 |
|
ok $doc->xml_version, $test->{'xml-version'}->[0], |
100 |
|
'XML version: ' . Data::Dumper::qquote ($test->{data}->[0]); |
101 |
|
} |
102 |
|
|
103 |
|
if ($test->{'xml-encoding'}) { |
104 |
|
if ($test->{'xml-encoding'}->[1]->[0] eq 'null') { |
105 |
|
ok $doc->xml_encoding, undef, |
106 |
|
'XML encoding: ' . Data::Dumper::qquote ($test->{data}->[0]); |
107 |
|
} else { |
108 |
|
ok $doc->xml_encoding, $test->{'xml-encoding'}->[0], |
109 |
|
'XML encoding: ' . Data::Dumper::qquote ($test->{data}->[0]); |
110 |
|
} |
111 |
|
} |
112 |
|
|
113 |
|
if ($test->{'xml-standalone'}) { |
114 |
|
ok $doc->xml_standalone ? 1 : 0, |
115 |
|
$test->{'xml-standalone'}->[1]->[0] eq 'true' ? 1 : 0, |
116 |
|
'XML standalone: ' . Data::Dumper::qquote ($test->{data}->[0]); |
117 |
|
} |
118 |
|
|
119 |
$test->{document}->[0] .= "\x0A" if length $test->{document}->[0]; |
$test->{document}->[0] .= "\x0A" if length $test->{document}->[0]; |
120 |
ok $result, $test->{document}->[0], |
ok $result, $test->{document}->[0], |
126 |
${test_dir_name}attrs-1.dat |
${test_dir_name}attrs-1.dat |
127 |
${test_dir_name}texts-1.dat |
${test_dir_name}texts-1.dat |
128 |
${test_dir_name}cdata-1.dat |
${test_dir_name}cdata-1.dat |
129 |
|
${test_dir_name}charref-1.dat |
130 |
|
${test_dir_name}comments-2.dat |
131 |
|
${test_dir_name}pis-1.dat |
132 |
|
${test_dir_name}pis-2.dat |
133 |
|
${test_dir_name}xmldecls-1.dat |
134 |
${test_dir_name}tree-1.dat |
${test_dir_name}tree-1.dat |
135 |
|
${test_dir_name}ns-elements-1.dat |
136 |
${test_dir_name}ns-attrs-1.dat |
${test_dir_name}ns-attrs-1.dat |
137 |
${test_dir_name}doctypes-1.dat |
${test_dir_name}doctypes-1.dat |
138 |
|
${test_dir_name}doctypes-2.dat |
139 |
|
${test_dir_name}attlists-1.dat |
140 |
]; |
]; |
141 |
|
|
142 |
require 't/testfiles.pl'; |
require 't/testfiles.pl'; |