Added some stress testing
[catagits/Catalyst-Runtime.git] / t / live / component / controller / action / begin.t
index f94d13b..144d929 100644 (file)
@@ -6,29 +6,32 @@ use warnings;
 use FindBin;
 use lib "$FindBin::Bin/../../../lib";
 
-use Test::More tests => 7;
+use Test::More tests => 70;
 use Catalyst::Test 'TestApp';
 
-{
-    my @expected = qw[
-      TestApp::Controller::Action::Begin->begin
-      TestApp::Controller::Action::Begin->default
-      TestApp::View::Dump::Request->process
-    ];
+for ( 1 .. 10 ) {
+    {
+        my @expected = qw[
+          TestApp::Controller::Action::Begin->begin
+          TestApp::Controller::Action::Begin->default
+          TestApp::View::Dump::Request->process
+        ];
 
-    my $expected = join( ", ", @expected );
+        my $expected = join( ", ", @expected );
 
-    ok( my $response = request('http://localhost/action/begin'), 'Request' );
-    ok( $response->is_success, 'Response Successful 2xx' );
-    is( $response->content_type, 'text/plain', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'default', 'Test Action' );
-    is(
-        $response->header('X-Test-Class'),
-        'TestApp::Controller::Action::Begin',
-        'Test Class'
-    );
-    is( $response->header('X-Catalyst-Executed'),
-        $expected, 'Executed actions' );
-    like( $response->content, qr/'Catalyst::Request'/,
-        'Content is a serialized Catalyst::Request' );
+        ok( my $response = request('http://localhost/action/begin'),
+            'Request' );
+        ok( $response->is_success, 'Response Successful 2xx' );
+        is( $response->content_type, 'text/plain', 'Response Content-Type' );
+        is( $response->header('X-Catalyst-Action'), 'default', 'Test Action' );
+        is(
+            $response->header('X-Test-Class'),
+            'TestApp::Controller::Action::Begin',
+            'Test Class'
+        );
+        is( $response->header('X-Catalyst-Executed'),
+            $expected, 'Executed actions' );
+        like( $response->content, qr/'Catalyst::Request'/,
+            'Content is a serialized Catalyst::Request' );
+    }
 }