File: autotidy.t

package info (click to toggle)
libtest-www-mechanize-perl 1.52-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 372 kB
  • sloc: perl: 2,570; makefile: 4
file content (154 lines) | stat: -rw-r--r-- 5,058 bytes parent folder | download
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env perl -T

use strict;
use warnings;
use Test::Builder::Tester;
use Test::More;
use URI::file;

use Test::WWW::Mechanize;

BEGIN {
    my $module = 'HTML::Tidy5 1.00';

    # Load HTML::Lint here for the imports
    if ( not eval "use $module; 1;" ) {
        plan skip_all => "Optional $module is not installed, cannot test autotidy.";
    }
    plan tests => 5;
}


subtest 'Accessor and mutator' => sub {
    plan tests => 17;

    my $tidy = HTML::Tidy5->new;
    isa_ok( $tidy, 'HTML::Tidy5' );

    ACCESSOR: {
        my $mech = Test::WWW::Mechanize->new();
        ok( !$mech->autotidy(), 'no autotidy to new yields autotidy off' );

        $mech = Test::WWW::Mechanize->new( autotidy => undef );
        ok( !$mech->autotidy(), 'undef to new yields autotidy off' );

        $mech = Test::WWW::Mechanize->new( autotidy => 0 );
        ok( !$mech->autotidy(), '0 to new yields autotidy off' );

        $mech = Test::WWW::Mechanize->new( autotidy => 1 );
        ok( $mech->autotidy(), '1 to new yields autotidy on' );

        $mech = Test::WWW::Mechanize->new( autotidy => [] );
        ok( $mech->autotidy(), 'non-false, non-object to new yields autotidy on' );

        $mech = Test::WWW::Mechanize->new( autotidy => $tidy );
        ok( $mech->autotidy(), 'HTML::Tidy5 object to new yields autotidy on' );
    }

    MUTATOR: {
        my $mech = Test::WWW::Mechanize->new();

        ok( !$mech->autotidy(0), '0 returns autotidy off' );
        ok( !$mech->autotidy(), '0 autotidy really off' );

        ok( !$mech->autotidy(''), '"" returns autotidy off' );
        ok( !$mech->autotidy(), '"" autotidy really off' );

        ok( !$mech->autotidy(1), '1 returns autotidy off (prior state)' );
        ok( $mech->autotidy(), '1 autotidy really on' );

        ok( $mech->autotidy($tidy), 'HTML::Tidy5 object returns autotidy on (prior state)' );
        ok( $mech->autotidy(), 'HTML::Tidy5 object autotidy really on' );
        my $ret = $mech->autotidy( 0 );
        isa_ok( $ret, 'HTML::Tidy5' );
        ok( !$mech->autotidy(), 'autotidy off after nuking HTML::Tidy5 object' );
    }
};


subtest 'Fluffy page has errors' => sub {
    plan tests => 2;

    my $mech = Test::WWW::Mechanize->new( autotidy => 1 );
    isa_ok( $mech, 'Test::WWW::Mechanize' );

    my $uri = URI::file->new_abs( 't/fluffy.html' )->as_string;

    test_out( "not ok 1 - GET $uri" );
    test_fail( +5 );
    test_err( "# HTML::Tidy5 messages for $uri" );
    test_err( '# (1:1) Warning: missing <!DOCTYPE> declaration' );
    test_err( '# (10:9) Warning: <img> lacks "alt" attribute' );
    test_err( '# 2 messages on the page' );
    $mech->get_ok( $uri );
    test_test( 'Fluffy page should have fluffy errors' );
};


subtest 'Custom tidy ignores fluffy errors' => sub {
    plan tests => 4;

    my $tidy = HTML::Tidy5->new( { show_warnings => 0 } );
    isa_ok( $tidy, 'HTML::Tidy5' );

    my $mech = Test::WWW::Mechanize->new( autotidy => $tidy );
    isa_ok( $mech, 'Test::WWW::Mechanize' );

    my $uri = URI::file->new_abs( 't/fluffy.html' )->as_string;
    $mech->get_ok( $uri, 'Fluffy page should not have errors' );

    # And if we go to another page, the autolint object has been reset.
    $mech->get_ok( $uri, 'Second pass at the fluffy page should not have errors, either' );
};


subtest 'Get good HTML' => sub {
    plan tests => 3;

    my $mech = Test::WWW::Mechanize->new( autotidy => 1 );
    isa_ok( $mech, 'Test::WWW::Mechanize' );

    my $uri = URI::file->new_abs( 't/good.html' )->as_string;
    $mech->get_ok( $uri );

    test_out( "ok 1 - GET $uri" );
    $mech->get_ok( $uri, "GET $uri" );
    test_test( 'Good GET, good HTML' );
};


subtest 'Get bad HTML' => sub {
    plan tests => 3;

    my $mech = Test::WWW::Mechanize->new( autotidy => 1 );
    isa_ok( $mech, 'Test::WWW::Mechanize' );

    my $uri = URI::file->new_abs( 't/bad.html' )->as_string;

    # Test via get_ok
    test_out( "not ok 1 - GET $uri" );
    test_fail( +7 );
    test_err( "# HTML::Tidy5 messages for $uri" );
    test_err( '# (1:1) Warning: missing <!DOCTYPE> declaration' );
    test_err( '# (8:33) Warning: discarding unexpected </b>' );
    test_err( '# (8:9) Warning: missing </a>' );
    #test_err( '# (7:9) Warning: <a> proprietary attribute "hrex"' );
    test_err( '# 3 messages on the page' );
    $mech->get_ok( $uri, "GET $uri" );
    test_test( 'get_ok complains about bad HTML' );

    # Test via follow_link_ok
    test_out( 'not ok 1 - Following link back to bad.html' );
    test_fail( +7 );
    test_err( "# HTML::Tidy5 messages for $uri" );
    test_err( '# (1:1) Warning: missing <!DOCTYPE> declaration' );
    test_err( '# (8:33) Warning: discarding unexpected </b>' );
    test_err( '# (8:9) Warning: missing </a>' );
    #test_err( '# (7:9) Warning: <a> proprietary attribute "hrex"' );
    test_err( '# 3 messages on the page' );
    $mech->follow_link_ok( { text => 'Back to bad' }, 'Following link back to bad.html' );
    test_test( 'follow_link_ok complains about bad HTML' );
};

done_testing();
exit 0;