X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Flive_component_controller_action_streaming.t;h=1bc9cbf198f5c7dd18da90b77357f39a03cb3c57;hb=cb1e348badf54b4ceacca793b0baa6312e2a7e5d;hp=4a42e3fe04538a213c6b3f89547e955f41d0a1fd;hpb=f397b3064091f4b9f03210d5b630cfd757534c50;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/live_component_controller_action_streaming.t b/t/aggregate/live_component_controller_action_streaming.t index 4a42e3f..1bc9cbf 100644 --- a/t/aggregate/live_component_controller_action_streaming.t +++ b/t/aggregate/live_component_controller_action_streaming.t @@ -10,7 +10,7 @@ our $iters; BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; } -use Test::More tests => 20*$iters; +use Test::More; use Catalyst::Test 'TestApp'; if ( $ENV{CAT_BENCHMARK} ) { @@ -29,17 +29,17 @@ sub run_tests { ok( my $response = request('http://localhost/streaming'), 'Request' ); ok( $response->is_success, 'Response Successful 2xx' ); is( $response->content_type, 'text/plain', 'Response Content-Type' ); - + SKIP: { if ( $ENV{CATALYST_SERVER} ) { skip "Using remote server", 1; } - - # XXX: Length should be undef here, but HTTP::Request::AsCGI sets it - is( $response->content_length, 12, 'Response Content-Length' ); + + ok(!defined $response->content_length, 'No Content-Length for streaming responses'); + is(length $response->content, 12, 'Response content' ); } - + is( $response->content,, <<'EOF', 'Content is a stream' ); foo bar @@ -87,3 +87,5 @@ EOF is( $response->content, "\0" x $size, 'Content is read from filehandle' ); } } + +done_testing;