File: 22mwarnings.t

package info (click to toggle)
libsgml-parser-opensp-perl 0.994-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: perl: 225; makefile: 10
file content (67 lines) | stat: -rwxr-xr-x 1,755 bytes parent folder | download | duplicates (4)
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
# 10errors.t -- ...
#
# $Id: 22mwarnings.t,v 1.1 2006/11/07 11:14:13 hoehrmann Exp $

use strict;
use warnings;
use Test::More tests => 7;
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');

#########################################################
## Error reporting
#########################################################

sub TestHandler5::new         { bless{ok=>0},shift }
sub TestHandler5::error
{
    return unless @_ == 2;
    $_[0]->{ok}++ if $_[1]->{Message} =~ /:8:7:W:/;
}

my $h5 = TestHandler5->new;
$p->catalogs(TEST_CATALOG);
$p->warnings('xml');
$p->handler($h5);
lives_ok { $p->parse("<LITERAL>" . <<"__DOC__");
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>foo & bar</p>
</body>
</html>
__DOC__
} 'ampersand as data';

is($h5->{ok}, 1, 'ampersand as data generates warning');

# special case
$p->warnings(qw/non-sgml-char-ref valid no-duplicate xml/);

lives_ok { $p->parse("<LITERAL>" . <<"__DOC__");
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>foo & bar</p>
</body>
</html>
__DOC__
} 'ampersand as data';

is($h5->{ok}, 2, 'ampersand as data generates warning');