Skip to content

petdance/test-www-mechanize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Test-WWW-Mechanize


Test::WWW::Mechanize is a subclass of the Perl module WWW::Mechanize that incorporates features for web application testing. For example:

use Test::WWW::Mechanize;

my $mech = Test::WWW::Mechanize->new;
$mech->get_ok( $page );
$mech->base_is( 'http://petdance.com/', 'Proper <BASE HREF>' );
$mech->title_is( 'Invoice Status', "Make sure we're on the invoice page" );
$mech->text_contains( 'Andy Lester', 'My name somewhere' );
$mech->content_like( qr/(cpan|perl)\.org/, 'Link to perl.org or CPAN' );
$mech->header_is( 'Cache-Control', 'private', 'Caching is turned off' );
$mech->lacks_header_ok( 'X-Foo', 'Does not have the X-Foo header' );

This is equivalent to:

use WWW::Mechanize;

my $mech = WWW::Mechanize->new;
$mech->get( $page );
ok( $mech->success );
is( $mech->base, 'http://petdance.com', 'Proper <BASE HREF>' );
is( $mech->title, 'Invoice Status', "Make sure we're on the invoice page" );
ok( index( $mech->content( format => 'text' ), 'Andy Lester' ) >= 0, 'My name somewhere' );
like( $mech->content, qr/(cpan|perl)\.org/, 'Link to perl.org or CPAN' );
is( $mech->response->header( 'Cache-Control' ), 'private', 'Caching is turned off' );
ok( !defined $mech->response->header( 'X-Foo' ), 'Does not have the X-Foo header' );

but has nicer diagnostics if they fail.

Test::WWW::Mechanize also has functionality to automatically validate every page it goes to.

use Test::WWW::Mechanize;

my $mech = Test::WWW::Mechanize->new( autotidy => 1 );
$mech->get_ok( $url );

which can give errors like this:

not ok 1 - GET $url
#   Failed test '$url'
#   at foo.pl line 7.
# HTML::Tidy5 messages for $url
# (11:1) Warning: missing </b> before </body>
# (7:18) Warning: <a> escaping malformed URI reference
# (7:18) Warning: <a> illegal characters found in URI
# (11:1) Warning: trimming empty <b>

The autotidy feature requires the HTML::Tidy5 module. The similar, but less robust, autolint feature requires the HTML::Lint module.

INSTALLATION

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install

COPYRIGHT AND LICENSE

Copyright (C) 2004-2018 Andy Lester

This library is free software; you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.