Moved some PAR stuff
[catagits/Catalyst-Runtime.git] / t / live / component / controller / action / streaming.t
CommitLineData
fbcc39ad 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
7use lib "$FindBin::Bin/../../../lib";
8
232fd394 9our $iters;
10
11BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 2; }
12
13use Test::More tests => 8*$iters;
fbcc39ad 14use Catalyst::Test 'TestApp';
15
232fd394 16if ( $ENV{CAT_BENCHMARK} ) {
17 require Benchmark;
5a6c7ff6 18 Benchmark::timethis( $iters, \&run_tests );
232fd394 19}
20else {
21 for ( 1 .. $iters ) {
22 run_tests();
23 }
24}
d8c66af5 25
232fd394 26sub run_tests {
d8c66af5 27 # test direct streaming
28 {
29 ok( my $response = request('http://localhost/streaming'), 'Request' );
30 ok( $response->is_success, 'Response Successful 2xx' );
31 is( $response->content_type, 'text/plain', 'Response Content-Type' );
32 is( $response->content,, <<'EOF', 'Content is a stream' );
fbcc39ad 33foo
34bar
35baz
36EOF
1775342a 37 }
d8c66af5 38
39 # test streaming by passing a handle to $c->res->body
40 SKIP:
41 {
42 if ( $ENV{CATALYST_SERVER} ) {
43 skip "Using remote server", 4;
44 }
45
46 my $file = "$FindBin::Bin/../../../../01use.t";
47 my $fh = IO::File->new( $file, 'r' );
48 my $buffer;
49 if ( defined $fh ) {
50 $fh->read( $buffer, 1024 );
51 $fh->close;
52 }
53
54 ok( my $response = request('http://localhost/action/streaming/body'),
55 'Request' );
56 ok( $response->is_success, 'Response Successful 2xx' );
57 is( $response->content_type, 'text/plain', 'Response Content-Type' );
58 is( $response->content, $buffer, 'Content is read from filehandle' );
3dc4d7e9 59 }
3dc4d7e9 60}