diff options
author | Azul <azul@leap.se> | 2013-10-30 20:13:16 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-10-30 20:17:43 +0100 |
commit | f6924bfe3b540c384fa53e55db9db3a64a34ced3 (patch) | |
tree | 23625c0daafbaade2a1aeb9bf9b17070f1f67d51 /users/test/support | |
parent | dd88c7f84cb3c497c6327c364b3c08993c51a08f (diff) |
test helper to expect_logout.
Currently it expects both the session and the token to be cleared. This might change. But we'll always have a definition of what it means to logout we can test this way.
Diffstat (limited to 'users/test/support')
-rw-r--r-- | users/test/support/auth_test_helper.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/users/test/support/auth_test_helper.rb b/users/test/support/auth_test_helper.rb index 609f115..50e9453 100644 --- a/users/test/support/auth_test_helper.rb +++ b/users/test/support/auth_test_helper.rb @@ -38,12 +38,26 @@ module AuthTestHelper end end + def expect_logout + expect_warden_logout + @token.expects(:destroy) if @token + end + protected def header_for_token_auth @token = find_record(:token, :authenticate => @current_user) ActionController::HttpAuthentication::Token.encode_credentials @token.id end + + def expect_warden_logout + raw = mock('raw session') do + expects(:inspect) + end + request.env['warden'].expects(:raw_session).returns(raw) + request.env['warden'].expects(:logout) + end + end class ActionController::TestCase |