Add the original source packages to maemo, source lenny
[dh-make-perl] / dev / i386 / libwww-mechanize-perl / libwww-mechanize-perl-1.34 / t / local / submit.t
diff --git a/dev/i386/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/local/submit.t b/dev/i386/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/local/submit.t
new file mode 100644 (file)
index 0000000..f341661
--- /dev/null
@@ -0,0 +1,44 @@
+#!perl -w
+
+use warnings;
+use strict;
+use lib 't/local';
+use Test::More tests => 13;
+use LocalServer;
+
+BEGIN {
+    delete @ENV{ grep { lc eq 'http_proxy' } keys %ENV };
+    delete @ENV{ qw( IFS CDPATH ENV BASH_ENV ) };
+    use_ok( 'WWW::Mechanize' );
+}
+
+my $server = LocalServer->spawn;
+isa_ok( $server, 'LocalServer' );
+
+my $mech = WWW::Mechanize->new();
+isa_ok( $mech, 'WWW::Mechanize', 'Created the object' ) or die;
+
+my $response = $mech->get( $server->url );
+isa_ok( $response, 'HTTP::Response', 'Got back a response' ) or die;
+is( $mech->uri, $server->url, "Got the correct page" );
+ok( $response->is_success, 'Got local page' ) or die 'cannot even fetch local page';
+ok( $mech->is_html, 'is HTML' );
+
+is( $mech->value('upload'), '', 'Hopefully no upload happens');
+
+$mech->field(query => 'foo'); # Filled the 'q' field
+
+$response = $mech->submit;
+isa_ok( $response, 'HTTP::Response', 'Got back a response' );
+ok( $response->is_success, 'Can click "submit" ("submit" button)');
+
+like($mech->content, qr/\bfoo\b/i, 'Found "Foo"');
+
+is( $mech->value('upload'), '', 'No upload happens' );
+
+SKIP: {
+    eval 'use Test::Memory::Cycle';
+    skip 'Test::Memory::Cycle not installed', 1 if $@;
+
+    memory_cycle_ok( $mech, 'Mech: no cycles' );
+}