X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_component_controller_action_go.t;h=b1088c9b4d213575c49ec5f7c6ba14ba1485d285;hb=92f9d3ad4cba9d517c9819c136b4115e917dc46b;hp=544166d4795b957d52a10c0ca065b1a2849f281b;hpb=2034b8c345e4ff560ca0b568f343a3ec5aa6417f;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live_component_controller_action_go.t b/t/live_component_controller_action_go.t index 544166d..b1088c9 100644 --- a/t/live_component_controller_action_go.t +++ b/t/live_component_controller_action_go.t @@ -10,7 +10,8 @@ our $iters; BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; } -use Test::More tests => 50 * $iters; +use Test::More tests => 54 * $iters; +use Catalyst; use Catalyst::Test 'TestApp'; if ( $ENV{CAT_BENCHMARK} ) { @@ -95,7 +96,26 @@ sub run_tests { $expected, 'Executed actions' ); is( $response->content, $Catalyst::GO, "Go died as expected" ); } - + { + ok( + my $response = request('http://localhost/action/go/model'), + 'Request with args' + ); + is( $response->content, + q[FATAL ERROR: Couldn't go("Model::Foo"): Action cannot _DISPATCH. Did you try to go() a non-controller action?], + q[go('Model::...') test] + ); + } + { + ok( + my $response = request('http://localhost/action/go/view'), + 'Request with args' + ); + is( $response->content, + q[FATAL ERROR: Couldn't go("View::Dump"): Action cannot _DISPATCH. Did you try to go() a non-controller action?], + q[go('View::...') test] + ); + } { ok( my $response = @@ -103,7 +123,7 @@ sub run_tests { 'Request with args' ); ok( $response->is_success, 'Response Successful 2xx' ); - is( $response->content, 'old' ); + is( $response->content, 'old', 'go() with args (old)' ); } { @@ -113,7 +133,7 @@ sub run_tests { 'Request with args and method' ); ok( $response->is_success, 'Response Successful 2xx' ); - is( $response->content, 'new' ); + is( $response->content, 'new', 'go() with args (new)' ); } # test go with embedded args @@ -124,7 +144,7 @@ sub run_tests { 'Request' ); ok( $response->is_success, 'Response Successful 2xx' ); - is( $response->content, 'ok' ); + is( $response->content, 'ok', 'go() with args_embed_relative' ); } { @@ -134,7 +154,7 @@ sub run_tests { 'Request' ); ok( $response->is_success, 'Response Successful 2xx' ); - is( $response->content, 'ok' ); + is( $response->content, 'ok', 'go() with args_embed_absolute' ); } { my @expected = qw[ @@ -221,7 +241,10 @@ sub run_tests { 'Request' ); ok( !$response->is_success, 'Response Fails' ); - is( $response->content, q(FATAL ERROR: Couldn't go to command "TestApp": Invalid action or component.), 'Error message' ); + is( $response->content, + q(FATAL ERROR: Couldn't go("TestApp"): Action has no namespace: cannot go() to a plain method or component, must be a :Action or some sort.), + 'Error message' + ); } {