X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_engine_fixenv-lighttpd.t;h=51456a56a90192c7090ed5e9e6021648ef2e7218;hp=ea54e88de3eea9fb9339f65a04e389ab4ba1930a;hb=7064f69b1dfb59d1f3bad647b2097d0320acce8a;hpb=ce616b55dfe42513400a5881614da857a7d6d767 diff --git a/t/aggregate/unit_core_engine_fixenv-lighttpd.t b/t/aggregate/unit_core_engine_fixenv-lighttpd.t index ea54e88..51456a5 100644 --- a/t/aggregate/unit_core_engine_fixenv-lighttpd.t +++ b/t/aggregate/unit_core_engine_fixenv-lighttpd.t @@ -1,18 +1,9 @@ -#!perl - use strict; use warnings; use Test::More; -plan skip_all => 'Known broken currently'; - -eval "use FCGI"; -plan skip_all => 'FCGI required' if $@; - -plan tests => 2; - -require Catalyst::Engine::FastCGI; +use Catalyst (); my %env = ( 'SCRIPT_NAME' => '/bar', @@ -41,8 +32,24 @@ my %env = ( 'HTTP_HOST' => 'localhost:8000', ); -Catalyst::Engine::FastCGI->_fix_env(\%env); +sub fix_env { + my (%input_env) = @_; + + my $mangled_env; + my $app = Catalyst->apply_default_middlewares(sub { + my ($env) = @_; + $mangled_env = $env; + return [ 200, ['Content-Type' => 'text/plain'], [''] ]; + }); + + $app->({ %input_env, 'psgi.url_scheme' => 'http' }); + return %{ $mangled_env }; +} + +my %fixed_env = fix_env(%env); -is($env{PATH_INFO}, '/bar', 'check PATH_INFO'); -ok(!exists($env{SCRIPT_NAME}), 'check SCRIPT_NAME'); +is($fixed_env{PATH_INFO}, '/bar', 'check PATH_INFO'); +ok(!exists($fixed_env{SCRIPT_NAME}) || !length($fixed_env{SCRIPT_NAME}), + 'check SCRIPT_NAME'); +done_testing;