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
|
# 13restricted.t -- ...
#
# $Id: 13restricted.t,v 1.1 2004/09/14 08:40:31 hoehrmann Exp $
use strict;
use warnings;
use Test::More tests => 12;
use Test::Exception;
use File::Spec qw();
use constant NO_DOCTYPE => File::Spec->catfile('samples', 'no-doctype.xml');
use constant TEST_CATALOG => File::Spec->catfile('samples', 'test.soc');
BEGIN { use_ok('SGML::Parser::OpenSP') };
require_ok('SGML::Parser::OpenSP');
my $p = SGML::Parser::OpenSP->new;
isa_ok($p, 'SGML::Parser::OpenSP');
#########################################################
## restricted reading
#########################################################
sub TestHandler8::new{bless{ok1=>0,ok2=>0},shift}
sub TestHandler8::error {
my $s = shift;
my $e = shift;
return unless defined $s and defined $e;
$s->{ok2}++ if $e->{Message} =~ /^E:\s+/ and
$e->{Type} eq 'otherError';
}
sub TestHandler8::start_element{shift->{ok1}--}
my $h8 = TestHandler8->new;
$p->handler($h8);
$p->restrict_file_reading(1);
lives_ok { $p->parse("samples/../samples/no-doctype.xml") }
'must not read paths with ..';
is($h8->{ok1}, 0, 'must not read paths with ..');
isnt($h8->{ok2}, 0, 'must not read paths with ..');
$h8->{ok1} = 0;
$h8->{ok2} = 0;
lives_ok { $p->parse("./samples/no-doctype.xml") }
'must not read paths with ./';
is($h8->{ok1}, 0, 'must not read paths with ./');
isnt($h8->{ok2}, 0, 'must not read paths with ./');
$h8->{ok1} = 0;
$h8->{ok2} = 0;
my $sd = 'samples';
$p->search_dirs($sd);
lives_ok { $p->parse(File::Spec->catfile($sd, 'no-doctype.xml')) }
'allow to read sample dir in restricted mode';
isnt($h8->{ok1}, 0, 'allow to read sample dir in restricted mode');
is($h8->{ok2}, 0, 'allow to read sample dir in restricted mode');
$p->search_dirs([]);
$p->restrict_file_reading(0);
|