/[suikacvs]/markup/html/whatpm/t/HTML-tree.t
Suika

Contents of /markup/html/whatpm/t/HTML-tree.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.23 - (hide annotations) (download) (as text)
Mon Mar 3 11:56:18 2008 UTC (16 years, 8 months ago) by wakaba
Branch: MAIN
Changes since 1.22: +18 -1 lines
File MIME type: application/x-troff
++ whatpm/t/ChangeLog	3 Mar 2008 11:49:36 -0000
	* tokenizer-test-1.test: New test data are added to cover
	all possible cases.

	* HTML-tree.t: Support for test coverage.

2008-03-03  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ChangeLog	3 Mar 2008 11:56:09 -0000
	* HTML.pm.src (_tokenize_attempt_to_consume_an_entity): Checkpoints
	are set.  Cases that are unlikely reached are noted as so.

2008-03-03  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 #!/usr/bin/perl
2     use strict;
3    
4 wakaba 1.23 my $DEBUG = $ENV{DEBUG};
5    
6 wakaba 1.1 my $dir_name;
7 wakaba 1.2 my $test_dir_name;
8 wakaba 1.1 BEGIN {
9 wakaba 1.2 $test_dir_name = 't/';
10 wakaba 1.1 $dir_name = 't/tree-construction/';
11     my $skip = "You don't have make command";
12     eval q{
13     system ("cd $test_dir_name; make tree-construction-files") == 0 or die
14     unless -f $dir_name.'tests1.dat';
15     $skip = '';
16     };
17     if ($skip) {
18     print "1..1\n";
19     print "ok 1 # $skip\n";
20     exit;
21     }
22     }
23    
24     use Test;
25 wakaba 1.22 BEGIN { plan tests => 980 }
26 wakaba 1.1
27     use Data::Dumper;
28     $Data::Dumper::Useqq = 1;
29     sub Data::Dumper::qquote {
30     my $s = shift;
31     $s =~ s/([^\x20\x21-\x26\x28-\x5B\x5D-\x7E])/sprintf '\x{%02X}', ord $1/ge;
32     return q<qq'> . $s . q<'>;
33     } # Data::Dumper::qquote
34    
35 wakaba 1.23
36     if ($DEBUG) {
37     my $not_found = {%$Whatpm::HTML::Debug::cp};
38     $Whatpm::HTML::Debug::cp_pass = sub {
39     my $id = shift;
40     delete $not_found->{$id};
41     };
42    
43     END {
44     for my $id (sort {$a <=> $b || $a cmp $b} keys %$not_found) {
45     print "# checkpoint $id is not reached\n";
46     }
47     }
48     }
49    
50 wakaba 1.2 for my $file_name (grep {$_} split /\s+/, qq[
51 wakaba 1.12 ${test_dir_name}tokenizer-test-2.dat
52 wakaba 1.2 ${dir_name}tests1.dat
53     ${dir_name}tests2.dat
54     ${dir_name}tests3.dat
55     ${dir_name}tests4.dat
56 wakaba 1.11 ${dir_name}tests5.dat
57     ${dir_name}tests6.dat
58 wakaba 1.2 ${test_dir_name}tree-test-1.dat
59 wakaba 1.14 ${test_dir_name}tree-test-2.dat
60 wakaba 1.1 ]) {
61 wakaba 1.2 open my $file, '<', $file_name
62     or die "$0: $file_name: $!";
63 wakaba 1.13 print "# $file_name\n";
64 wakaba 1.1
65     my $test;
66     my $mode = 'data';
67 wakaba 1.12 my $escaped;
68 wakaba 1.1 while (<$file>) {
69     s/\x0D\x0A/\x0A/;
70     if (/^#data$/) {
71     undef $test;
72     $test->{data} = '';
73     $mode = 'data';
74 wakaba 1.12 undef $escaped;
75     } elsif (/^#data escaped$/) {
76     undef $test;
77     $test->{data} = '';
78     $mode = 'data';
79     $escaped = 1;
80 wakaba 1.1 } elsif (/^#errors$/) {
81     $test->{errors} = [];
82     $mode = 'errors';
83 wakaba 1.13 $test->{data} =~ s/\x0D?\x0A\z//;
84     $test->{data} =~ s/\\u([0-9A-Fa-f]{4})/chr hex $1/ge if $escaped;
85 wakaba 1.12 undef $escaped;
86 wakaba 1.1 } elsif (/^#document$/) {
87     $test->{document} = '';
88     $mode = 'document';
89 wakaba 1.12 undef $escaped;
90     } elsif (/^#document escaped$/) {
91     $test->{document} = '';
92     $mode = 'document';
93     $escaped = 1;
94 wakaba 1.19 } elsif (/^#document-fragment$/) {
95     $test->{element} = '';
96     $mode = 'element';
97     undef $escaped;
98 wakaba 1.5 } elsif (/^#document-fragment (\S+)$/) {
99     $test->{document} = '';
100     $mode = 'document';
101     $test->{element} = $1;
102 wakaba 1.12 undef $escaped;
103     } elsif (/^#document-fragment (\S+) escaped$/) {
104     $test->{document} = '';
105     $mode = 'document';
106     $test->{element} = $1;
107     $escaped = 1;
108 wakaba 1.2 } elsif (defined $test->{document} and /^$/) {
109 wakaba 1.13 $test->{document} =~ s/\\u([0-9A-Fa-f]{4})/chr hex $1/ge if $escaped;
110 wakaba 1.2 test ($test);
111 wakaba 1.1 undef $test;
112     } else {
113     if ($mode eq 'data' or $mode eq 'document') {
114 wakaba 1.13 $test->{$mode} .= $_;
115 wakaba 1.19 } elsif ($mode eq 'element') {
116     tr/\x0D\x0A//d;
117     $test->{$mode} .= $_;
118 wakaba 1.1 } elsif ($mode eq 'errors') {
119     tr/\x0D\x0A//d;
120     push @{$test->{errors}}, $_;
121     }
122     }
123     }
124     test ($test) if $test->{errors};
125     }
126    
127 wakaba 1.4 use Whatpm::HTML;
128     use Whatpm::NanoDOM;
129 wakaba 1.1
130     sub test ($) {
131     my $test = shift;
132    
133 wakaba 1.4 my $doc = Whatpm::NanoDOM::Document->new;
134 wakaba 1.1 my @errors;
135    
136     $SIG{INT} = sub {
137 wakaba 1.3 print scalar serialize ($doc);
138 wakaba 1.1 exit;
139     };
140 wakaba 1.3
141 wakaba 1.5 my $onerror = sub {
142     my %opt = @_;
143     push @errors, join ':', $opt{line}, $opt{column}, $opt{type};
144     };
145     my $result;
146     unless (defined $test->{element}) {
147     Whatpm::HTML->parse_string ($test->{data} => $doc, $onerror);
148     $result = serialize ($doc);
149     } else {
150     my $el = $doc->create_element_ns
151     ('http://www.w3.org/1999/xhtml', [undef, $test->{element}]);
152     Whatpm::HTML->set_inner_html ($el, $test->{data}, $onerror);
153     $result = serialize ($el);
154     }
155    
156 wakaba 1.1 ok scalar @errors, scalar @{$test->{errors}},
157 wakaba 1.21 'Parse error: ' . Data::Dumper::qquote ($test->{data}) . '; ' .
158 wakaba 1.1 join (', ', @errors) . ';' . join (', ', @{$test->{errors}});
159    
160 wakaba 1.21 ok $result, $test->{document},
161     'Document tree: ' . Data::Dumper::qquote ($test->{data});
162 wakaba 1.1 } # test
163    
164     sub serialize ($) {
165     my $node = shift;
166     my $r = '';
167    
168     my @node = map { [$_, ''] } @{$node->child_nodes};
169     while (@node) {
170     my $child = shift @node;
171     my $nt = $child->[0]->node_type;
172     if ($nt == $child->[0]->ELEMENT_NODE) {
173     $r .= '| ' . $child->[1] . '<' . $child->[0]->tag_name . ">\x0A"; ## ISSUE: case?
174    
175 wakaba 1.2 for my $attr (sort {$a->[0] cmp $b->[0]} map { [$_->name, $_->value] }
176 wakaba 1.1 @{$child->[0]->attributes}) {
177     $r .= '| ' . $child->[1] . ' ' . $attr->[0] . '="'; ## ISSUE: case?
178     $r .= $attr->[1] . '"' . "\x0A";
179     }
180    
181     unshift @node,
182     map { [$_, $child->[1] . ' '] } @{$child->[0]->child_nodes};
183     } elsif ($nt == $child->[0]->TEXT_NODE) {
184     $r .= '| ' . $child->[1] . '"' . $child->[0]->data . '"' . "\x0A";
185     } elsif ($nt == $child->[0]->COMMENT_NODE) {
186     $r .= '| ' . $child->[1] . '<!-- ' . $child->[0]->data . " -->\x0A";
187     } elsif ($nt == $child->[0]->DOCUMENT_TYPE_NODE) {
188     $r .= '| ' . $child->[1] . '<!DOCTYPE ' . $child->[0]->name . ">\x0A";
189     } else {
190     $r .= '| ' . $child->[1] . $child->[0]->node_type . "\x0A"; # error
191     }
192     }
193    
194     return $r;
195     } # serialize
196    
197     ## License: Public Domain.
198 wakaba 1.23 ## $Date: 2007/08/25 02:44:39 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24