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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
|
# TODO: handle line-endings better. Perhaps we should just look for an
# identifying part of each page rather than trying to do an exact match
# of the entire page. The problem is on win32, some responses come back with
# dos-style line endings (not all of them though). Not sure what MacOS does
# and I don't have a Mac to test with. Currently, we just strip CR's out of
# responses to make the tests pass on Unix and Win32.
use strict;
use warnings FATAL => 'all';
use lib 'lib';
use utf8;
use Apache::Test '-withtestmore';
use Apache::TestUtil;
use Apache::TestRequest qw(GET POST GET_BODY);
use Encode qw(encode);
use URI;
Apache::TestRequest::user_agent( reset => 1, requests_redirectable => 0 );
plan tests => 39, need_lwp;
ok 1, 'Test initialized';
# extract the configured hostname + port from Apache::Test
my $apache_test_config = Apache::Test::config();
my $host_port = Apache::TestRequest::hostport($apache_test_config);
# TODO: the test descriptions should be things other than 'test #' here.
# check that /docs/index.html works. If this fails, the test environment did
# not configure properly.
subtest 'get index.html' => sub {
plan tests => 1;
my $url = '/docs/index.html';
my $data = strip_cr(GET_BODY $url);
like($data, qr/Get the protected document/s,
'/docs/index.html seems to work');
};
# test no_cookie failure
subtest 'no cookie' => sub {
plan tests => 1;
my $url = '/docs/protected/get_me.html';
my $r = GET $url;
like($r->content, qr/Failure reason: 'no_cookie'/s,
'no_cookie works');
};
# should succeed with redirect.
subtest 'login redirects' => sub {
plan tests => 2;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->code, 302, 'login produces redirect');
is($r->header('Location'), '/docs/protected/get_me.html',
'redirect header exists, and contains expected url');
};
subtest 'redirect with bad session key' => sub {
plan tests => 3;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Heroo'
]);
is($r->code, 302, 'programmer:Heroo login replies with redirect');
is($r->header('Location'), '/docs/protected/get_me.html',
'programmer:Heroo location header contains expected URL');
is($r->header('Set-Cookie'),
'Sample::AuthCookieHandler_WhatEver=programmer:Heroo; path=/',
'programmer:Heroo cookie header contains expected data');
};
# get protected document with valid cookie. Should succeed.
subtest 'redirect wit valid cookie' => sub {
plan tests => 2;
my $uri = '/docs/protected/get_me.html';
my $r = GET(
$uri,
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero;'
);
is($r->code, '200', 'get protected document');
like($r->content, qr/Congratulations, you got past AuthCookie/s,
'check protected document content');
};
subtest 'directory index' => sub {
plan tests => 2;
my $uri = '/docs/protected/';
my $r = GET(
$uri,
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero;'
);
is($r->code, '200', 'get protected document');
like($r->content, qr/Congratulations, you got index\.html/s,
'check protected index.html document content');
};
# should have a Set-Cookie header that expired at epoch.
subtest 'logout deletes cookie' => sub {
plan tests => 1;
my $url = '/docs/logout.pl';
my $r = GET($url);
my $data = $r->header('Set-Cookie');
my $expected = 'Sample::AuthCookieHandler_WhatEver=; expires=Mon, 21-May-1971 00:00:00 GMT; path=/';
is($data, $expected, 'logout tries to delete the cookie');
};
# check the session key
subtest 'session key data' => sub {
plan tests => 1;
my $data = GET_BODY(
'/docs/echo_cookie.pl',
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero;'
);
is(strip_cr($data), 'programmer:Hero', 'session key contains expected data');
};
# should fail because of 'require user programmer'
subtest 'invalid user' => sub {
plan tests => 1;
my $r = GET(
'/docs/protected/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=some-user:duck;'
);
is($r->code, '403', 'user "some-user" is not authorized');
};
# should get the login form back (bad_cookie).
subtest 'invalid cookie' => sub {
plan tests => 1;
my $data = GET_BODY(
'/docs/protected/get_me.html',
Cookie=>'Sample::AuthCookieHandler_WhatEver=programmer:Heroo'
);
like($data, qr/Failure reason: 'bad_cookie'/, 'invalid cookie');
};
# should get the login form back (bad_credentials)
subtest 'bad credentials' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'fail',
credential_1 => 'Hero'
]);
like($r->content, qr/Failure reason: 'bad_credentials'/,
'invalid credentials');
};
subtest 'AuthAny' => sub {
plan tests => 3;
my $r = POST('/LOGIN', [
destination => '/docs/authany/get_me.html',
credential_0 => 'some-user',
credential_1 => 'mypassword'
]);
is($r->header('Location'), '/docs/authany/get_me.html',
'Location header is correct');
is($r->header('Set-Cookie'),
'Sample::AuthCookieHandler_WhatEver=some-user:mypassword; path=/',
'Set-Cookie header is correct');
is($r->code, 302, 'redirect code is correct');
};
# should fail because all requirements are not met
subtest 'AuthAll' => sub {
plan tests => 3;
my $r = GET(
'/docs/authall/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=some-user:mypassword'
);
is($r->code(), 403, 'unauthorized if requirements are not met');
# should pass, ALL requirements are met
$r = GET(
'/docs/authall/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero'
);
is($r->code, '200', 'get protected document');
like($r->content, qr/Congratulations, you got past AuthCookie/s,
'check protected document content');
};
subtest 'POST to GET conversion' => sub {
plan tests => 1;
my $r = POST('/docs/protected/get_me.html', [
utf8 => 'programmør'
]);
like($r->content, qr#"/docs/protected/get_me\.html\?utf8=programm%c3%b8r"#,
'POST -> GET conversion works');
};
subtest 'QUERY_STRING is preserved' => sub {
plan tests => 1;
my $data = GET_BODY('/docs/protected/get_me.html?foo=bar');
like($data, qr#"/docs/protected/get_me\.html\?foo=bar"#,
'input query string exists in desintation');
};
# should succeed (any requirement is met)
subtest 'AuthAny' => sub {
plan tests => 3;
my $r = GET(
'/docs/authany/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=some-user:mypassword'
);
like($r->content, qr/Congratulations, you got past AuthCookie/,
'AuthAny access allowed');
# any requirement, username=0 works.
$r = GET(
'/docs/authany/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=0:mypassword'
);
like($r->content, qr/Congratulations, you got past AuthCookie/,
'username=0 access allowed');
# no AuthAny requirements met
$r = GET(
'/docs/authany/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=nouser:mypassword'
);
is($r->code, 403, 'AuthAny forbidden');
};
# local authz provider test for 2.4 (works same as authany on older versions)
subtest 'Authz Provider' => sub {
plan tests => 1;
my $r = GET(
'/docs/myuser/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero'
);
like($r->content, qr/Congratulations, you got past AuthCookie/,
'myuser=programmer access allowed');
};
# login with username=0 works
subtest 'login with username=0' => sub {
plan tests => 2;
my $r = POST('/LOGIN', [
destination => '/docs/authany/get_me.html',
credential_0 => '0',
credential_1 => 'mypassword'
]);
is($r->code, 302, 'username=0 login produces redirect');
is($r->header('Location'), '/docs/authany/get_me.html',
'redirect header exists, and contains expected url');
};
subtest 'parameter encoding' => sub {
plan tests => 5;
my $r = POST('/LOGIN', [
destination => '/docs/authany/get_me.html',
credential_0 => '程序员',
credential_1 => 'Hero'
]);
is($r->code, 302, 'UTF-8 username works');
is($r->header('Location'), '/docs/authany/get_me.html',
'redirect header exists, and contains expected url');
like $r->header('Set-Cookie'),
qr#Sample::AuthCookieHandler_WhatEver=%E7%A8%8B%E5%BA%8F%E5%91%98:Hero;#,
'response contains the session key cookie';
$r = GET('/docs/authany/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=%E7%A8%8B%E5%BA%8F%E5%91%98:Hero;'
);
is $r->code, 200;
like($r->content, qr/Congratulations, you got past AuthCookie/s,
'check protected document content');
};
# Should succeed and cookie should have HttpOnly attribute
subtest 'HttpOnly cookie attribute' => sub {
plan tests => 3;
my $r = POST('/LOGIN-HTTPONLY', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Heroo'
]);
is($r->header('Location'), '/docs/protected/get_me.html',
'HttpOnly location header');
is($r->header('Set-Cookie'),
'Sample::AuthCookieHandler_WhatEver=programmer:Heroo; path=/; HttpOnly',
'cookie contains HttpOnly attribute');
is($r->code, 302, 'check redirect response code');
};
# Should succeed and cookie should have SameSite attribute
subtest 'SameSite cookie attribute' => sub {
plan tests => 3;
my $r = POST('/LOGIN-SAMESITE', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Heroo'
]);
is($r->header('Location'), '/docs/protected/get_me.html',
'SameSite location header');
is($r->header('Set-Cookie'),
'Sample::AuthCookieHandler_WhatEver=programmer:Heroo; path=/; SameSite=strict',
'cookie contains SameSite attribute');
is($r->code, 302, 'check redirect response code');
};
# test SessionTimeout
subtest 'session timeout' => sub {
plan tests => 1;
my $r = GET(
'/docs/stimeout/get_me.html',
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero'
);
like($r->header('Set-Cookie'),
qr/^Sample::AuthCookieHandler_WhatEver=.*expires=.+/,
'Set-Cookie contains expires property');
};
# should return bad credentials page, and credentials should be in a comment.
# We are checking here that $r->prev->pnotes('WhatEverCreds') works.
subtest 'creds are in pnotes' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'fail',
credential_1 => 'Hero'
]);
like($r->content, qr/creds: fail Hero/s, 'WhatEverCreds pnotes works');
};
# regression - Apache2::URI::unescape_url() does not handle '+' to ' '
# conversion.
subtest 'unescape URL with spaces' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'fail',
credential_1 => 'one two'
]);
like($r->content, qr/creds: fail one two/,
'read form data handles "+" conversion');
};
# variation of '+' to ' ' regression. Make sure we do not remove encoded
# '+'
subtest 'do not remove encoded +' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'fail',
credential_1 => 'one+two'
]);
like($r->content, qr/creds: fail one\+two/,
'read form data handles "+" conversion with encoded +');
};
# XSS attack prevention. make sure embedded \r, \n, \t is escaped in the destination.
subtest 'XSS: no newlines in destination' => sub {
plan tests => 4;
my $r = POST('/LOGIN', [
destination => "/docs/protected/get_me.html\r\nX-Test-Bar: True\r\nX-Test-Foo: True\r\n",
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
ok(!defined $r->header('X-Test-Foo'), 'anti XSS injection');
ok(!defined $r->header('X-Test-Bar'), 'anti XSS injection');
# try with escaped CRLF also.
$r = POST('/LOGIN', [
destination => "/docs/protected/get_me.html%0d%0aX-Test-Foo: True%0d%0aX-Test-Bar: True\r\n",
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
ok(!defined $r->header('X-Test-Foo'), 'anti XSS injection with escaped CRLF');
ok(!defined $r->header('X-Test-Bar'), 'anti XSS injection with escaped CRLF');
};
# embedded html tags in destination
subtest 'XSS: no embedded HTML in destination' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => '/"><form method="post">Embedded Form</form>'
]);
like $r->content, qr{"/%22%3E%3Cform method=%22post%22%3EEmbedded Form%3C/form%3E"};
};
# embedded script tags
subtest 'XSS: no embedded script' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => q{"><script>alert('123')</script>}
]);
ok index($r->content, q{<script>alert('123')</script>}) == -1;
};
subtest 'preserve / in password' => sub {
plan tests => 1;
my $r = POST('/LOGIN', [
destination => '/docs/protected/get_me.html',
credential_0 => 'fail',
credential_1 => 'one/two'
]);
like($r->content, qr/creds: fail one\/two/,
'read form data handles "/" conversion with encoded +');
};
# make sure multi-valued form data is preserved.
subtest 'multi-valued form data is preserved' => sub {
plan tests => 2;
my $r = POST('/docs/protected/xyz', [
one => 'abc',
one => 'def'
]);
# check and make sure we are at the login form now.
like($r->content, qr/Failure reason: 'no_cookie'/,
'login form was returned');
# check for multi-valued form data.
like($r->content, qr/one=abc&one=def/,
'post conversion perserves multi-valued fields');
};
# make sure $ENV{REMOTE_USER} gets set up
subtest 'setup $ENV{REMOTE_USER}' => sub {
plan tests => 1;
my $r = GET('/docs/protected/echo_user.pl',
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero'
);
like($r->content, qr/User: programmer/);
};
# test login form response status=OK with SymbianOS
subtest 'SymbianOS login form response code' => sub {
plan tests => 4;
my $orig_agent = Apache::TestRequest::user_agent()->agent;
# should get a 403 response by default
my $r = GET('/docs/protected/get_me.html');
is $r->code, 403;
like $r->content, qr/\bcredential_0\b/, 'got login form';
Apache::TestRequest::user_agent()
->agent('Mozilla/5.0 (SymbianOS/9.1; U; [en]; Series60/3.0 NokiaE60/4.06.0) AppleWebKit/413 (KHTML, like Gecko) Safari/413');
# should get a 200 response for SymbianOS
$r = GET('/docs/protected/get_me.html');
is $r->code, 200;
like $r->content, qr/\bcredential_0\b/, 'got login form';
Apache::TestRequest::user_agent()->agent($orig_agent);
};
subtest 'recognize user' => sub {
plan tests => 1;
# recognize user
my $body = GET_BODY('/docs/echo-user.pl',
Cookie => 'Sample::AuthCookieHandler_WhatEver=programmer:Hero');
is $body, 'programmer';
};
# Test DefaultDestination
subtest 'DefaultDestination' => sub {
plan tests => 1;
my $r = POST('/LOGIN-WITHDEFAULT', [
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/index.html',
'redirected to default destination');
};
subtest 'DefaultDestination' => sub {
plan tests => 3;
my $r = POST('/LOGIN-WITHDEFAULT', [
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/index.html',
'redirected to default destination - no destination in params');
$r = POST('/LOGIN-WITHDEFAULT', [
destination => 'http://metacpan.org/',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), 'http://metacpan.org/',
'redirected to remote default destination');
$r = POST('/LOGIN-WITHDEFAULT', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/get_me.html',
'redirected to requested local default destination');
};
subtest 'EnforceLocalDestination with default destination' => sub {
plan tests => 5;
my $r = POST('/LOGIN-ENFORCELOCAL-WITHDEFAULT', [
destination => 'http://metacpan.org/',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/index.html',
'redirected to default destination - remote destination in params');
$r = POST('/LOGIN-ENFORCELOCAL-WITHDEFAULT', [
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/index.html',
'redirected to default destination - no destiantion in params');
$r = POST('/LOGIN-ENFORCELOCAL-WITHDEFAULT', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/get_me.html',
'redirected to requested local destination');
$r = POST('/LOGIN-ENFORCELOCAL-WITHDEFAULT', [
destination => '//metacpan.org/index.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/index.html',
'redirected to default destination - protocol-relative destination in params');
my $abs_destination = URI->new("http://${host_port}/docs/protected/get_me.html")->as_string;
note "abs destination: $abs_destination";
$r = POST('/LOGIN-ENFORCELOCAL-WITHDEFAULT', [
destination => $abs_destination,
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), $abs_destination,
'redirected to requested destination - absolute URI is local to current request');
};
subtest 'EnforceLocalDestination with no default destination' => sub {
plan tests => 4;
my $r = POST('/LOGIN-ENFORCELOCAL-NODEFAULT', [
destination => 'http://metacpan.org/',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
like($r->content, qr/Failure reason: 'no_cookie'/,
'login form was returned for remote destination');
$r = POST('/LOGIN-ENFORCELOCAL-NODEFAULT', [
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
like($r->content, qr/Failure reason: 'no_cookie'/,
'login form was returned for no destination in params');
$r = POST('/LOGIN-ENFORCELOCAL-NODEFAULT', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/get_me.html',
'Got redirected to protected document for local destination');
$r = POST('/LOGIN-ENFORCELOCAL-NODEFAULT', [
destination => '//metacpan.org/index.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
like($r->content, qr/Failure reason: 'no_cookie'/,
'login form was returned - protocol relative destination in params');
};
subtest 'EnforceLocalDestination with non local default destination' => sub {
plan tests => 3;
my $r = POST('/LOGIN-ENFORCELOCAL-REMOTEDEFAULT', [
destination => "http://metacpan.org/",
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
like($r->content, qr/Failure reason: 'no_cookie'/,
'login form was returned for non local destination');
$r = POST('/LOGIN-ENFORCELOCAL-REMOTEDEFAULT', [
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
like($r->content, qr/Failure reason: 'no_cookie'/,
'login form was returned for no destination in params');
$r = POST('/LOGIN-ENFORCELOCAL-REMOTEDEFAULT', [
destination => '/docs/protected/get_me.html',
credential_0 => 'programmer',
credential_1 => 'Hero'
]);
is($r->header('Location'), '/docs/protected/get_me.html',
'Got redirected to protected document for local destination');
};
# remove CR's from a string. Win32 apache apparently does line ending
# conversion, and that can cause test cases to fail because output does not
# match expected because expected has UNIX line endings, and OUTPUT has dos
# style line endings.
sub strip_cr {
my $data = shift;
$data =~ s/\r//gs;
return $data;
}
# vim: ft=perl ts=4 ai et sw=4
|