Fix host header on local tests
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Test.pm
index 5ba8e4b..2436b7b 100644 (file)
@@ -73,7 +73,7 @@ sub finalize_headers {
             -secure  => $cookie->{secure} || 0
         );
 
-        $c->lwp->response->header( 'Set-Cookie' => $cookie->as_string );
+        $c->lwp->response->headers->push_header( 'Set-Cookie' => $cookie->as_string );
     }
 }
 
@@ -246,6 +246,9 @@ sub run {
         $request = HTTP::Request->new( 'GET', $request );
     }
 
+    my $host = sprintf( '%s:%d', $request->uri->host, $request->uri->port );
+    $request->header( 'Host' => $host );
+
     my $lwp = Catalyst::Engine::Test::LWP->new(
         address  => '127.0.0.1',
         hostname => 'localhost',