File: 41xinclude.t

package info (click to toggle)
libxml-libxml-perl 2.0116%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,420 kB
  • sloc: perl: 6,139; ansic: 3,752; xml: 182; sh: 64; makefile: 8
file content (43 lines) | stat: -rw-r--r-- 1,212 bytes parent folder | download | duplicates (8)
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
#!/usr/bin/perl -w
use strict;
use warnings;
use XML::LibXML;
use Test::More 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);
  # TEST
  ok (scalar ($parser->parse_file($file)->toString() !~  /IT WORKS/), ' TODO : Add test name');
}
{
  $parser->expand_xinclude(1);
  $parser->expand_entities(0);
  # TEST
  ok (scalar($parser->parse_file($file)->toString() !~  /IT WORKS/), ' TODO : Add test name');
}
{
  $parser->expand_xinclude(1);
  $parser->expand_entities(1);
  # TEST
  ok (scalar($parser->parse_file($file)->toString() =~  /IT WORKS/), ' TODO : Add test name');
}
{
  $parser->expand_xinclude(0);
  my $doc = $parser->parse_file($file);
  # TEST
  ok( $doc->process_xinclude({expand_entities=>0}), ' TODO : Add test name' );
  # TEST
  ok( scalar($doc->toString() !~ /IT WORKS/), ' TODO : Add test name' );
}
{
  my $doc = $parser->parse_file($file);
  # TEST
  ok( $doc->process_xinclude({expand_entities=>1}), ' TODO : Add test name' );
  # TEST
  ok( scalar($doc->toString() =~ /IT WORKS/), ' TODO : Add test name' );
}