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
|
use strict;
use warnings;
use Test::More import => ['!pass'];
use Carp 'croak';
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
$app->add_route(
method => 'get',
regexp => '/',
code => sub {"home"},
);
# an error route
$app->add_route(
method => 'get',
regexp => '/error',
code => sub { Fail->fail },
);
# A chain of two route for /user/$foo
$app->add_route(
method => 'get',
regexp => '/user/:name',
code => sub {
my $app = shift;
$buffer->{user} = $app->request->params->{'name'};
$app->response->has_passed(1);
},
);
$app->add_route(
method => 'get',
regexp => '/user/*?',
code => sub {
my $app = shift;
"Hello " . $app->request->params->{'name'};
},
);
# 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"]
]
},
{ 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"]
]
},
{ env => {
REQUEST_METHOD => 'GET',
PATH_INFO => '/haltme',
},
expected => [
302,
[ 'Location' => 'http://perldancer.org',
'Content-Length' => '0',
'Content-Type' => 'text/html',
'Server' => "Perl Dancer2 $Dancer2::VERSION",
],
['']
]
},
# NOT SUPPORTED YET
# { env => {
# REQUEST_METHOD => 'GET',
# PATH_INFO => '/admin',
# },
# expected => [200, [], ["home"]]
# },
);
# simulates a redirect with halt
$app->add_hook(
Dancer2::Core::Hook->new(
name => 'before',
code => sub {
my $app = shift;
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
}
},
)
);
$app->add_route(
method => 'get',
regexp => '/haltme',
code => sub {"should not get there"},
);
$app->compile_hooks;
plan tests => 13;
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'};
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 ( ref( $expected->[2] ) eq "Regexp" ) {
like $resp->[2][0] => $expected->[2], "[$path] Contents ok. (test $counter)";
}
else {
is_deeply $resp->[2] => $expected->[2], "[$path] Contents ok. (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+.*$}ms
]
}
)
{
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, "didnt enter the second filter, because of halt";
|