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 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#!perl -T
use 5.010001;
use warnings;
use strict;
use Test::More tests => 8;
use HTML::Tidy5;
use HTML::Tidy5::Message;
WITH_LINE_NUMBERS_WITH_FILENAME: {
my $error = HTML::Tidy5::Message->new( 'foo.pl', TIDY_ERROR, 2112, 5150, 'Blah blah' );
isa_ok( $error, 'HTML::Tidy5::Message' );
my %expected = (
file => 'foo.pl',
type => TIDY_ERROR,
line => 2112,
column => 5150,
text => 'Blah blah',
as_string => 'foo.pl (2112:5150) Error: Blah blah',
);
_match_up( $error, \%expected, 'With line numbers' );
}
WITH_LINE_NUMBERS_WITHOUT_FILENAME: {
my $error = HTML::Tidy5::Message->new( undef, TIDY_ERROR, 2112, 5150, 'Blah blah' );
isa_ok( $error, 'HTML::Tidy5::Message' );
my %expected = (
file => undef,
type => TIDY_ERROR,
line => 2112,
column => 5150,
text => 'Blah blah',
as_string => '(2112:5150) Error: Blah blah',
);
_match_up( $error, \%expected, 'With line numbers' );
}
WITHOUT_LINE_NUMBERS_WITH_FILENAME: {
my $error = HTML::Tidy5::Message->new( 'bar.pl', TIDY_WARNING, undef, undef, 'Blah blah' );
isa_ok( $error, 'HTML::Tidy5::Message' );
my %expected = (
file => 'bar.pl',
type => TIDY_WARNING,
line => 0,
column => 0,
text => 'Blah blah',
as_string => 'bar.pl Warning: Blah blah',
);
_match_up( $error, \%expected, 'Without line numbers' );
}
WITHOUT_LINE_NUMBERS_WITHOUT_FILENAME: {
my $error = HTML::Tidy5::Message->new( undef, TIDY_WARNING, undef, undef, 'Blah blah' );
isa_ok( $error, 'HTML::Tidy5::Message' );
my %expected = (
file => undef,
type => TIDY_WARNING,
line => 0,
column => 0,
text => 'Blah blah',
as_string => 'Warning: Blah blah',
);
_match_up( $error, \%expected, 'Without line numbers' );
}
sub _match_up {
local $Test::Builder::Level = $Test::Builder::Level + 1;
my $error = shift;
my $expected = shift;
my $msg = shift or die;
return subtest "_matchup( $msg )" => sub {
plan tests => scalar keys %{$expected};
for my $what ( sort keys %{$expected} ) {
is( $error->$what, $expected->{$what}, "$what matches" );
}
};
}
|