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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
|
use Mojo::Base -strict;
BEGIN { $ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll' }
use Test::Mojo;
use Test::More;
use Mojo::ByteStream 'b';
use Mojo::UserAgent::CookieJar;
use Mojolicious::Lite;
app->secrets(['test1']);
get '/multi' => sub {
my $c = shift;
$c->cookie(unsigned1 => 'one');
$c->cookie(unsigned1 => 'two', {path => '/multi'});
$c->cookie(unsigned2 => 'three');
$c->signed_cookie(signed1 => 'four');
$c->signed_cookie(signed1 => 'five', {path => '/multi'});
$c->signed_cookie(signed2 => 'six');
};
get '/expiration' => sub {
my $c = shift;
if ($c->param('redirect')) {
$c->session(expiration => 0);
return $c->redirect_to('expiration');
}
$c->render(text => $c->session('expiration'));
};
under('/missing' => sub {1})->route->to('does_not_exist#not_at_all');
under '/suspended' => sub {
my $c = shift;
Mojo::IOLoop->next_tick(sub {
return $c->render(text => 'stopped!') unless $c->param('ok');
$c->stash(suspended => 'suspended!');
$c->continue;
});
return 0;
};
get '/' => {inline => '<%= $suspended %>\\'};
under sub {
my $c = shift;
$c->render(text => 'Unauthorized!', status => 401) and return undef
unless $c->req->headers->header('X-Bender');
$c->res->headers->add('X-Under' => 23);
$c->res->headers->add('X-Under' => 24);
1;
};
get '/with_under' => sub {
my $c = shift;
$c->render(text => 'Unders are cool!');
};
get '/with_under_too' => sub {
my $c = shift;
$c->render(text => 'Unders are cool too!');
};
under sub {
my $c = shift;
# Authenticated
my $name = $c->param('name') || '';
return 1 if $name eq 'Bender';
# Not authenticated
$c->render('param_auth_denied');
return undef;
};
get '/param_auth';
get '/param_auth/too' =>
sub { shift->render(text => 'You could be Bender too!') };
under sub {
my $c = shift;
$c->stash(_name => 'stash');
$c->cookie(foo => 'cookie', {expires => time + 60});
$c->signed_cookie(bar => 'signed_cookie', {expires => time + 120});
$c->cookie(bad => 'bad_cookie--12345678');
1;
};
get '/bridge2stash' =>
sub { shift->render(template => 'bridge2stash', handler => 'ep') };
# Make sure after_dispatch can make session changes
hook after_dispatch => sub {
my $c = shift;
return unless $c->req->url->path->contains('/late/session');
$c->session(late => 'works!');
};
get '/late/session' => sub {
my $c = shift;
my $late = $c->session('late') || 'not yet!';
$c->render(text => $late);
};
# Counter
my $under;
under sub {
shift->res->headers->header('X-Under' => ++$under);
!!1;
};
get '/with/under/count';
# Prefix
under '/prefix';
get sub { shift->render(text => 'prefixed GET works!') };
post sub { shift->render(text => 'prefixed POST works!') };
get '/works' => sub { shift->render(text => 'prefix works!') };
under '/prefix2' => {msg => 'prefixed'};
get '/foo' => {inline => '<%= $msg %>!'};
get '/bar' => {inline => 'also <%= $msg %>!'};
# Reset
under '/' => {foo => 'one'};
get '/reset' => {text => 'reset works!'};
# Group
group {
under '/group' => {bar => 'two'};
get {inline => '<%= $foo %><%= $bar %>!'};
# Nested group
group {
under '/nested' => {baz => 'three'};
get {inline => '<%= $baz %><%= $bar %><%= $foo %>!'};
get '/whatever' => {inline => '<%= $foo %><%= $bar %><%= $baz %>!'};
};
};
# Authentication group
group {
# Check "ok" parameter
under sub {
my $c = shift;
return 1 if $c->req->param('ok');
$c->render(text => "You're not ok.");
return !!0;
};
get '/authgroup' => {text => "You're ok."};
};
get '/noauthgroup' => {inline => 'Whatever <%= $foo %>.'};
# Disable format detection
under [format => 0];
get '/no_format' => {text => 'No format detection.'};
get '/some_formats' => [format => [qw(txt json)]] =>
{text => 'Some format detection.'};
get '/no_real_format.xml' => {text => 'No real format.'};
get '/one_format' => [format => 'xml'] => {text => 'One format.'};
my $t = Test::Mojo->new;
# Preserve stash
my $stash;
$t->app->hook(after_dispatch => sub { $stash = shift->stash });
# Zero expiration persists
$t->ua->max_redirects(1);
$t->get_ok('/expiration?redirect=1')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is('0');
ok !$t->tx->res->cookie('mojolicious')->expires, 'no expiration';
$t->reset_session;
# Multiple cookies with same name
$t->get_ok('/multi')->status_is(200)->header_is(Server => 'Mojolicious (Perl)')
->content_is("\n\n\n\n\n\n\n\n");
# Multiple cookies with same name (again)
$t->get_ok('/multi')->status_is(200)->header_is(Server => 'Mojolicious (Perl)')
->content_is("two\nthree\none\ntwo\nfive\nsix\nfour\nfive\n");
# Missing action behind bridge
$t->get_ok('/missing')->status_is(404)->content_is("Oops!\n");
# Suspended bridge
$t->app->log->level('debug')->unsubscribe('message');
my $log = '';
my $cb = $t->app->log->on(message => sub { $log .= pop });
$t->get_ok('/suspended?ok=1')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is('suspended!');
like $log, qr!GET "/suspended"!, 'right message';
like $log, qr/Routing to a callback/, 'right message';
like $log, qr/Nothing has been rendered, expecting delayed response/,
'right message';
like $log, qr/Rendering inline template "f75d6f5993c626fa8049366389f77928"/,
'right message';
$t->app->log->unsubscribe(message => $cb);
# Suspended bridge (stopped)
$t->get_ok('/suspended?ok=0')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is('stopped!');
# Authenticated with header
$t->get_ok('/with_under' => {'X-Bender' => 'Rodriguez'})->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->header_is('X-Under' => '23, 24')
->header_like('X-Under' => qr/23, 24/)->content_is('Unders are cool!');
# Authenticated with header too
$t->get_ok('/with_under_too' => {'X-Bender' => 'Rodriguez'})->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->header_is('X-Under' => '23, 24')
->header_like('X-Under' => qr/23, 24/)->content_is('Unders are cool too!');
# Not authenticated with header
$t->get_ok('/with_under_too')->status_is(401)
->header_is(Server => 'Mojolicious (Perl)')->content_like(qr/Unauthorized/);
# Not authenticated with parameter
$t->get_ok('/param_auth')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is("Not Bender!\n");
is $stash->{_name}, undef, 'no "_name" value';
# Authenticated with parameter
$t->get_ok('/param_auth?name=Bender')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is("Bender!\n");
# Not authenticated with parameter
$t->get_ok('/param_auth/too')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is("Not Bender!\n");
# Authenticated with parameter too
$t->get_ok('/param_auth/too?name=Bender')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is('You could be Bender too!');
# No cookies, session or flash
$t->get_ok('/bridge2stash' => {'X-Flash' => 1})->status_is(200)
->content_is("stash too!!!!!!!!\n");
ok $t->tx->res->cookie('mojolicious')->expires, 'has expiration';
is $stash->{_name}, 'stash', 'right "_name" value';
# Cookies, session and flash
$log = '';
$cb = $t->app->log->on(message => sub { $log .= pop });
$t->get_ok('/bridge2stash')->status_is(200)
->content_is(
"stash too!cookie!!signed_cookie!!bad_cookie--12345678!session!flash!\n");
like $log, qr/Cookie "foo" is not signed/, 'right message';
like $log, qr/Cookie "bad" has a bad signature/, 'right message';
ok $t->tx->res->cookie('mojolicious')->httponly,
'session cookie has HttpOnly flag';
is $t->tx->res->cookie('mojolicious')->samesite, 'Lax', 'right SameSite value';
$t->app->log->unsubscribe(message => $cb);
$t->app->sessions->samesite('Strict');
$t->get_ok('/bridge2stash')->status_is(200);
is $t->tx->res->cookie('mojolicious')->samesite, 'Strict',
'right SameSite value';
$t->app->sessions->samesite(undef);
$t->get_ok('/bridge2stash')->status_is(200);
is $t->tx->res->cookie('mojolicious')->samesite, undef, 'no SameSite value';
# Broken session cookie
$t->reset_session;
my $session = b("☃☃☃☃☃")->encode->b64_encode('');
my $hmac = $session->clone->hmac_sha1_sum($t->app->secrets->[0]);
$t->get_ok('/bridge2stash' => {Cookie => "mojolicious=$session--$hmac"})
->status_is(200)->content_is("stash too!!!!!!!!\n");
# Not collecting cookies
$t->reset_session->ua->cookie_jar->ignore(sub {1});
$t->get_ok('/bridge2stash' => {'X-Flash' => 1})->status_is(200)
->content_is("stash too!!!!!!!!\n");
# Still not collecting cookies
$t->get_ok('/bridge2stash' => {'X-Flash' => 1})->status_is(200)
->content_is("stash too!!!!!!!!\n");
$t->ua->cookie_jar->ignore(sub {0});
# Fresh start without cookies, session or flash
$t->get_ok('/bridge2stash' => {'X-Flash' => 1})->status_is(200)
->content_is("stash too!!!!!!!!\n");
# Random static requests
$t->get_ok('/mojo/logo-white.png')->status_is(200);
$t->get_ok('/mojo/logo-black.png')->status_is(200);
$t->get_ok('/mojo/logo-white.png')->status_is(200);
$t->get_ok('/mojo/logo-black.png')->status_is(200);
# With cookies, session and flash again
$t->get_ok('/bridge2stash')->status_is(200)
->content_is(
"stash too!cookie!!signed_cookie!!bad_cookie--12345678!session!flash!\n");
# With cookies and session but no flash (rotating secrets)
$t->app->secrets(['test2', 'test1']);
$t->get_ok('/bridge2stash' => {'X-Flash2' => 1})->status_is(200)
->content_is(
"stash too!cookie!!signed_cookie!!bad_cookie--12345678!session!!\n");
ok $t->tx->res->cookie('mojolicious')->expires < time, 'session cookie expires';
# With cookies and session cleared (rotating secrets)
$t->app->secrets(['test3', 'test2']);
$t->get_ok('/bridge2stash')->status_is(200)
->content_is("stash too!cookie!!signed_cookie!!bad_cookie--12345678!!!\n");
# Late session does not affect rendering
$t->get_ok('/late/session')->status_is(200)->content_is('not yet!');
# Previous late session does affect rendering
$t->get_ok('/late/session')->status_is(200)->content_is('works!');
# Previous late session does affect rendering again
$t->get_ok('/late/session')->status_is(200)->content_is('works!');
# Counter
$t->get_ok('/with/under/count' => {'X-Bender' => 'Rodriguez'})->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->header_is('X-Under' => 1)
->content_is("counter\n");
is $stash->{_name}, undef, 'no "_name" value';
# Cookies, session and no flash again
$t->get_ok('/bridge2stash' => {'X-Flash' => 1})->status_is(200)
->content_is(
"stash too!cookie!!signed_cookie!!bad_cookie--12345678!session!!\n");
# With cookies, session and flash
$t->get_ok('/bridge2stash')->status_is(200)
->content_is(
"stash too!cookie!!signed_cookie!!bad_cookie--12345678!session!flash!\n");
# With cookies and session but no flash
$t->get_ok('/bridge2stash' => {'X-Flash2' => 1})->status_is(200)
->content_is(
"stash too!cookie!!signed_cookie!!bad_cookie--12345678!session!!\n");
# Prefix
$t->get_ok('/prefix')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is('prefixed GET works!');
# POST request with prefix
$t->post_ok('/prefix')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is('prefixed POST works!');
# GET request with prefix
$t->get_ok('/prefix/works')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is('prefix works!');
# Another prefix
$t->get_ok('/prefix2/foo')->status_is(200)->content_is("prefixed!\n");
# Another prefix again
$t->get_ok('/prefix2/bar')->status_is(200)->content_is("also prefixed!\n");
# Reset under statements
$t->get_ok('/reset')->status_is(200)->content_is('reset works!');
# Not reachable with prefix
$t->get_ok('/prefix/reset')->status_is(404)->content_is("Oops!\n");
# Group
$t->get_ok('/group')->status_is(200)->content_is("onetwo!\n");
# Nested group
$t->get_ok('/group/nested')->status_is(200)->content_is("threetwoone!\n");
# GET request to nested group
$t->get_ok('/group/nested/whatever')->status_is(200)
->content_is("onetwothree!\n");
# Another GET request to nested group
$t->get_ok('/group/nested/something')->status_is(404)->content_is("Oops!\n");
# Authenticated by group
$t->get_ok('/authgroup?ok=1')->status_is(200)
->content_type_is('text/html;charset=UTF-8')->content_is("You're ok.");
# Not authenticated by group
$t->get_ok('/authgroup')->status_is(200)
->content_type_is('text/html;charset=UTF-8')->content_is("You're not ok.");
# Authenticated by group (with format)
$t->get_ok('/authgroup.txt?ok=1')->status_is(200)
->content_type_is('text/plain;charset=UTF-8')->content_is("You're ok.");
# Not authenticated by group (with format)
$t->get_ok('/authgroup.txt')->status_is(200)
->content_type_is('text/plain;charset=UTF-8')->content_is("You're not ok.");
# Bypassed group authentication
$t->get_ok('/noauthgroup')->status_is(200)->content_is("Whatever one.\n");
# Disabled format detection
$t->get_ok('/no_format')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->content_is('No format detection.');
# Invalid format
$t->get_ok('/no_format.txt')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
# Invalid format
$t->get_ok('/some_formats')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
# Format "txt" has been detected
$t->get_ok('/some_formats.txt')->status_is(200)
->content_type_is('text/plain;charset=UTF-8')
->content_is('Some format detection.');
# Format "json" has been detected
$t->get_ok('/some_formats.json')->status_is(200)
->content_type_is('application/json;charset=UTF-8')
->content_is('Some format detection.');
# Invalid format
$t->get_ok('/some_formats.xml')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
# Invalid format
$t->get_ok('/no_real_format')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
# No format detected
$t->get_ok('/no_real_format.xml')->status_is(200)
->content_type_is('text/html;charset=UTF-8')->content_is('No real format.');
# Invalid format
$t->get_ok('/no_real_format.txt')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
# Invalid format
$t->get_ok('/one_format')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
# Format "xml" detected
$t->get_ok('/one_format.xml')->status_is(200)
->content_type_is('application/xml')->content_is('One format.');
# Invalid format
$t->get_ok('/one_format.txt')->status_is(404)
->content_type_is('text/html;charset=UTF-8')->content_is("Oops!\n");
done_testing();
__DATA__
@@ not_found.html.epl
Oops!
@@ multi.html.ep
% my $one = $c->cookie('unsigned1');
% my $three = $c->cookie('unsigned2');
%= $one // ''
%= $three // '';
% my $unsigned1 = $c->every_cookie('unsigned1');
%= $unsigned1->[0] // ''
%= $unsigned1->[1] // ''
% my $four = $c->signed_cookie('signed1');
% my $six = $c->signed_cookie('signed2');
%= $four // ''
%= $six // '';
% my $signed1 = $c->every_signed_cookie('signed1');
%= $signed1->[0] // ''
%= $signed1->[1] // ''
@@ param_auth.html.epl
Bender!
@@ param_auth_denied.html.epl
Not Bender!
@@ bridge2stash.html.ep
% my $cookie = $c->req->cookie('mojolicious');
<%= stash('_name') %> too!<%= $c->cookie('foo') %>!\
<%= $c->signed_cookie('foo') %>!\
<%= $c->signed_cookie('bar')%>!<%= $c->signed_cookie('bad')%>!\
<%= $c->cookie('bad') %>!<%= session 'foo' %>!\
<%= flash 'foo' %>!
% $c->session(foo => 'session');
% my $headers = $c->req->headers;
% $c->flash(foo => 'flash') if $headers->header('X-Flash');
% $c->session(expires => 1) if $headers->header('X-Flash2');
@@ withundercount.html.ep
counter
|