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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# Test file created outside of h2xs framework.
# Run this like so: `perl 44extent.t'
# pajas@ufal.mff.cuni.cz 2009/09/24 13:18:43
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use Test;
BEGIN { plan tests => 7 };
use warnings;
use strict;
use XML::LibXML;
$|=1;
if (20627 > XML::LibXML::LIBXML_VERSION) {
skip("skipping for libxml2 < 2.6.27") for 1..7;
} else {
my $parser = XML::LibXML->new({
expand_entities => 1,
ext_ent_handler => \&handler,
});
sub handler {
return join(",",@_);
}
my $xml = <<'EOF';
<?xml version="1.0"?>
<!DOCTYPE foo [
<!ENTITY a PUBLIC "//foo/bar/b" "file:/dev/null">
<!ENTITY b SYSTEM "file:///dev/null">
]>
<root>
<a>&a;</a>
<b>&b;</b>
</root>
EOF
my $xml_out = $xml;
$xml_out =~ s{&a;}{file:/dev/null,//foo/bar/b};
$xml_out =~ s{&b;}{file:///dev/null,};
my $doc = $parser->parse_string($xml);
ok( $doc->toString() eq $xml_out );
my $xml_out2 = $xml; $xml_out2 =~ s{&[ab];}{<!-- -->}g;
$parser->set_option( ext_ent_handler => sub { return '<!-- -->' } );
$doc = $parser->parse_string($xml);
ok( $doc->toString() eq $xml_out2 );
$parser->set_option( ext_ent_handler=>sub{ '' } );
$parser->set_options({
expand_entities => 0,
recover => 2,
});
$doc = $parser->parse_string($xml);
ok( $doc->toString() eq $xml );
foreach my $el ($doc->findnodes('/root/*')) {
ok ($el->hasChildNodes);
ok ($el->firstChild->nodeType == XML_ENTITY_REF_NODE);
}
#########################
# Insert your test code below, the Test::More module is used here so read
# its man page ( perldoc Test::More ) for help writing this test script.
}
|