File: print.t

package info (click to toggle)
libxml-dom-perl 1.25-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 420 kB
  • ctags: 454
  • sloc: xml: 3,918; perl: 3,411; makefile: 46
file content (51 lines) | stat: -rw-r--r-- 875 bytes parent folder | download | duplicates (3)
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
41
42
43
44
45
46
47
48
49
50
51
BEGIN {print "1..3\n";}
END {print "not ok 1\n" unless $loaded;}
use XML::DOM;
$loaded = 1;
print "ok 1\n";

#Test 2

my $str = <<END;
<?xml version="1.0" standalone="yes"?>
<!DOCTYPE doc [
 <!ENTITY huh "Uh huh huh huh mmh huh">
 <!ELEMENT doc (beavis | butthead)*>
 <!ELEMENT beavis (#PCDATA)>
 <!ELEMENT butthead (#PCDATA)>
]>
<doc>
 <beavis>
Hey Butthead!
 </beavis>
 <butthead>
Yes, Beavis.
 </butthead>  
 <beavis>
You farted. &huh;
 </beavis>
 <butthead>
&huh; Yeah &huh;
 </butthead>  
</doc>
END

my $parser = new XML::DOM::Parser (NoExpand => 1);
my $doc = $parser->parse ($str);
my $out = $doc->toString;
$out =~ tr/\012/\n/;

if ($out ne $str)
{
    print "not ";
}
print "ok 2\n";

$str = $doc->getElementsByTagName("butthead")->item(0)->toString;
$str =~ tr/\012/\n/;

if ($str ne "<butthead>\nYes, Beavis.\n </butthead>")
{
    print "not ";
}
print "ok 3\n";