Don't run the moose controller test if Moose isn't available
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_response_large.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use FindBin;
7 use lib "$FindBin::Bin/../lib";
8
9 use Test::More tests => 6;
10 use Catalyst::Test 'TestApp';
11
12 # phaylon noticed that refactored was truncating output on large images.
13 # This test tests 100K and 1M output content.
14
15 my $expected = {
16     one => 'x' x (100 * 1024),
17     two => 'y' x (1024 * 1024),
18 };
19
20 for my $action ( keys %{$expected} ) {
21     ok( my $response = request('http://localhost/engine/response/large/' . $action ),
22         'Request' );
23     ok( $response->is_success, 'Response Successful 2xx' );
24     
25     is( length( $response->content ), length( $expected->{$action} ), 'Length OK' );
26 }
27