File: 41xinclude.t

package info (click to toggle)
libxml-libxml-perl 1.70.ds-1%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 1,992 kB
  • ctags: 1,726
  • sloc: perl: 4,521; ansic: 3,583; xml: 177; sh: 62; makefile: 7
file content (40 lines) | stat: -rw-r--r-- 941 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
#!/usr/bin/perl -w
use strict;
use warnings;
use XML::LibXML;
use Test;
BEGIN { 
  plan tests => 7;
};


# tests for bug #24953: External entities not expanded in included file (XInclude)

my $parser = XML::LibXML->new;
my $file = 'test/xinclude/test.xml';
{
  $parser->expand_xinclude(0);
  $parser->expand_entities(1);
  ok($parser->parse_file($file)->toString() !~  /IT WORKS/);
}
{
  $parser->expand_xinclude(1);
  $parser->expand_entities(0);
  ok($parser->parse_file($file)->toString() !~  /IT WORKS/);
}
{
  $parser->expand_xinclude(1);
  $parser->expand_entities(1);
  ok($parser->parse_file($file)->toString() =~  /IT WORKS/);
}
{
  $parser->expand_xinclude(0);
  my $doc = $parser->parse_file($file);
  ok( $doc->process_xinclude({expand_entities=>0}) );
  ok( $doc->toString()!~/IT WORKS/ );
}
{
  my $doc = $parser->parse_file($file);
  ok( $doc->process_xinclude({expand_entities=>1}) );
  ok( $doc->toString()=~/IT WORKS/ );
}