7cd92d3d958d21faef65e1077b64cc5b493b5195
[catagits/Test-WWW-Mechanize-Catalyst.git] / t / multi_content_type.t
1 #!perl
2 use strict;
3 use warnings;
4 use lib qw(lib t/lib);
5
6 my $PORT;
7
8 BEGIN {
9     $PORT = $ENV{TWMC_TEST_PORT} || 7357;
10 }
11
12 use Test::More tests => 9;
13 use Test::Exception;
14
15 BEGIN {
16     diag(
17         "\n###################################################################\n",
18         "Starting an external Catalyst HTTP server on port $PORT\n",
19         "To change the port, please set the TWMC_TEST_PORT env variable.\n",
20         "(The server will be automatically shut-down right after the tests).\n",
21         "###################################################################\n"
22     );
23 }
24
25 # Let's catch interrupts to force the END block execution.
26 $SIG{INT} = sub { warn "INT:$$"; exit };
27
28 use_ok 'ExternalCatty';
29 my $pid;
30 ($pid, $PORT) = ExternalCatty->background($PORT);
31 $ENV{CATALYST_SERVER} ||= "http://localhost:$PORT";
32
33 use Test::WWW::Mechanize::Catalyst;
34 my $m = Test::WWW::Mechanize::Catalyst->new;
35
36 my $skip = 0;
37 TRY_CONNECT: {
38   eval { $m->get('/') };
39
40   if ($@ || $m->content =~ /Can't connect to \w+:$PORT/) {
41     $skip = $@ || $m->content;
42     diag $m;
43   }
44 }
45
46 SKIP: {
47   skip $skip, 9 if $skip;
48   lives_ok { $m->get_ok( '/', 'Get a multi Content-Type response' ) }
49   'Survive to a multi Content-Type sting';
50
51   is( $m->ct, 'text/html', 'Multi Content-Type Content-Type' );
52   $m->title_is( 'Root', 'Multi Content-Type title' );
53   $m->content_contains( "Hello, test \x{263A}!", 'Multi Content-Type body' );
54
55   # Test a redirect with a remote server now too.
56   $m->get_ok( '/hello' );
57   is($m->uri, "$ENV{CATALYST_SERVER}/");
58
59   $m->get_ok( '/host' );
60   $m->content_contains('Host: localhost:$PORT') or diag $m->content;
61
62 }
63
64 END {
65     if ( $pid && $pid != 0 ) {
66         kill 9, $pid;
67     }
68 }
69
70 1;
71