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 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
|
# encoding: utf-8
# frozen_string_literal: true
RSpec.describe Warden::Proxy do
before(:all) do
load_strategies
end
before(:each) do
@basic_app = lambda{|_env| [200,{'Content-Type' => 'text/plain'},'OK']}
@authd_app = lambda do |e|
e['warden'].authenticate
if e['warden'].authenticated?
[200,{'Content-Type' => 'text/plain'},"OK"]
else
[401,{'Content-Type' => 'text/plain'},"You Fail"]
end
end
@env = env_with_params("/")
end # before(:each)
describe "authentication" do
it "should not check the authentication if it is not checked" do
app = setup_rack(@basic_app)
expect(app.call(@env).first).to eq(200)
end
it "should check the authentication if it is explicitly checked" do
app = setup_rack(@authd_app)
expect(app.call(@env).first).to eq(401)
end
it "should not allow the request if incorrect conditions are supplied" do
env = env_with_params("/", :foo => "bar")
app = setup_rack(@authd_app)
response = app.call(env)
expect(response.first).to eq(401)
end
it "should allow the request if the correct conditions are supplied" do
env = env_with_params("/", :username => "fred", :password => "sekrit")
app = setup_rack(@authd_app)
resp = app.call(env)
expect(resp.first).to eq(200)
end
it "should allow authentication in my application" do
env = env_with_params('/', :username => "fred", :password => "sekrit")
app = lambda do |env|
env['warden'].authenticate
expect(env['warden']).to be_authenticated
expect(env['warden.spec.strategies']).to eq([:password])
valid_response
end
setup_rack(app).call(env)
end
it "should allow me to select which strategies I use in my application" do
env = env_with_params("/", :foo => "bar")
app = lambda do |env|
env['warden'].authenticate(:failz)
expect(env['warden']).not_to be_authenticated
expect(env['warden.spec.strategies']).to eq([:failz])
valid_response
end
setup_rack(app).call(env)
end
it "should raise error on missing strategies" do
app = lambda do |env|
env['warden'].authenticate(:unknown)
end
expect {
setup_rack(app).call(@env)
}.to raise_error(RuntimeError, "Invalid strategy unknown")
end
it "should raise error if the strategy failed" do
app = lambda do |env|
env['warden'].authenticate(:fail_with_user)
expect(env['warden'].user).to be_nil
valid_response
end
setup_rack(app).call(@env)
end
it "should not raise error on missing strategies if silencing" do
app = lambda do |env|
env['warden'].authenticate
valid_response
end
expect {
setup_rack(app, :silence_missing_strategies => true, :default_strategies => [:unknown]).call(@env)
}.not_to raise_error
end
it "should allow me to get access to the user at warden.user." do
app = lambda do |env|
env['warden'].authenticate(:pass)
expect(env['warden']).to be_authenticated
expect(env['warden.spec.strategies']).to eq([:pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should run strategies when authenticate? is asked" do
app = lambda do |env|
expect(env['warden']).not_to be_authenticated
env['warden'].authenticate?(:pass)
expect(env['warden']).to be_authenticated
expect(env['warden.spec.strategies']).to eq([:pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should properly send the scope to the strategy" do
app = lambda do |env|
env['warden'].authenticate(:pass, :scope => :failz)
expect(env['warden']).not_to be_authenticated
expect(env['warden.spec.strategies']).to eq([:pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should try multiple authentication strategies" do
app = lambda do |env|
env['warden'].authenticate(:password,:pass)
expect(env['warden']).to be_authenticated
expect(env['warden.spec.strategies']).to eq([:password, :pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should look for an active user in the session with authenticate" do
app = lambda do |env|
env['rack.session']["warden.user.default.key"] = "foo as a user"
env['warden'].authenticate(:pass)
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden'].user).to eq("foo as a user")
end
it "should look for an active user in the session with authenticate?" do
app = lambda do |env|
env['rack.session']['warden.user.foo_scope.key'] = "a foo user"
env['warden'].authenticate?(:pass, :scope => :foo_scope)
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden'].user(:foo_scope)).to eq("a foo user")
end
it "should look for an active user in the session with authenticate!" do
app = lambda do |env|
env['rack.session']['warden.user.foo_scope.key'] = "a foo user"
env['warden'].authenticate!(:pass, :scope => :foo_scope)
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden'].user(:foo_scope)).to eq("a foo user")
end
it "should throw an error when authenticate!" do
app = lambda do |env|
env['warden'].authenticate!(:pass, :scope => :failz)
raise "OMG"
end
setup_rack(app).call(@env)
end
it "should login 2 different users from the session" do
app = lambda do |env|
env['rack.session']['warden.user.foo.key'] = 'foo user'
env['rack.session']['warden.user.bar.key'] = 'bar user'
expect(env['warden']).to be_authenticated(:foo)
expect(env['warden']).to be_authenticated(:bar)
expect(env['warden']).not_to be_authenticated # default scope
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden'].user(:foo)).to eq('foo user')
expect(@env['warden'].user(:bar)).to eq('bar user')
expect(@env['warden'].user).to be_nil
end
it "should not authenticate other scopes just because the first is authenticated" do
app = lambda do |env|
env['warden'].authenticate(:pass, :scope => :foo)
env['warden'].authenticate(:invalid, :scope => :bar)
expect(env['warden']).to be_authenticated(:foo)
expect(env['warden']).not_to be_authenticated(:bar)
valid_response
end
setup_rack(app).call(@env)
end
SID_REGEXP = /rack\.session=([^;]*);/
it "should renew session when user is set" do
app = lambda do |env|
env["rack.session"]["counter"] ||= 0
env["rack.session"]["counter"] += 1
if env["warden.on"]
env["warden"].authenticate!(:pass)
expect(env["warden"]).to be_authenticated
end
valid_response
end
# Setup a rack app with Pool session.
app = setup_rack(app, :session => Rack::Session::Pool).to_app
response = app.call(@env)
expect(@env["rack.session"]["counter"]).to eq(1)
# Ensure a cookie was given back
cookie = response[1]["Set-Cookie"]
expect(cookie).not_to be_nil
# Ensure a session id was given
sid = cookie.match(SID_REGEXP)[1]
expect(sid).not_to be_nil
# Do another request, giving a cookie but turning on warden authentication
env = env_with_params("/", {}, 'rack.session' => @env['rack.session'], "HTTP_COOKIE" => cookie, "warden.on" => true)
response = app.call(env)
expect(env["rack.session"]["counter"]).to be(2)
# Regardless of rack version, a cookie should be sent back
new_cookie = response[1]["Set-Cookie"]
expect(new_cookie).not_to be_nil
# And the session id in this cookie should not be the same as the previous one
new_sid = new_cookie.match(SID_REGEXP)[1]
expect(new_sid).not_to be_nil
expect(new_sid).not_to eq(sid)
end
it "should not renew session when user is fetch" do
app = lambda do |env|
env["rack.session"]["counter"] ||= 0
env["rack.session"]["counter"] += 1
env["warden"].authenticate!(:pass)
expect(env["warden"]).to be_authenticated
valid_response
end
# Setup a rack app with Pool session.
app = setup_rack(app, :session => Rack::Session::Pool).to_app
response = app.call(@env)
expect(@env["rack.session"]["counter"]).to eq(1)
# Ensure a cookie was given back
cookie = response[1]["Set-Cookie"]
expect(cookie).not_to be_nil
# Ensure a session id was given
sid = cookie.match(SID_REGEXP)[1]
expect(sid).not_to be_nil
# Do another request, passing the cookie. The user should be fetched from cookie.
env = env_with_params("/", {}, "HTTP_COOKIE" => cookie)
response = app.call(env)
expect(env["rack.session"]["counter"]).to eq(2)
# Depending on rack version, a cookie will be returned with the
# same session id or no cookie is given back (becase it did not change).
# If we don't get any of these two behaviors, raise an error.
# Regardless of rack version, a cookie should be sent back
new_cookie = response[1]["Set-Cookie"]
if new_cookie && new_cookie.match(SID_REGEXP)[1] != sid
raise "Expected a cookie to not be sent or session id to match"
end
end
end
describe "authentication cache" do
it "should run strategies just once for a given scope" do
app = lambda do |env|
env['warden'].authenticate(:password, :pass, :scope => :failz)
expect(env['warden']).not_to be_authenticated(:failz)
env['warden'].authenticate(:password, :pass, :scope => :failz)
expect(env['warden']).not_to be_authenticated(:failz)
expect(env['warden.spec.strategies']).to eq([:password, :pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should run strategies for a given scope several times if cache is cleaned" do
app = lambda do |env|
env['warden'].authenticate(:password, :pass, :scope => :failz)
env['warden'].clear_strategies_cache!(:scope => :failz)
env['warden'].authenticate(:password, :pass, :scope => :failz)
expect(env['warden.spec.strategies']).to eq([:password, :pass, :password, :pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should clear the cache for a specified strategy" do
app = lambda do |env|
env['warden'].authenticate(:password, :pass, :scope => :failz)
env['warden'].clear_strategies_cache!(:password, :scope => :failz)
env['warden'].authenticate(:password, :pass, :scope => :failz)
expect(env['warden.spec.strategies']).to eq([:password, :pass, :password])
valid_response
end
setup_rack(app).call(@env)
end
it "should run the strategies several times for different scopes" do
app = lambda do |env|
env['warden'].authenticate(:password, :pass, :scope => :failz)
expect(env['warden']).not_to be_authenticated(:failz)
env['warden'].authenticate(:password, :pass)
expect(env['warden']).to be_authenticated
expect(env['warden.spec.strategies']).to eq([:password, :pass, :password, :pass])
valid_response
end
setup_rack(app).call(@env)
end
it "should not run strategies until cache is cleaned if latest winning strategy halted" do
app = lambda do |env|
env['warden'].authenticate(:failz)
expect(env['warden']).not_to be_authenticated
env['warden'].authenticate(:pass)
expect(env['warden'].winning_strategy.message).to eq("The Fails Strategy Has Failed You")
valid_response
end
setup_rack(app).call(@env)
end
it "should not store user if strategy isn't meant for permanent login" do
session = Warden::SessionSerializer.new(@env)
app = lambda do |env|
env['warden'].authenticate(:single)
expect(env['warden']).to be_authenticated
expect(env['warden'].user).to eq("Valid User")
expect(session).not_to be_stored(:default)
valid_response
end
setup_rack(app).call(@env)
end
end
describe "set user" do
it "should store the user into the session" do
app = lambda do |env|
env['warden'].authenticate(:pass)
expect(env['warden']).to be_authenticated
expect(env['warden'].user).to eq("Valid User")
expect(env['rack.session']["warden.user.default.key"]).to eq("Valid User")
valid_response
end
setup_rack(app).call(@env)
end
it "should not store the user if the :store option is set to false" do
app = lambda do |env|
env['warden'].authenticate(:pass, :store => false)
expect(env['warden']).to be_authenticated
expect(env['warden'].user).to eq("Valid User")
expect(env['rack.session']['warden.user.default.key']).to be_nil
valid_response
end
setup_rack(app).call(@env)
end
it "should not throw error when no session is configured and store is false" do
app = lambda do |env|
env['rack.session'] = nil
env['warden'].authenticate(:pass, :store => false)
expect(env['warden']).to be_authenticated
expect(env['warden'].user).to eq("Valid User")
valid_response
end
setup_rack(app).call(@env)
end
it "should not run the callbacks when :run_callbacks is false" do
app = lambda do |env|
expect(env['warden'].manager).not_to receive(:_run_callbacks)
env['warden'].authenticate(:run_callbacks => false, :scope => :pass)
valid_response
end
setup_rack(app).call(@env)
end
it "should run the callbacks when :run_callbacks is true" do
app = lambda do |env|
expect(env['warden'].manager).to receive(:_run_callbacks).at_least(:once)
env['warden'].authenticate(:pass)
valid_response
end
setup_rack(app).call(@env)
end
it "should run the callbacks by default" do
app = lambda do |env|
expect(env['warden'].manager).to receive(:_run_callbacks).at_least(:once)
env['warden'].authenticate(:pass)
valid_response
end
setup_rack(app).call(@env)
end
it "should set renew on rack.session.options" do
app = lambda do |env|
env['warden'].authenticate(:pass)
valid_response
end
@env[Warden::Proxy::ENV_SESSION_OPTIONS] = {}
setup_rack(app).call(@env)
expect(@env[Warden::Proxy::ENV_SESSION_OPTIONS]).to include(renew: true)
expect(@env[Warden::Proxy::ENV_SESSION_OPTIONS]).to_not be_frozen
end
it "should not modify attempt to modify a frozen rack.session.options" do
app = lambda do |env|
env['warden'].authenticate(:pass)
valid_response
end
original_options = {}.freeze
@env[Warden::Proxy::ENV_SESSION_OPTIONS] = original_options
setup_rack(app).call(@env)
expect(original_options).to be_empty
expect(@env[Warden::Proxy::ENV_SESSION_OPTIONS]).to include(renew: true)
expect(@env[Warden::Proxy::ENV_SESSION_OPTIONS]).to be_frozen
end
end
describe "lock" do
it "should not run any strategy" do
app = lambda do |env|
env['warden'].lock!
env['warden'].authenticate(:pass)
expect(env['warden'].user).to be_nil
valid_response
end
setup_rack(app).call(@env)
end
it "should keep already authenticated users" do
app = lambda do |env|
env['warden'].authenticate(:pass)
env['warden'].lock!
expect(env['warden'].user).not_to be_nil
valid_response
end
setup_rack(app).call(@env)
end
end
describe "get user" do
before(:each) do
@env['rack.session'] ||= {}
@env['rack.session'].delete("warden.user.default.key")
end
it "should return nil when not logged in" do
app = lambda do |env|
expect(env['warden'].user).to be_nil
valid_response
end
setup_rack(app).call(@env)
end
it "should not run strategies when not logged in" do
app = lambda do |env|
expect(env['warden'].user).to be_nil
expect(env['warden.spec.strategies']).to be_nil
valid_response
end
setup_rack(app).call(@env)
end
it "should cache unfound user" do
expect_any_instance_of(Warden::SessionSerializer).to receive(:fetch).once
app = lambda do |env|
expect(env['warden'].user).to be_nil
expect(env['warden'].user).to be_nil
valid_response
end
setup_rack(app).call(@env)
end
describe "previously logged in" do
before(:each) do
@env['rack.session']['warden.user.default.key'] = "A Previous User"
@env['warden.spec.strategies'] = []
end
it "should take the user from the session when logged in" do
app = lambda do |env|
expect(env['warden'].user).to eq("A Previous User")
valid_response
end
setup_rack(app).call(@env)
end
it "should cache found user" do
expect_any_instance_of(Warden::SessionSerializer).to receive(:fetch).once.and_return "A Previous User"
app = lambda do |env|
expect(env['warden'].user).to eq("A Previous User")
expect(env['warden'].user).to eq("A Previous User")
valid_response
end
setup_rack(app).call(@env)
end
it "should not run strategies when the user exists in the session" do
app = lambda do |env|
env['warden'].authenticate!(:pass)
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden.spec.strategies']).not_to include(:pass)
end
describe "run callback option" do
it "should not call run_callbacks when we pass a :run_callback => false" do
app = lambda do |env|
expect(env['warden'].manager).not_to receive(:_run_callbacks)
env['warden'].user(:run_callbacks => false)
valid_response
end
setup_rack(app).call(@env)
end
it "should call run_callbacks when we pass a :run_callback => true" do
app = lambda do |env|
expect(env['warden'].manager).to receive(:_run_callbacks).at_least(:once)
env['warden'].user(:run_callbacks => true)
valid_response
end
setup_rack(app).call(@env)
end
it "should call run_callbacks by default" do
app = lambda do |env|
expect(env['warden'].manager).to receive(:_run_callbacks).at_least(:once)
env['warden'].user
valid_response
end
setup_rack(app).call(@env)
end
end
end
end
describe "logout" do
before(:each) do
@env['rack.session'] = {"warden.user.default.key" => "default key", "warden.user.foo.key" => "foo key", :foo => "bar"}
@app = lambda do |e|
e['warden'].logout(e['warden.spec.which_logout'])
valid_response
end
end
it "should logout only the scoped foo user" do
@app = setup_rack(@app)
@env['warden.spec.which_logout'] = :foo
@app.call(@env)
expect(@env['rack.session']['warden.user.default.key']).to eq("default key")
expect(@env['rack.session']['warden.user.foo.key']).to be_nil
expect(@env['rack.session'][:foo]).to eq("bar")
end
it "should logout only the scoped default user" do
@app = setup_rack(@app)
@env['warden.spec.which_logout'] = :default
@app.call(@env)
expect(@env['rack.session']['warden.user.default.key']).to be_nil
expect(@env['rack.session']['warden.user.foo.key']).to eq("foo key")
expect(@env['rack.session'][:foo]).to eq("bar")
end
it "should clear the session when no argument is given to logout" do
expect(@env['rack.session']).not_to be_nil
app = lambda do |e|
e['warden'].logout
valid_response
end
setup_rack(app).call(@env)
expect(@env['rack.session']).to be_empty
end
it "should not raise exception if raw_session is nil" do
@app = setup_rack(@app, { nil_session: true })
@env['rack.session'] = nil
@env['warden.spec.which_logout'] = :foo
expect { @app.call(@env) }.to_not raise_error
end
it "should clear the user when logging out" do
expect(@env['rack.session']).not_to be_nil
app = lambda do |e|
expect(e['warden'].user).not_to be_nil
e['warden'].logout
expect(e['warden']).not_to be_authenticated
expect(e['warden'].user).to be_nil
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden'].user).to be_nil
end
it "should clear the session data when logging out" do
expect(@env['rack.session']).not_to be_nil
app = lambda do |e|
expect(e['warden'].user).not_to be_nil
e['warden'].session[:foo] = :bar
e['warden'].logout
valid_response
end
setup_rack(app).call(@env)
end
it "should clear out the session by calling reset_session! so that plugins can setup their own session clearing" do
expect(@env['rack.session']).not_to be_nil
app = lambda do |e|
expect(e['warden'].user).not_to be_nil
expect(e['warden']).to receive(:reset_session!)
e['warden'].logout
valid_response
end
setup_rack(app).call(@env)
end
end
describe "messages" do
it "should allow access to the failure message" do
failure = lambda do |e|
[401, {"Content-Type" => "text/plain"}, [e['warden'].message]]
end
app = lambda do |e|
e['warden'].authenticate! :failz
end
result = setup_rack(app, :failure_app => failure).call(@env)
expect(result.last).to eq(["The Fails Strategy Has Failed You"])
end
it "should allow access to the success message" do
success = lambda do |e|
[200, {"Content-Type" => "text/plain"}, [e['warden'].message]]
end
app = lambda do |e|
e['warden'].authenticate! :pass_with_message
success.call(e)
end
result = setup_rack(app).call(@env)
expect(result.last).to eq(["The Success Strategy Has Accepted You"])
end
it "should not die when accessing a message from a source where no authentication has occurred" do
app = lambda do |e|
[200, {"Content-Type" => "text/plain"}, [e['warden'].message]]
end
result = setup_rack(app).call(@env)
expect(result[2]).to eq([nil])
end
end
describe "when all strategies are not valid?" do
it "should return false for authenticated? when there are no valid? strategies" do
@env['rack.session'] = {}
app = lambda do |e|
expect(e['warden'].authenticate(:invalid)).to be_nil
expect(e['warden']).not_to be_authenticated
end
setup_rack(app).call(@env)
end
it "should return nil for authenticate when there are no valid strategies" do
@env['rack.session'] = {}
app = lambda do |e|
expect(e['warden'].authenticate(:invalid)).to be_nil
end
setup_rack(app).call(@env)
end
it "should return false for authenticate? when there are no valid strategies" do
@env['rack.session'] = {}
app = lambda do |e|
expect(e['warden'].authenticate?(:invalid)).to eq(false)
end
setup_rack(app).call(@env)
end
it "should respond with a 401 when authenticate! cannot find any valid strategies" do
@env['rack.session'] = {}
app = lambda do |e|
e['warden'].authenticate!(:invalid)
end
result = setup_rack(app).call(@env)
expect(result.first).to eq(401)
end
end
describe "authenticated?" do
describe "positive authentication" do
before do
@env['rack.session'] = {'warden.user.default.key' => 'defult_key'}
$captures = []
end
it "should return true when authenticated in the session" do
app = lambda do |e|
expect(e['warden']).to be_authenticated
end
setup_rack(app).call(@env)
end
it "should yield to a block when the block is passed and authenticated" do
app = lambda do |e|
e['warden'].authenticated? do
$captures << :in_the_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([:in_the_block])
end
it "should authenticate for a user in a different scope" do
@env['rack.session'] = {'warden.user.foo.key' => 'foo_key'}
app = lambda do |e|
e['warden'].authenticated?(:foo) do
$captures << :in_the_foo_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([:in_the_foo_block])
end
end
describe "negative authentication" do
before do
@env['rack.session'] = {'warden.foo.default.key' => 'foo_key'}
$captures = []
end
it "should return false when authenticated in the session" do
app = lambda do |e|
expect(e['warden']).not_to be_authenticated
end
setup_rack(app).call(@env)
end
it "should return false if scope cannot be retrieved from session" do
begin
Warden::Manager.serialize_from_session { |_k| nil }
app = lambda do |env|
env['rack.session']['warden.user.foo_scope.key'] = "a foo user"
env['warden'].authenticated?(:foo_scope)
valid_response
end
setup_rack(app).call(@env)
expect(@env['warden'].user(:foo_scope)).to be_nil
ensure
Warden::Manager.serialize_from_session { |k| k }
end
end
it "should not yield to a block when the block is passed and authenticated" do
app = lambda do |e|
e['warden'].authenticated? do
$captures << :in_the_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([])
end
it "should not yield for a user in a different scope" do
app = lambda do |e|
e['warden'].authenticated?(:bar) do
$captures << :in_the_bar_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([])
end
end
end
describe "unauthenticated?" do
describe "negative unauthentication" do
before do
@env['rack.session'] = {'warden.user.default.key' => 'defult_key'}
$captures = []
end
it "should return false when authenticated in the session" do
app = lambda do |e|
expect(e['warden']).not_to be_unauthenticated
end
_result = setup_rack(app).call(@env)
end
it "should not yield to a block when the block is passed and authenticated" do
app = lambda do |e|
e['warden'].unauthenticated? do
$captures << :in_the_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([])
end
it "should not yield to the block for a user in a different scope" do
@env['rack.session'] = {'warden.user.foo.key' => 'foo_key'}
app = lambda do |e|
e['warden'].unauthenticated?(:foo) do
$captures << :in_the_foo_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([])
end
end
describe "positive unauthentication" do
before do
@env['rack.session'] = {'warden.foo.default.key' => 'foo_key'}
$captures = []
end
it "should return false when unauthenticated in the session" do
app = lambda do |e|
expect(e['warden']).to be_unauthenticated
end
setup_rack(app).call(@env)
end
it "should yield to a block when the block is passed and authenticated" do
app = lambda do |e|
e['warden'].unauthenticated? do
$captures << :in_the_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([:in_the_block])
end
it "should yield for a user in a different scope" do
app = lambda do |e|
e['warden'].unauthenticated?(:bar) do
$captures << :in_the_bar_block
end
end
setup_rack(app).call(@env)
expect($captures).to eq([:in_the_bar_block])
end
end
end
describe "attributes" do
def def_app(&blk)
@app = setup_rack(blk)
end
it "should have a config attribute" do
app = def_app do |e|
expect(e['warden'].config).to be_a_kind_of(Hash)
valid_response
end
app.call(@env)
end
end
end
describe "dynamic default_strategies" do
before(:all) do
load_strategies
class ::DynamicDefaultStrategies
def initialize(app, &blk)
@app, @blk = app, blk
end
def call(env)
@blk.call(env)
@app.call(env)
end
end
Warden::Strategies.add(:one) do
def authenticate!; $captures << :one; success!("User") end
end
Warden::Strategies.add(:two) do
def authenticate!; $captures << :two; fail("User not found") end
end
end
before(:each) do
@app = lambda{|e| e['warden'].authenticate! }
@env = env_with_params("/")
$captures = []
end
def wrap_app(app, &blk)
builder = Rack::Builder.new do
use DynamicDefaultStrategies, &blk
run app
end
builder.to_app
end
it "should allow me to change the default strategies on the fly" do
app = wrap_app(@app) do |e|
expect(e['warden'].default_strategies).to eq([:password])
expect(e['warden'].config.default_strategies).to eq([:password])
e['warden'].default_strategies :one
e['warden'].authenticate!
Rack::Response.new("OK").finish
end
setup_rack(app).call(@env)
expect($captures).to eq([:one])
end
it "should allow me to append to the default strategies on the fly" do
app = wrap_app(@app) do |e|
e['warden'].default_strategies << :one
expect(e['warden'].default_strategies).to eq([:password, :one])
e['warden'].authenticate!
Rack::Response.new("OK").finish
end
setup_rack(app).call(@env)
expect($captures).to eq([:one])
end
it "should allow me to set the default strategies on a per scope basis" do
app = wrap_app(@app) do |e|
w = e['warden']
w.default_strategies(:two, :one, :scope => :foo)
w.default_strategies(:two, :scope => :default)
expect(w.default_strategies(:scope => :foo)).to eq([:two, :one])
w.authenticate(:scope => :foo)
expect($captures).to eq([:two, :one])
$captures.clear
w.authenticate
expect($captures).to eq([:two])
end
setup_rack(app).call(@env)
expect($captures).to eq([:two])
end
it "should allow me to setup default strategies for each scope on the manager" do
builder = Rack::Builder.new do
use Warden::Spec::Helpers::Session
use Warden::Manager do |config|
config.default_strategies :one
config.default_strategies :two, :one, :scope => :foo
config.failure_app = Warden::Spec::Helpers::FAILURE_APP
end
run(lambda do |e|
w = e['warden']
w.authenticate
w.authenticate(:scope => :foo)
$captures << :complete
end)
end
builder.to_app.call(@env)
expect($captures).to eq([:one, :two, :one, :complete])
end
it "should not change the master configurations strategies when I change them" do
app = wrap_app(@app) do |e|
e['warden'].default_strategies << :one
expect(e['warden'].default_strategies).to eq([:password, :one])
expect(e['warden'].manager.config.default_strategies).to eq([:password])
e['warden'].authenticate!
Rack::Response.new("OK").finish
end
setup_rack(app).call(@env)
expect($captures).to eq([:one])
end
describe "default scope options" do
it "should allow me to set a default action for a given scope" do
$captures = []
builder = Rack::Builder.new do
use Warden::Manager do |config|
config.scope_defaults :foo, :strategies => [:two], :action => "some_bad_action"
config.failure_app = Warden::Spec::Helpers::FAILURE_APP
end
run(lambda do |e|
e['warden'].authenticate!(:scope => :foo)
end)
end
env = env_with_params("/foo")
env["rack.session"] = {}
builder.to_app.call(env)
request = Rack::Request.new(env)
expect(request.path).to eq("/some_bad_action")
end
it "should allow me to set store, false on a given scope" do
$captures = []
warden = []
builder = Rack::Builder.new do
use Warden::Manager do |config|
config.default_strategies :one
config.default_strategies :two, :one, :scope => :foo
config.default_strategies :two, :one, :scope => :bar
config.scope_defaults :bar, :store => false
config.scope_defaults :baz, :store => false
config.failure_app = Warden::Spec::Helpers::FAILURE_APP
end
run(lambda do |e|
w = e['warden']
w.authenticate
w.authenticate(:scope => :foo)
w.authenticate(:one, :scope => :bar)
w.authenticate(:one, :scope => :baz, :store => true)
warden << w
$captures << :complete
Rack::Response.new("OK").finish
end)
end
session = @env["rack.session"] = {}
builder.to_app.call(@env)
expect($captures).to include(:complete)
w = warden.first
expect(w.user).to eq("User")
expect(w.user(:foo)).to eq("User")
expect(w.user(:bar)).to eq("User")
expect(w.user(:baz)).to eq("User")
expect(session['warden.user.default.key']).to eq("User")
expect(session['warden.user.foo.key']).to eq("User")
expect(session.key?('warden.user.bar.key')).to eq(false)
expect(session['warden.user.bar.key']).to be_nil
expect(session['warden.user.baz.key']).to eq("User")
end
end
describe "#asset_request?" do
before(:each) do
@asset_regex = /^\/assets\//
::Warden.asset_paths = @asset_regex
end
it "should return true if PATH_INFO is in asset list" do
env = env_with_params('/assets/fun.gif')
setup_rack(success_app).call(env)
proxy = env["warden"]
expect(proxy.env['PATH_INFO']).to match(@asset_regex)
expect(proxy).to be_asset_request
end
it "should return false if PATH_INFO is not in asset list" do
env = env_with_params('/home')
setup_rack(success_app).call(env)
proxy = env["warden"]
expect(proxy.env['PATH_INFO']).not_to match(@asset_regex)
expect(proxy).not_to be_asset_request
end
end
end
|