1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
use strict;
use warnings;
use Test::More import => ['!pass'];
use Carp 'croak';
use Ref::Util qw<is_regexpref>;
use Dancer2;
use Dancer2::Core::App;
use Dancer2::Core::Route;
use Dancer2::Core::Dispatcher;
use Dancer2::Core::Hook;
use Dancer2::Core::Response;
set logger => 'Null';
# init our test fixture
my $buffer = {};
my $app = Dancer2::Core::App->new( name => 'main' );
$app->setting( logger => engine('logger') );
$app->setting( show_errors => 1 );
# a simple / route
my $simple_route = $app->add_route(
method => 'get',
regexp => '/',
code => sub {"home"},
);
# an error route
my $error_route = $app->add_route(
method => 'get',
regexp => '/error',
code => sub { Fail->fail },
);
# A chain of two route for /user/$foo
my $user_name_route = $app->add_route(
method => 'get',
regexp => '/user/:name',
code => sub {
my $app = shift;
$buffer->{user} = $app->request->params->{'name'};
$app->response->has_passed(1);
},
);
my $user_splat_route = $app->add_route(
method => 'get',
regexp => '/user/*?',
code => sub {
my $app = shift;
"Hello " . $app->request->params->{'name'};
},
);
# a route with a 204 response
my $removed_content_route = $app->add_route(
method => 'get',
regexp => '/twoohfour',
code => sub {
my $app = shift;
$app->response->status(204);
"This content should be removed";
},
);
my $route_from_request;
# simulates a redirect with halt
$app->add_hook(
Dancer2::Core::Hook->new(
name => 'before',
code => sub {
my $app = shift;
$route_from_request = $app->request->route;
if ( $app->request->path_info eq '/haltme' ) {
$app->response->header( Location => 'http://perldancer.org' );
$app->response->status(302);
$app->response->is_halted(1);
}
},
)
);
my $was_in_second_filter = 0;
$app->add_hook(
Dancer2::Core::Hook->new(
name => 'before',
code => sub {
my $app = shift;
if ( $app->request->path_info eq '/haltme' ) {
$was_in_second_filter =
1; # should not happen because first filter halted the flow
}
},
)
);
my $halt_route = $app->add_route(
method => 'get',
regexp => '/haltme',
code => sub {"should not get there"},
);
# the tests
my @tests = (
{ env => {
REQUEST_METHOD => 'GET',
PATH_INFO => '/',
},
expected => [
200,
[ 'Content-Length' => 4,
'Content-Type' => 'text/html; charset=UTF-8',
'Server' => "Perl Dancer2 " . Dancer2->VERSION,
],
["home"],
$simple_route,
]
},
{ env => {
REQUEST_METHOD => 'GET',
PATH_INFO => '/user/Johnny',
},
expected => [
200,
[ 'Content-Length' => 12,
'Content-Type' => 'text/html; charset=UTF-8',
'Server' => "Perl Dancer2 " . Dancer2->VERSION,
],
["Hello Johnny"],
$user_splat_route, # the second, after the first pass()es
]
},
{ env => {
REQUEST_METHOD => 'GET',
PATH_INFO => '/twoohfour',
},
expected => [
204,
[ 'Content-Type' => 'text/html; charset=UTF-8',
'Server' => "Perl Dancer2 " . Dancer2->VERSION,
],
[],
$removed_content_route,
]
},
{ env => {
REQUEST_METHOD => 'GET',
PATH_INFO => '/haltme',
},
expected => [
302,
[ 'Location' => 'http://perldancer.org',
'Content-Length' => '305',
'Content-Type' => 'text/html; charset=utf-8',
'Server' => "Perl Dancer2 " . Dancer2->VERSION,
],
qr/This item has moved/,
$halt_route,
]
},
# NOT SUPPORTED YET
# { env => {
# REQUEST_METHOD => 'GET',
# PATH_INFO => '/admin',
# },
# expected => [200, [], ["home"]]
# },
);
$app->compile_hooks;
plan tests => 20;
my $dispatcher = Dancer2::Core::Dispatcher->new( apps => [$app] );
my $counter = 0;
foreach my $test (@tests) {
my $env = $test->{env};
my $expected = $test->{expected};
my $path = $env->{'PATH_INFO'};
$route_from_request = undef;
diag sprintf "Dispatch test %d, for %s %s",
$counter,
$test->{env}{REQUEST_METHOD},
$test->{env}{PATH_INFO};
my $resp = $dispatcher->dispatch($env);
is( $resp->[0], $expected->[0], "[$path] Return code ok" );
my %got_headers = @{ $resp->[1] };
my %exp_headers = @{ $expected->[1] };
is_deeply( \%got_headers, \%exp_headers, "[$path] Correct headers" );
if ( is_regexpref( $expected->[2] ) ) {
like $resp->[2][0] => $expected->[2], "[$path] Contents ok. (test $counter)";
}
else {
is_deeply $resp->[2] => $expected->[2], "[$path] Contents ok. (test $counter)";
}
is(
$route_from_request, # squirreled away by before hook,
$expected->[3],
"Expected route is stored in request (test $counter)",
);
$counter++;
}
foreach my $test (
{ env => {
REQUEST_METHOD => 'GET',
PATH_INFO => '/error',
'psgi.uri_scheme' => 'http',
SERVER_NAME => 'localhost',
SERVER_PORT => 5000,
SERVER_PROTOCOL => 'HTTP/1.1',
},
expected => [
500,
[ 'Content-Length', "Content-Type", 'text/html' ],
qr!Internal Server Error.*Can't locate object method "fail" via package "Fail" \(perhaps you forgot to load "Fail"\?\) at t[\\/]dispatcher\.t line \d+\.!s
]
}
)
{
my $env = $test->{env};
my $expected = $test->{expected};
my $psgi_response = $dispatcher->dispatch($env);
my $resp = Dancer2::Core::Response->new(
status => $psgi_response->[0],
headers => $psgi_response->[1],
content => $psgi_response->[2][0],
);
is $resp->status => $expected->[0], "Return code ok.";
ok( $resp->header('Content-Length') >= 140, "Length ok." );
like $resp->content, $expected->[2], "contents ok";
}
is $was_in_second_filter, 0, "didn't enter the second filter, because of halt";
|