Unfuck tests
[catagits/Test-WWW-Mechanize-Catalyst.git] / t / redirect.t
CommitLineData
affa35d5 1#!perl
6bc86362 2use strict;
3use warnings;
4use lib 'lib';
705f22fa 5use Test::More tests => 30;
6bc86362 6use lib 't/lib';
7use Test::WWW::Mechanize::Catalyst 'Catty';
705f22fa 8use HTTP::Request::Common;
9use URI;
10use Test::utf8;
6bc86362 11
12my $root = "http://localhost";
13
14my $m;
15foreach my $where (qw{hi greetings bonjour}) {
16 $m = Test::WWW::Mechanize::Catalyst->new;
17 $m->get_ok( "$root/$where", "got something when we $where" );
18
19 is( $m->base, "http://localhost/hello", "check got to hello 1/4" );
20 is( $m->ct, "text/html", "check got to hello 2/4" );
21 $m->title_is( "Hello",, "check got to hello 3/4" );
22 $m->content_contains( "Hi there",, "check got to hello 4/4" );
23
24 # check that the previous response is still there
25 my $prev = $m->response->previous;
26 ok( $prev, "have a previous" );
27 is( $prev->code, 302, "was a redirect" );
28 like( $prev->header('Location'), '/hello$/', "to the right place" );
29}
30
31# extra checks for bonjour (which is a double redirect)
32my $prev = $m->response->previous->previous;
33ok( $prev, "have a previous previous" );
34is( $prev->code, 302, "was a redirect" );
35like( $prev->header('Location'), '/hi$/', "to the right place" );
affa35d5 36
37$m->get("$root/redirect_with_500");
38is ($m->status, 500, "Redirect not followed on 500");
74649ca9 39
705f22fa 40my $req = GET "$root/redirect_to_utf8_upgraded_string";
41my $loc = $m->_do_catalyst_request($req)->header('Location');
42my $uri = URI->new_abs( $loc, $req->uri )->as_string;
43is_sane_utf8($uri);
44isnt_flagged_utf8($uri);