gonow-devise 1.2.rc
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +506 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +335 -0
- data/app/controllers/devise/confirmations_controller.rb +33 -0
- data/app/controllers/devise/oauth_callbacks_controller.rb +4 -0
- data/app/controllers/devise/passwords_controller.rb +41 -0
- data/app/controllers/devise/registrations_controller.rb +109 -0
- data/app/controllers/devise/sessions_controller.rb +24 -0
- data/app/controllers/devise/unlocks_controller.rb +34 -0
- data/app/helpers/devise_helper.rb +19 -0
- data/app/mailers/devise/mailer.rb +88 -0
- data/app/views/devise/confirmations/new.html.erb +12 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +16 -0
- data/app/views/devise/passwords/new.html.erb +12 -0
- data/app/views/devise/registrations/edit.html.erb +25 -0
- data/app/views/devise/registrations/new.html.erb +18 -0
- data/app/views/devise/sessions/new.html.erb +17 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +12 -0
- data/config/locales/en.yml +46 -0
- data/lib/devise.rb +372 -0
- data/lib/devise/controllers/helpers.rb +228 -0
- data/lib/devise/controllers/internal_helpers.rb +113 -0
- data/lib/devise/controllers/scoped_views.rb +33 -0
- data/lib/devise/controllers/url_helpers.rb +39 -0
- data/lib/devise/encryptors/authlogic_sha512.rb +19 -0
- data/lib/devise/encryptors/base.rb +20 -0
- data/lib/devise/encryptors/clearance_sha1.rb +17 -0
- data/lib/devise/encryptors/restful_authentication_sha1.rb +22 -0
- data/lib/devise/encryptors/sha1.rb +25 -0
- data/lib/devise/encryptors/sha512.rb +25 -0
- data/lib/devise/failure_app.rb +126 -0
- data/lib/devise/hooks/activatable.rb +11 -0
- data/lib/devise/hooks/forgetable.rb +12 -0
- data/lib/devise/hooks/rememberable.rb +45 -0
- data/lib/devise/hooks/timeoutable.rb +22 -0
- data/lib/devise/hooks/trackable.rb +9 -0
- data/lib/devise/mapping.rb +105 -0
- data/lib/devise/models.rb +66 -0
- data/lib/devise/models/authenticatable.rb +143 -0
- data/lib/devise/models/confirmable.rb +160 -0
- data/lib/devise/models/database_authenticatable.rb +94 -0
- data/lib/devise/models/encryptable.rb +65 -0
- data/lib/devise/models/lockable.rb +168 -0
- data/lib/devise/models/oauthable.rb +49 -0
- data/lib/devise/models/recoverable.rb +83 -0
- data/lib/devise/models/registerable.rb +21 -0
- data/lib/devise/models/rememberable.rb +122 -0
- data/lib/devise/models/timeoutable.rb +43 -0
- data/lib/devise/models/token_authenticatable.rb +72 -0
- data/lib/devise/models/trackable.rb +30 -0
- data/lib/devise/models/validatable.rb +64 -0
- data/lib/devise/modules.rb +30 -0
- data/lib/devise/oauth.rb +41 -0
- data/lib/devise/oauth/config.rb +33 -0
- data/lib/devise/oauth/helpers.rb +18 -0
- data/lib/devise/oauth/internal_helpers.rb +182 -0
- data/lib/devise/oauth/test_helpers.rb +29 -0
- data/lib/devise/oauth/url_helpers.rb +35 -0
- data/lib/devise/orm/active_record.rb +38 -0
- data/lib/devise/orm/mongoid.rb +31 -0
- data/lib/devise/path_checker.rb +18 -0
- data/lib/devise/rails.rb +68 -0
- data/lib/devise/rails/routes.rb +260 -0
- data/lib/devise/rails/warden_compat.rb +41 -0
- data/lib/devise/schema.rb +96 -0
- data/lib/devise/strategies/authenticatable.rb +150 -0
- data/lib/devise/strategies/base.rb +15 -0
- data/lib/devise/strategies/database_authenticatable.rb +21 -0
- data/lib/devise/strategies/rememberable.rb +51 -0
- data/lib/devise/strategies/token_authenticatable.rb +53 -0
- data/lib/devise/test_helpers.rb +100 -0
- data/lib/devise/version.rb +3 -0
- data/lib/generators/active_record/devise_generator.rb +28 -0
- data/lib/generators/active_record/templates/migration.rb +30 -0
- data/lib/generators/devise/devise_generator.rb +17 -0
- data/lib/generators/devise/install_generator.rb +24 -0
- data/lib/generators/devise/orm_helpers.rb +24 -0
- data/lib/generators/devise/views_generator.rb +63 -0
- data/lib/generators/mongoid/devise_generator.rb +17 -0
- data/lib/generators/templates/README +25 -0
- data/lib/generators/templates/devise.rb +168 -0
- data/test/controllers/helpers_test.rb +205 -0
- data/test/controllers/internal_helpers_test.rb +56 -0
- data/test/controllers/url_helpers_test.rb +59 -0
- data/test/devise_test.rb +65 -0
- data/test/encryptors_test.rb +30 -0
- data/test/failure_app_test.rb +148 -0
- data/test/generators/generators_test_helper.rb +4 -0
- data/test/generators/install_generator_test.rb +14 -0
- data/test/generators/views_generator_test.rb +37 -0
- data/test/integration/authenticatable_test.rb +424 -0
- data/test/integration/confirmable_test.rb +104 -0
- data/test/integration/database_authenticatable_test.rb +38 -0
- data/test/integration/http_authenticatable_test.rb +64 -0
- data/test/integration/lockable_test.rb +109 -0
- data/test/integration/oauthable_test.rb +244 -0
- data/test/integration/recoverable_test.rb +134 -0
- data/test/integration/registerable_test.rb +180 -0
- data/test/integration/rememberable_test.rb +179 -0
- data/test/integration/timeoutable_test.rb +89 -0
- data/test/integration/token_authenticatable_test.rb +99 -0
- data/test/integration/trackable_test.rb +64 -0
- data/test/mailers/confirmation_instructions_test.rb +84 -0
- data/test/mailers/reset_password_instructions_test.rb +72 -0
- data/test/mailers/unlock_instructions_test.rb +66 -0
- data/test/mapping_test.rb +95 -0
- data/test/models/confirmable_test.rb +221 -0
- data/test/models/database_authenticatable_test.rb +82 -0
- data/test/models/encryptable_test.rb +65 -0
- data/test/models/lockable_test.rb +204 -0
- data/test/models/oauthable_test.rb +21 -0
- data/test/models/recoverable_test.rb +155 -0
- data/test/models/rememberable_test.rb +271 -0
- data/test/models/timeoutable_test.rb +28 -0
- data/test/models/token_authenticatable_test.rb +37 -0
- data/test/models/trackable_test.rb +5 -0
- data/test/models/validatable_test.rb +99 -0
- data/test/models_test.rb +77 -0
- data/test/oauth/config_test.rb +44 -0
- data/test/oauth/url_helpers_test.rb +47 -0
- data/test/orm/active_record.rb +9 -0
- data/test/orm/mongoid.rb +10 -0
- data/test/rails_app/app/active_record/admin.rb +6 -0
- data/test/rails_app/app/active_record/shim.rb +2 -0
- data/test/rails_app/app/active_record/user.rb +8 -0
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +6 -0
- data/test/rails_app/app/controllers/admins_controller.rb +6 -0
- data/test/rails_app/app/controllers/application_controller.rb +9 -0
- data/test/rails_app/app/controllers/home_controller.rb +12 -0
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +2 -0
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +2 -0
- data/test/rails_app/app/controllers/users_controller.rb +18 -0
- data/test/rails_app/app/helpers/application_helper.rb +3 -0
- data/test/rails_app/app/mongoid/admin.rb +9 -0
- data/test/rails_app/app/mongoid/shim.rb +24 -0
- data/test/rails_app/app/mongoid/user.rb +10 -0
- data/test/rails_app/config/application.rb +35 -0
- data/test/rails_app/config/boot.rb +13 -0
- data/test/rails_app/config/environment.rb +5 -0
- data/test/rails_app/config/environments/development.rb +19 -0
- data/test/rails_app/config/environments/production.rb +33 -0
- data/test/rails_app/config/environments/test.rb +33 -0
- data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_app/config/initializers/devise.rb +172 -0
- data/test/rails_app/config/initializers/inflections.rb +2 -0
- data/test/rails_app/config/initializers/secret_token.rb +2 -0
- data/test/rails_app/config/routes.rb +54 -0
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +31 -0
- data/test/rails_app/db/schema.rb +52 -0
- data/test/rails_app/lib/shared_admin.rb +9 -0
- data/test/rails_app/lib/shared_user.rb +48 -0
- data/test/routes_test.rb +189 -0
- data/test/support/assertions.rb +24 -0
- data/test/support/helpers.rb +60 -0
- data/test/support/integration.rb +88 -0
- data/test/support/webrat/integrations/rails.rb +24 -0
- data/test/test_helper.rb +23 -0
- data/test/test_helpers_test.rb +101 -0
- metadata +357 -0
@@ -0,0 +1,104 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class ConfirmationTest < ActionController::IntegrationTest
|
4
|
+
|
5
|
+
def visit_user_confirmation_with_token(confirmation_token)
|
6
|
+
visit user_confirmation_path(:confirmation_token => confirmation_token)
|
7
|
+
end
|
8
|
+
|
9
|
+
test 'user should be able to request a new confirmation' do
|
10
|
+
user = create_user(:confirm => false)
|
11
|
+
ActionMailer::Base.deliveries.clear
|
12
|
+
|
13
|
+
visit new_user_session_path
|
14
|
+
click_link "Didn't receive confirmation instructions?"
|
15
|
+
|
16
|
+
fill_in 'email', :with => user.email
|
17
|
+
click_button 'Resend confirmation instructions'
|
18
|
+
|
19
|
+
assert_current_url '/users/sign_in'
|
20
|
+
assert_contain 'You will receive an email with instructions about how to confirm your account in a few minutes'
|
21
|
+
assert_equal 1, ActionMailer::Base.deliveries.size
|
22
|
+
end
|
23
|
+
|
24
|
+
test 'user with invalid confirmation token should not be able to confirm an account' do
|
25
|
+
visit_user_confirmation_with_token('invalid_confirmation')
|
26
|
+
assert_have_selector '#error_explanation'
|
27
|
+
assert_contain /Confirmation token(.*)invalid/
|
28
|
+
end
|
29
|
+
|
30
|
+
test 'user with valid confirmation token should be able to confirm an account' do
|
31
|
+
user = create_user(:confirm => false)
|
32
|
+
assert_not user.confirmed?
|
33
|
+
visit_user_confirmation_with_token(user.confirmation_token)
|
34
|
+
|
35
|
+
assert_contain 'Your account was successfully confirmed.'
|
36
|
+
assert_current_url '/'
|
37
|
+
assert user.reload.confirmed?
|
38
|
+
end
|
39
|
+
|
40
|
+
test 'already confirmed user should not be able to confirm the account again' do
|
41
|
+
user = create_user(:confirm => false)
|
42
|
+
user.confirmed_at = Time.now
|
43
|
+
user.save
|
44
|
+
visit_user_confirmation_with_token(user.confirmation_token)
|
45
|
+
|
46
|
+
assert_have_selector '#error_explanation'
|
47
|
+
assert_contain 'already confirmed'
|
48
|
+
end
|
49
|
+
|
50
|
+
test 'already confirmed user should not be able to confirm the account again neither request confirmation' do
|
51
|
+
user = create_user(:confirm => false)
|
52
|
+
user.confirmed_at = Time.now
|
53
|
+
user.save
|
54
|
+
|
55
|
+
visit_user_confirmation_with_token(user.confirmation_token)
|
56
|
+
assert_contain 'already confirmed'
|
57
|
+
|
58
|
+
fill_in 'email', :with => user.email
|
59
|
+
click_button 'Resend confirmation instructions'
|
60
|
+
assert_contain 'already confirmed'
|
61
|
+
end
|
62
|
+
|
63
|
+
test 'sign in user automatically after confirming it\'s email' do
|
64
|
+
user = create_user(:confirm => false)
|
65
|
+
visit_user_confirmation_with_token(user.confirmation_token)
|
66
|
+
|
67
|
+
assert warden.authenticated?(:user)
|
68
|
+
end
|
69
|
+
|
70
|
+
test 'increases sign count when signed in through confirmation' do
|
71
|
+
user = create_user(:confirm => false)
|
72
|
+
visit_user_confirmation_with_token(user.confirmation_token)
|
73
|
+
|
74
|
+
user.reload
|
75
|
+
assert_equal 1, user.sign_in_count
|
76
|
+
end
|
77
|
+
|
78
|
+
test 'not confirmed user with setup to block without confirmation should not be able to sign in' do
|
79
|
+
swap Devise, :confirm_within => 0.days do
|
80
|
+
sign_in_as_user(:confirm => false)
|
81
|
+
|
82
|
+
assert_contain 'You have to confirm your account before continuing'
|
83
|
+
assert_not warden.authenticated?(:user)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
test 'not confirmed user but configured with some days to confirm should be able to sign in' do
|
88
|
+
swap Devise, :confirm_within => 1.day do
|
89
|
+
sign_in_as_user(:confirm => false)
|
90
|
+
|
91
|
+
assert_response :success
|
92
|
+
assert warden.authenticated?(:user)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
test 'error message is configurable by resource name' do
|
97
|
+
store_translations :en, :devise => {
|
98
|
+
:failure => { :user => { :unconfirmed => "Not confirmed user" } }
|
99
|
+
} do
|
100
|
+
sign_in_as_user(:confirm => false)
|
101
|
+
assert_contain 'Not confirmed user'
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class DatabaseAuthenticationTest < ActionController::IntegrationTest
|
4
|
+
test 'sign in should not authenticate if not using proper authentication keys' do
|
5
|
+
swap Devise, :authentication_keys => [:username] do
|
6
|
+
sign_in_as_user
|
7
|
+
assert_not warden.authenticated?(:user)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
test 'sign in with invalid email should return to sign in form with error message' do
|
12
|
+
sign_in_as_admin do
|
13
|
+
fill_in 'email', :with => 'wrongemail@test.com'
|
14
|
+
end
|
15
|
+
|
16
|
+
assert_contain 'Invalid email or password'
|
17
|
+
assert_not warden.authenticated?(:admin)
|
18
|
+
end
|
19
|
+
|
20
|
+
test 'sign in with invalid pasword should return to sign in form with error message' do
|
21
|
+
sign_in_as_admin do
|
22
|
+
fill_in 'password', :with => 'abcdef'
|
23
|
+
end
|
24
|
+
|
25
|
+
assert_contain 'Invalid email or password'
|
26
|
+
assert_not warden.authenticated?(:admin)
|
27
|
+
end
|
28
|
+
|
29
|
+
test 'error message is configurable by resource name' do
|
30
|
+
store_translations :en, :devise => { :failure => { :admin => { :invalid => "Invalid credentials" } } } do
|
31
|
+
sign_in_as_admin do
|
32
|
+
fill_in 'password', :with => 'abcdef'
|
33
|
+
end
|
34
|
+
|
35
|
+
assert_contain 'Invalid credentials'
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class HttpAuthenticationTest < ActionController::IntegrationTest
|
4
|
+
|
5
|
+
test 'sign in should authenticate with http' do
|
6
|
+
sign_in_as_new_user_with_http
|
7
|
+
assert_response :success
|
8
|
+
assert_match '<email>user@test.com</email>', response.body
|
9
|
+
assert warden.authenticated?(:user)
|
10
|
+
end
|
11
|
+
|
12
|
+
test 'returns a custom response with www-authenticate header on failures' do
|
13
|
+
sign_in_as_new_user_with_http("unknown")
|
14
|
+
assert_equal 401, status
|
15
|
+
assert_equal 'Basic realm="Application"', headers["WWW-Authenticate"]
|
16
|
+
end
|
17
|
+
|
18
|
+
test 'uses the request format as response content type' do
|
19
|
+
sign_in_as_new_user_with_http("unknown")
|
20
|
+
assert_equal 401, status
|
21
|
+
assert_equal "application/xml; charset=utf-8", headers["Content-Type"]
|
22
|
+
assert_match "<error>Invalid email or password.</error>", response.body
|
23
|
+
end
|
24
|
+
|
25
|
+
test 'returns a custom response with www-authenticate and chosen realm' do
|
26
|
+
swap Devise, :http_authentication_realm => "MyApp" do
|
27
|
+
sign_in_as_new_user_with_http("unknown")
|
28
|
+
assert_equal 401, status
|
29
|
+
assert_equal 'Basic realm="MyApp"', headers["WWW-Authenticate"]
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
test 'sign in should authenticate with http even with specific authentication keys' do
|
34
|
+
swap Devise, :authentication_keys => [:username] do
|
35
|
+
sign_in_as_new_user_with_http("usertest")
|
36
|
+
assert_response :success
|
37
|
+
assert_match '<email>user@test.com</email>', response.body
|
38
|
+
assert warden.authenticated?(:user)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
test 'test request with oauth2 header doesnt get mistaken for basic authentication' do
|
43
|
+
swap Devise, :http_authenticatable => true do
|
44
|
+
add_oauth2_header
|
45
|
+
assert_equal 401, status
|
46
|
+
assert_equal 'Basic realm="Application"', headers["WWW-Authenticate"]
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def sign_in_as_new_user_with_http(username="user@test.com", password="123456")
|
53
|
+
user = create_user
|
54
|
+
get users_path(:format => :xml), {}, "HTTP_AUTHORIZATION" => "Basic #{ActiveSupport::Base64.encode64("#{username}:#{password}")}"
|
55
|
+
user
|
56
|
+
end
|
57
|
+
|
58
|
+
# Sign in with oauth2 token. This is just to test that it isn't misinterpreted as basic authentication
|
59
|
+
def add_oauth2_header
|
60
|
+
user = create_user
|
61
|
+
get users_path(:format => :xml), {}, "HTTP_AUTHORIZATION" => "OAuth #{ActiveSupport::Base64.encode64("#{user.email}:123456")}"
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class LockTest < ActionController::IntegrationTest
|
4
|
+
|
5
|
+
def visit_user_unlock_with_token(unlock_token)
|
6
|
+
visit user_unlock_path(:unlock_token => unlock_token)
|
7
|
+
end
|
8
|
+
|
9
|
+
test 'user should be able to request a new unlock token' do
|
10
|
+
user = create_user(:locked => true)
|
11
|
+
ActionMailer::Base.deliveries.clear
|
12
|
+
|
13
|
+
visit new_user_session_path
|
14
|
+
click_link "Didn't receive unlock instructions?"
|
15
|
+
|
16
|
+
fill_in 'email', :with => user.email
|
17
|
+
click_button 'Resend unlock instructions'
|
18
|
+
|
19
|
+
assert_template 'sessions/new'
|
20
|
+
assert_contain 'You will receive an email with instructions about how to unlock your account in a few minutes'
|
21
|
+
assert_equal 1, ActionMailer::Base.deliveries.size
|
22
|
+
end
|
23
|
+
|
24
|
+
test 'unlocked user should not be able to request a unlock token' do
|
25
|
+
user = create_user(:locked => false)
|
26
|
+
ActionMailer::Base.deliveries.clear
|
27
|
+
|
28
|
+
visit new_user_session_path
|
29
|
+
click_link "Didn't receive unlock instructions?"
|
30
|
+
|
31
|
+
fill_in 'email', :with => user.email
|
32
|
+
click_button 'Resend unlock instructions'
|
33
|
+
|
34
|
+
assert_template 'unlocks/new'
|
35
|
+
assert_contain 'not locked'
|
36
|
+
assert_equal 0, ActionMailer::Base.deliveries.size
|
37
|
+
end
|
38
|
+
|
39
|
+
test 'unlocked pages should not be available if email strategy is disabled' do
|
40
|
+
visit "/admins/sign_in"
|
41
|
+
|
42
|
+
assert_raise Webrat::NotFoundError do
|
43
|
+
click_link "Didn't receive unlock instructions?"
|
44
|
+
end
|
45
|
+
|
46
|
+
assert_raise NameError do
|
47
|
+
visit new_admin_unlock_path
|
48
|
+
end
|
49
|
+
|
50
|
+
visit "/admins/unlock/new"
|
51
|
+
assert_response :not_found
|
52
|
+
end
|
53
|
+
|
54
|
+
test 'user with invalid unlock token should not be able to unlock an account' do
|
55
|
+
visit_user_unlock_with_token('invalid_token')
|
56
|
+
|
57
|
+
assert_response :success
|
58
|
+
assert_current_url '/users/unlock?unlock_token=invalid_token'
|
59
|
+
assert_have_selector '#error_explanation'
|
60
|
+
assert_contain /Unlock token(.*)invalid/
|
61
|
+
end
|
62
|
+
|
63
|
+
test "locked user should be able to unlock account" do
|
64
|
+
user = create_user(:locked => true)
|
65
|
+
assert user.access_locked?
|
66
|
+
|
67
|
+
visit_user_unlock_with_token(user.unlock_token)
|
68
|
+
|
69
|
+
assert_current_url '/'
|
70
|
+
assert_contain 'Your account was successfully unlocked.'
|
71
|
+
|
72
|
+
assert_not user.reload.access_locked?
|
73
|
+
end
|
74
|
+
|
75
|
+
test "sign in user automatically after unlocking it's account" do
|
76
|
+
user = create_user(:locked => true)
|
77
|
+
visit_user_unlock_with_token(user.unlock_token)
|
78
|
+
assert warden.authenticated?(:user)
|
79
|
+
end
|
80
|
+
|
81
|
+
test "user should not be able to sign in when locked" do
|
82
|
+
user = sign_in_as_user(:locked => true)
|
83
|
+
assert_template 'sessions/new'
|
84
|
+
assert_contain 'Your account is locked.'
|
85
|
+
assert_not warden.authenticated?(:user)
|
86
|
+
end
|
87
|
+
|
88
|
+
test "user should not send a new e-mail if already locked" do
|
89
|
+
user = create_user(:locked => true)
|
90
|
+
user.failed_attempts = User.maximum_attempts + 1
|
91
|
+
user.save!
|
92
|
+
|
93
|
+
ActionMailer::Base.deliveries.clear
|
94
|
+
|
95
|
+
sign_in_as_user(:password => "invalid")
|
96
|
+
assert_contain 'Your account is locked.'
|
97
|
+
assert ActionMailer::Base.deliveries.empty?
|
98
|
+
end
|
99
|
+
|
100
|
+
test 'error message is configurable by resource name' do
|
101
|
+
store_translations :en, :devise => {
|
102
|
+
:failure => { :user => { :locked => "You are locked!" } }
|
103
|
+
} do
|
104
|
+
user = sign_in_as_user(:locked => true)
|
105
|
+
assert_contain 'You are locked!'
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
@@ -0,0 +1,244 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class OAuthableIntegrationTest < ActionController::IntegrationTest
|
4
|
+
FACEBOOK_INFO = {
|
5
|
+
:username => 'usertest',
|
6
|
+
:email => 'user@test.com'
|
7
|
+
}
|
8
|
+
|
9
|
+
ACCESS_TOKEN = {
|
10
|
+
:access_token => "plataformatec"
|
11
|
+
}
|
12
|
+
|
13
|
+
setup do
|
14
|
+
Devise::Oauth.short_circuit_authorizers!
|
15
|
+
end
|
16
|
+
|
17
|
+
teardown do
|
18
|
+
Devise::Oauth.unshort_circuit_authorizers!
|
19
|
+
Devise::Oauth.reset_stubs!
|
20
|
+
User.singleton_class.remove_possible_method(:find_for_github_oauth)
|
21
|
+
end
|
22
|
+
|
23
|
+
def stub_github!
|
24
|
+
def User.find_for_github_oauth(*); end
|
25
|
+
|
26
|
+
Devise::Oauth.stub!(:github) do |b|
|
27
|
+
b.post('/login/oauth/access_token') { [200, {}, ACCESS_TOKEN.to_json] }
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def stub_facebook!(valid=true)
|
32
|
+
data = valid ? FACEBOOK_INFO : FACEBOOK_INFO.except(:email)
|
33
|
+
|
34
|
+
Devise::Oauth.stub!(:facebook) do |b|
|
35
|
+
b.post('/oauth/access_token') { [200, {}, ACCESS_TOKEN.to_json] }
|
36
|
+
b.get('/me?access_token=plataformatec') { [200, {}, data.to_json] }
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
test "[BASIC] setup with persisted user" do
|
41
|
+
stub_facebook!
|
42
|
+
|
43
|
+
assert_difference "User.count", 1 do
|
44
|
+
visit "/users/sign_in"
|
45
|
+
click_link "Sign in with Facebook"
|
46
|
+
end
|
47
|
+
|
48
|
+
assert_current_url "/"
|
49
|
+
assert_contain "Successfully authorized from Facebook account."
|
50
|
+
|
51
|
+
assert warden.authenticated?(:user)
|
52
|
+
assert_not warden.authenticated?(:admin)
|
53
|
+
assert "plataformatec", warden.user(:user).facebook_token
|
54
|
+
end
|
55
|
+
|
56
|
+
test "[BASIC] setup with not persisted user and follow up" do
|
57
|
+
stub_facebook!(false)
|
58
|
+
|
59
|
+
assert_no_difference "User.count" do
|
60
|
+
visit "/users/sign_in"
|
61
|
+
click_link "Sign in with Facebook"
|
62
|
+
end
|
63
|
+
|
64
|
+
assert_contain "1 error prohibited this user from being saved"
|
65
|
+
assert_contain "Email can't be blank"
|
66
|
+
|
67
|
+
assert_not warden.authenticated?(:user)
|
68
|
+
assert_not warden.authenticated?(:admin)
|
69
|
+
|
70
|
+
fill_in "Email", :with => "user.form@test.com"
|
71
|
+
click_button "Sign up"
|
72
|
+
|
73
|
+
assert_current_url "/"
|
74
|
+
assert_contain "You have signed up successfully."
|
75
|
+
assert_contain "Hello User user.form@test.com"
|
76
|
+
|
77
|
+
assert warden.authenticated?(:user)
|
78
|
+
assert_not warden.authenticated?(:admin)
|
79
|
+
assert "plataformatec", warden.user(:user).facebook_token
|
80
|
+
end
|
81
|
+
|
82
|
+
test "[BASIC] setup updating an existing user in database" do
|
83
|
+
stub_facebook!
|
84
|
+
user = create_user
|
85
|
+
|
86
|
+
assert_no_difference "User.count" do
|
87
|
+
visit "/users/sign_in"
|
88
|
+
click_link "Sign in with Facebook"
|
89
|
+
end
|
90
|
+
|
91
|
+
assert_current_url "/"
|
92
|
+
assert_contain "Successfully authorized from Facebook account."
|
93
|
+
|
94
|
+
assert_equal user, warden.user(:user)
|
95
|
+
assert_equal "plataformatec", user.reload.facebook_token
|
96
|
+
end
|
97
|
+
|
98
|
+
test "[BASIC] setup updating an existing user in session" do
|
99
|
+
stub_facebook!
|
100
|
+
|
101
|
+
# Create an user and change his e-mail
|
102
|
+
user = sign_in_as_user
|
103
|
+
user.email = "another@test.com"
|
104
|
+
user.save!
|
105
|
+
|
106
|
+
assert_no_difference "User.count" do
|
107
|
+
visit "/"
|
108
|
+
click_link "Sign in with Facebook"
|
109
|
+
end
|
110
|
+
|
111
|
+
assert_current_url "/"
|
112
|
+
assert_contain "Successfully authorized from Facebook account."
|
113
|
+
|
114
|
+
assert_equal user, warden.user(:user)
|
115
|
+
assert_equal "another@test.com", warden.user(:user).email
|
116
|
+
assert_equal "plataformatec", user.reload.facebook_token
|
117
|
+
end
|
118
|
+
|
119
|
+
test "[SESSION CLEANUP] ensures session is cleaned up after sign up" do
|
120
|
+
stub_facebook!(false)
|
121
|
+
|
122
|
+
assert_no_difference "User.count" do
|
123
|
+
visit "/users/sign_in"
|
124
|
+
click_link "Sign in with Facebook"
|
125
|
+
end
|
126
|
+
|
127
|
+
assert_contain "1 error prohibited this user from being saved"
|
128
|
+
fill_in "Email", :with => "user.form@test.com"
|
129
|
+
click_button "Sign up"
|
130
|
+
|
131
|
+
assert_contain "You have signed up successfully."
|
132
|
+
visit "/users/sign_out"
|
133
|
+
|
134
|
+
user = sign_in_as_user
|
135
|
+
assert_nil warden.user(:user).facebook_token
|
136
|
+
assert_equal user, warden.user(:user)
|
137
|
+
end
|
138
|
+
|
139
|
+
test "[SESSION CLEANUP] ensures session is cleaned up on cancel" do
|
140
|
+
stub_facebook!(false)
|
141
|
+
|
142
|
+
assert_no_difference "User.count" do
|
143
|
+
visit "/users/sign_in"
|
144
|
+
click_link "Sign in with Facebook"
|
145
|
+
end
|
146
|
+
|
147
|
+
assert_contain "1 error prohibited this user from being saved"
|
148
|
+
visit "/users/cancel"
|
149
|
+
|
150
|
+
user = sign_in_as_user
|
151
|
+
assert_nil warden.user(:user).facebook_token
|
152
|
+
assert_equal user, warden.user(:user)
|
153
|
+
end
|
154
|
+
|
155
|
+
test "[SESSION CLEANUP] ensures session is cleaned up on sign in" do
|
156
|
+
stub_facebook!(false)
|
157
|
+
|
158
|
+
assert_no_difference "User.count" do
|
159
|
+
visit "/users/sign_in"
|
160
|
+
click_link "Sign in with Facebook"
|
161
|
+
end
|
162
|
+
|
163
|
+
assert_contain "1 error prohibited this user from being saved"
|
164
|
+
|
165
|
+
user = sign_in_as_user
|
166
|
+
assert_nil warden.user(:user).facebook_token
|
167
|
+
assert_equal user, warden.user(:user)
|
168
|
+
end
|
169
|
+
|
170
|
+
test "[I18N] scopes messages based on oauth callback for success" do
|
171
|
+
stub_facebook!
|
172
|
+
|
173
|
+
store_translations :en, :devise => { :oauth_callbacks => {
|
174
|
+
:facebook => { :success => "Welcome facebooker" } } } do
|
175
|
+
visit "/users/sign_in"
|
176
|
+
click_link "Sign in with Facebook"
|
177
|
+
assert_contain "Welcome facebooker"
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
test "[I18N] scopes messages based on oauth callback and resource name for success" do
|
182
|
+
stub_facebook!
|
183
|
+
|
184
|
+
store_translations :en, :devise => { :oauth_callbacks => {
|
185
|
+
:user => { :facebook => { :success => "Welcome facebooker user" } },
|
186
|
+
:facebook => { :success => "Welcome facebooker" } } } do
|
187
|
+
visit "/users/sign_in"
|
188
|
+
click_link "Sign in with Facebook"
|
189
|
+
assert_contain "Welcome facebooker user"
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
test "[FAILURE] shows 404 if no code or error are given as params" do
|
194
|
+
assert_raise AbstractController::ActionNotFound do
|
195
|
+
visit "/users/oauth/facebook/callback"
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
test "[FAILURE] raises an error if model does not implement a hook" do
|
200
|
+
begin
|
201
|
+
visit "/users/oauth/github/callback?code=123456"
|
202
|
+
raise "Expected visit to raise an error"
|
203
|
+
rescue Exception => e
|
204
|
+
assert_match "User does not respond to find_for_github_oauth", e.message
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
test "[FAILURE] handles callback error parameter according to the specification" do
|
209
|
+
visit "/users/oauth/facebook/callback?error=access_denied"
|
210
|
+
assert_current_url "/users/sign_in"
|
211
|
+
assert_contain 'Could not authorize you from Facebook because "Access denied".'
|
212
|
+
end
|
213
|
+
|
214
|
+
test "[FAILURE] handles callback error_reason just for Facebook compatibility" do
|
215
|
+
visit "/users/oauth/facebook/callback?error_reason=access_denied"
|
216
|
+
assert_current_url "/users/sign_in"
|
217
|
+
assert_contain 'Could not authorize you from Facebook because "Access denied".'
|
218
|
+
end
|
219
|
+
|
220
|
+
test "[FAILURE][I18N] uses I18n for custom messages" do
|
221
|
+
visit "/users/oauth/facebook/callback?error=access_denied"
|
222
|
+
assert_current_url "/users/sign_in"
|
223
|
+
assert_contain 'Could not authorize you from Facebook because "Access denied"'
|
224
|
+
end
|
225
|
+
|
226
|
+
test "[FAILURE][I18N] uses I18n with oauth callback scope for custom messages" do
|
227
|
+
store_translations :en, :devise => { :oauth_callbacks => {
|
228
|
+
:facebook => { :failure => "Access denied bro" } } } do
|
229
|
+
visit "/users/oauth/facebook/callback?error=access_denied"
|
230
|
+
assert_current_url "/users/sign_in"
|
231
|
+
assert_contain "Access denied bro"
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
test "[FAILURE][I18N] uses I18n with oauth callback scope and resource name for custom messages" do
|
236
|
+
store_translations :en, :devise => { :oauth_callbacks => {
|
237
|
+
:user => { :facebook => { :failure => "Access denied user" } },
|
238
|
+
:facebook => { :failure => "Access denied bro" } } } do
|
239
|
+
visit "/users/oauth/facebook/callback?error=access_denied"
|
240
|
+
assert_current_url "/users/sign_in"
|
241
|
+
assert_contain "Access denied user"
|
242
|
+
end
|
243
|
+
end
|
244
|
+
end
|