summaryrefslogtreecommitdiff
path: root/t/cdata.t
blob: 5e1190b49e36472c8bd6bfdb39145f556c2a8027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
BEGIN {print "1..2\n";}
END {print "not ok 1\n" unless $loaded;}
use XML::Parser;
$loaded = 1;
print "ok 1\n";

my $count = 0;

my $cdata_part = "<<< & > '' << &&&>&&&&;<";

my $doc = "<foo> hello <![CDATA[$cdata_part]]> there</foo>";

my $acc = '';

sub ch {
  my ($xp, $data) = @_;

  $acc .= $data;
}

sub stcd {
  my $xp = shift;
  $xp->setHandlers(Char => \&ch);
}

sub ecd {
  my $xp = shift;
  $xp->setHandlers(Char => 0);
}

$parser = new XML::Parser(ErrorContext => 2,
			  Handlers     => {CdataStart => \&stcd,
					   CdataEnd   => \&ecd});

$parser->parse($doc);

print "not "
  unless ($acc eq $cdata_part);
print "ok 2\n";