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-iis6.t;h=d2f98b0b498b414702adaefddb53f440199f09c2;hp=917a99414500d995e340ea692b6819610f7970c8;hb=35b3434762d426e0cd5e04eb735291f8ca7ea08e;hpb=ef41ea15458d2d2beddee792deea598249df2852 diff --git a/t/aggregate/unit_core_engine_fixenv-iis6.t b/t/aggregate/unit_core_engine_fixenv-iis6.t index 917a994..d2f98b0 100644 --- a/t/aggregate/unit_core_engine_fixenv-iis6.t +++ b/t/aggregate/unit_core_engine_fixenv-iis6.t @@ -1,21 +1,9 @@ -#!perl - use strict; use warnings; use Test::More; -ok 0, 'Known broken currently'; -done_testing; - -__END__ - -eval "use FCGI"; -plan skip_all => 'FCGI required' if $@; - -plan tests => 2; - -require Catalyst::Engine::FastCGI; +use Catalyst; my %env = ( 'SCRIPT_NAME' => '/koo/blurb', @@ -60,8 +48,23 @@ my %env = ( 'HTTP_HOST' => '127.0.0.1:83' ); -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 }; +} -is($env{PATH_INFO}, '//blurb', 'check PATH_INFO'); -is($env{SCRIPT_NAME}, '/koo', 'check SCRIPT_NAME'); +my %fixed_env = fix_env(%env); +is($fixed_env{PATH_INFO}, '//blurb', 'check PATH_INFO'); +is($fixed_env{SCRIPT_NAME}, '/koo', 'check SCRIPT_NAME'); + +done_testing;