deviseOne 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.travis.yml +38 -0
- data/.yardopts +9 -0
- data/CHANGELOG.md +1117 -0
- data/CONTRIBUTING.md +14 -0
- data/Gemfile +29 -0
- data/Gemfile.lock +199 -0
- data/MIT-LICENSE +20 -0
- data/README.md +529 -0
- data/Rakefile +35 -0
- data/app/controllers/devise/confirmations_controller.rb +47 -0
- data/app/controllers/devise/omniauth_callbacks_controller.rb +30 -0
- data/app/controllers/devise/passwords_controller.rb +71 -0
- data/app/controllers/devise/registrations_controller.rb +143 -0
- data/app/controllers/devise/sessions_controller.rb +166 -0
- data/app/controllers/devise/unlocks_controller.rb +46 -0
- data/app/controllers/devise_controller.rb +193 -0
- data/app/helpers/devise_helper.rb +25 -0
- data/app/mailers/devise/mailer.rb +20 -0
- data/app/views/devise/confirmations/new.html.erb +16 -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 +25 -0
- data/app/views/devise/passwords/new.html.erb +16 -0
- data/app/views/devise/registrations/edit.html.erb +39 -0
- data/app/views/devise/registrations/new.html.erb +29 -0
- data/app/views/devise/sessions/new.html.erb +27 -0
- data/app/views/devise/shared/_links.html.erb +21 -0
- data/app/views/devise/unlocks/new.html.erb +16 -0
- data/config/locales/en.yml +70 -0
- data/devise.gemspec +33 -0
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-3.2-stable +29 -0
- data/gemfiles/Gemfile.rails-3.2-stable.lock +169 -0
- data/gemfiles/Gemfile.rails-4.0-stable +29 -0
- data/gemfiles/Gemfile.rails-4.0-stable.lock +165 -0
- data/gemfiles/Gemfile.rails-4.1-stable +29 -0
- data/gemfiles/Gemfile.rails-4.1-stable.lock +170 -0
- data/lib/devise.rb +499 -0
- data/lib/devise/controllers/helpers.rb +284 -0
- data/lib/devise/controllers/rememberable.rb +47 -0
- data/lib/devise/controllers/scoped_views.rb +17 -0
- data/lib/devise/controllers/sign_in_out.rb +102 -0
- data/lib/devise/controllers/store_location.rb +58 -0
- data/lib/devise/controllers/url_helpers.rb +69 -0
- data/lib/devise/delegator.rb +16 -0
- data/lib/devise/failure_app.rb +212 -0
- data/lib/devise/hooks/activatable.rb +10 -0
- data/lib/devise/hooks/csrf_cleaner.rb +7 -0
- data/lib/devise/hooks/forgetable.rb +9 -0
- data/lib/devise/hooks/lockable.rb +7 -0
- data/lib/devise/hooks/proxy.rb +21 -0
- data/lib/devise/hooks/rememberable.rb +7 -0
- data/lib/devise/hooks/timeoutable.rb +35 -0
- data/lib/devise/hooks/trackable.rb +9 -0
- data/lib/devise/mailers/helpers.rb +90 -0
- data/lib/devise/mapping.rb +175 -0
- data/lib/devise/models.rb +119 -0
- data/lib/devise/models/authenticatable.rb +290 -0
- data/lib/devise/models/confirmable.rb +305 -0
- data/lib/devise/models/database_authenticatable.rb +164 -0
- data/lib/devise/models/lockable.rb +196 -0
- data/lib/devise/models/omniauthable.rb +27 -0
- data/lib/devise/models/recoverable.rb +157 -0
- data/lib/devise/models/registerable.rb +25 -0
- data/lib/devise/models/rememberable.rb +142 -0
- data/lib/devise/models/timeoutable.rb +49 -0
- data/lib/devise/models/trackable.rb +38 -0
- data/lib/devise/models/validatable.rb +66 -0
- data/lib/devise/modules.rb +28 -0
- data/lib/devise/omniauth.rb +28 -0
- data/lib/devise/omniauth/config.rb +45 -0
- data/lib/devise/omniauth/url_helpers.rb +18 -0
- data/lib/devise/orm/active_record.rb +3 -0
- data/lib/devise/orm/mongoid.rb +3 -0
- data/lib/devise/parameter_filter.rb +40 -0
- data/lib/devise/parameter_sanitizer.rb +99 -0
- data/lib/devise/rails.rb +56 -0
- data/lib/devise/rails/routes.rb +495 -0
- data/lib/devise/rails/warden_compat.rb +22 -0
- data/lib/devise/strategies/authenticatable.rb +173 -0
- data/lib/devise/strategies/base.rb +20 -0
- data/lib/devise/strategies/database_authenticatable.rb +24 -0
- data/lib/devise/strategies/rememberable.rb +59 -0
- data/lib/devise/test_helpers.rb +132 -0
- data/lib/devise/time_inflector.rb +14 -0
- data/lib/devise/token_generator.rb +70 -0
- data/lib/devise/version.rb +3 -0
- data/lib/generators/active_record/devise_generator.rb +91 -0
- data/lib/generators/active_record/templates/migration.rb +18 -0
- data/lib/generators/active_record/templates/migration_existing.rb +25 -0
- data/lib/generators/devise/controllers_generator.rb +44 -0
- data/lib/generators/devise/devise_generator.rb +26 -0
- data/lib/generators/devise/install_generator.rb +29 -0
- data/lib/generators/devise/orm_helpers.rb +51 -0
- data/lib/generators/devise/views_generator.rb +135 -0
- data/lib/generators/mongoid/devise_generator.rb +55 -0
- data/lib/generators/templates/README +35 -0
- data/lib/generators/templates/controllers/README +14 -0
- data/lib/generators/templates/controllers/confirmations_controller.rb +28 -0
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +28 -0
- data/lib/generators/templates/controllers/passwords_controller.rb +32 -0
- data/lib/generators/templates/controllers/registrations_controller.rb +60 -0
- data/lib/generators/templates/controllers/sessions_controller.rb +25 -0
- data/lib/generators/templates/controllers/unlocks_controller.rb +28 -0
- data/lib/generators/templates/devise.rb +263 -0
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +5 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +8 -0
- data/lib/generators/templates/markerb/unlock_instructions.markerb +7 -0
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +16 -0
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +19 -0
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +15 -0
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +27 -0
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +17 -0
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +15 -0
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +16 -0
- data/script/cached-bundle +49 -0
- data/script/s3-put +71 -0
- data/test/controllers/custom_registrations_controller_test.rb +35 -0
- data/test/controllers/custom_strategy_test.rb +62 -0
- data/test/controllers/helpers_test.rb +316 -0
- data/test/controllers/internal_helpers_test.rb +129 -0
- data/test/controllers/load_hooks_controller_test.rb +19 -0
- data/test/controllers/passwords_controller_test.rb +31 -0
- data/test/controllers/sessions_controller_test.rb +102 -0
- data/test/controllers/url_helpers_test.rb +65 -0
- data/test/delegator_test.rb +19 -0
- data/test/devise_test.rb +107 -0
- data/test/failure_app_test.rb +275 -0
- data/test/generators/active_record_generator_test.rb +109 -0
- data/test/generators/controllers_generator_test.rb +48 -0
- data/test/generators/devise_generator_test.rb +39 -0
- data/test/generators/install_generator_test.rb +13 -0
- data/test/generators/mongoid_generator_test.rb +23 -0
- data/test/generators/views_generator_test.rb +96 -0
- data/test/helpers/devise_helper_test.rb +49 -0
- data/test/integration/authenticatable_test.rb +731 -0
- data/test/integration/confirmable_test.rb +324 -0
- data/test/integration/database_authenticatable_test.rb +94 -0
- data/test/integration/http_authenticatable_test.rb +105 -0
- data/test/integration/lockable_test.rb +239 -0
- data/test/integration/omniauthable_test.rb +133 -0
- data/test/integration/recoverable_test.rb +334 -0
- data/test/integration/registerable_test.rb +361 -0
- data/test/integration/rememberable_test.rb +176 -0
- data/test/integration/timeoutable_test.rb +189 -0
- data/test/integration/trackable_test.rb +92 -0
- data/test/mailers/confirmation_instructions_test.rb +115 -0
- data/test/mailers/reset_password_instructions_test.rb +96 -0
- data/test/mailers/unlock_instructions_test.rb +91 -0
- data/test/mapping_test.rb +128 -0
- data/test/models/authenticatable_test.rb +23 -0
- data/test/models/confirmable_test.rb +461 -0
- data/test/models/database_authenticatable_test.rb +249 -0
- data/test/models/lockable_test.rb +328 -0
- data/test/models/omniauthable_test.rb +7 -0
- data/test/models/recoverable_test.rb +205 -0
- data/test/models/registerable_test.rb +7 -0
- data/test/models/rememberable_test.rb +198 -0
- data/test/models/serializable_test.rb +49 -0
- data/test/models/timeoutable_test.rb +51 -0
- data/test/models/trackable_test.rb +41 -0
- data/test/models/validatable_test.rb +127 -0
- data/test/models_test.rb +144 -0
- data/test/omniauth/config_test.rb +57 -0
- data/test/omniauth/url_helpers_test.rb +54 -0
- data/test/orm/active_record.rb +10 -0
- data/test/orm/mongoid.rb +13 -0
- data/test/parameter_sanitizer_test.rb +81 -0
- data/test/rails_app/Rakefile +6 -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 +6 -0
- data/test/rails_app/app/active_record/user_on_engine.rb +7 -0
- data/test/rails_app/app/active_record/user_on_main_app.rb +7 -0
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +6 -0
- data/test/rails_app/app/controllers/admins_controller.rb +11 -0
- data/test/rails_app/app/controllers/application_controller.rb +12 -0
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +30 -0
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +21 -0
- data/test/rails_app/app/controllers/home_controller.rb +25 -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/omniauth_callbacks_controller.rb +14 -0
- data/test/rails_app/app/controllers/users_controller.rb +31 -0
- data/test/rails_app/app/helpers/application_helper.rb +3 -0
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +3 -0
- data/test/rails_app/app/mailers/users/mailer.rb +3 -0
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +4 -0
- data/test/rails_app/app/mongoid/admin.rb +29 -0
- data/test/rails_app/app/mongoid/shim.rb +23 -0
- data/test/rails_app/app/mongoid/user.rb +39 -0
- data/test/rails_app/app/mongoid/user_on_engine.rb +39 -0
- data/test/rails_app/app/mongoid/user_on_main_app.rb +39 -0
- data/test/rails_app/app/views/admins/index.html.erb +1 -0
- data/test/rails_app/app/views/admins/sessions/new.html.erb +2 -0
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +1 -0
- data/test/rails_app/app/views/home/index.html.erb +1 -0
- data/test/rails_app/app/views/home/join.html.erb +1 -0
- data/test/rails_app/app/views/home/private.html.erb +1 -0
- data/test/rails_app/app/views/home/user_dashboard.html.erb +1 -0
- data/test/rails_app/app/views/layouts/application.html.erb +24 -0
- data/test/rails_app/app/views/users/edit_form.html.erb +1 -0
- data/test/rails_app/app/views/users/index.html.erb +1 -0
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +1 -0
- data/test/rails_app/app/views/users/sessions/new.html.erb +1 -0
- data/test/rails_app/bin/bundle +3 -0
- data/test/rails_app/bin/rails +4 -0
- data/test/rails_app/bin/rake +4 -0
- data/test/rails_app/config.ru +4 -0
- data/test/rails_app/config/application.rb +40 -0
- data/test/rails_app/config/boot.rb +14 -0
- data/test/rails_app/config/database.yml +18 -0
- data/test/rails_app/config/environment.rb +5 -0
- data/test/rails_app/config/environments/development.rb +30 -0
- data/test/rails_app/config/environments/production.rb +80 -0
- data/test/rails_app/config/environments/test.rb +36 -0
- data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_app/config/initializers/devise.rb +180 -0
- data/test/rails_app/config/initializers/inflections.rb +2 -0
- data/test/rails_app/config/initializers/secret_token.rb +8 -0
- data/test/rails_app/config/initializers/session_store.rb +1 -0
- data/test/rails_app/config/routes.rb +122 -0
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +71 -0
- data/test/rails_app/db/schema.rb +55 -0
- data/test/rails_app/lib/shared_admin.rb +17 -0
- data/test/rails_app/lib/shared_user.rb +29 -0
- data/test/rails_app/lib/shared_user_without_omniauth.rb +13 -0
- data/test/rails_app/public/404.html +26 -0
- data/test/rails_app/public/422.html +26 -0
- data/test/rails_app/public/500.html +26 -0
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/routes_test.rb +264 -0
- data/test/support/action_controller/record_identifier.rb +10 -0
- data/test/support/assertions.rb +39 -0
- data/test/support/helpers.rb +73 -0
- data/test/support/integration.rb +92 -0
- data/test/support/locale/en.yml +8 -0
- data/test/support/mongoid.yml +6 -0
- data/test/support/webrat/integrations/rails.rb +24 -0
- data/test/test_helper.rb +34 -0
- data/test/test_helpers_test.rb +163 -0
- data/test/test_models.rb +33 -0
- metadata +531 -0
@@ -0,0 +1,324 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class ConfirmationTest < ActionDispatch::IntegrationTest
|
4
|
+
|
5
|
+
def visit_user_confirmation_with_token(confirmation_token)
|
6
|
+
visit user_confirmation_path(confirmation_token: confirmation_token)
|
7
|
+
end
|
8
|
+
|
9
|
+
def resend_confirmation
|
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
|
+
end
|
19
|
+
|
20
|
+
test 'user should be able to request a new confirmation' do
|
21
|
+
resend_confirmation
|
22
|
+
|
23
|
+
assert_current_url '/users/sign_in'
|
24
|
+
assert_contain 'You will receive an email with instructions for how to confirm your email address in a few minutes'
|
25
|
+
assert_equal 1, ActionMailer::Base.deliveries.size
|
26
|
+
assert_equal ['please-change-me@config-initializers-devise.com'], ActionMailer::Base.deliveries.first.from
|
27
|
+
end
|
28
|
+
|
29
|
+
test 'user should receive a confirmation from a custom mailer' do
|
30
|
+
User.any_instance.stubs(:devise_mailer).returns(Users::Mailer)
|
31
|
+
resend_confirmation
|
32
|
+
assert_equal ['custom@example.com'], ActionMailer::Base.deliveries.first.from
|
33
|
+
end
|
34
|
+
|
35
|
+
test 'user with invalid confirmation token should not be able to confirm an account' do
|
36
|
+
visit_user_confirmation_with_token('invalid_confirmation')
|
37
|
+
assert_have_selector '#error_explanation'
|
38
|
+
assert_contain /Confirmation token(.*)invalid/
|
39
|
+
end
|
40
|
+
|
41
|
+
test 'user with valid confirmation token should not be able to confirm an account after the token has expired' do
|
42
|
+
swap Devise, confirm_within: 3.days do
|
43
|
+
user = create_user(confirm: false, confirmation_sent_at: 4.days.ago)
|
44
|
+
assert_not user.confirmed?
|
45
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
46
|
+
|
47
|
+
assert_have_selector '#error_explanation'
|
48
|
+
assert_contain /needs to be confirmed within 3 days/
|
49
|
+
assert_not user.reload.confirmed?
|
50
|
+
assert_current_url "/users/confirmation?confirmation_token=#{user.raw_confirmation_token}"
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
test 'user with valid confirmation token where the token has expired and with application router_name set to a different engine it should raise an error' do
|
55
|
+
user = create_user(confirm: false, confirmation_sent_at: 4.days.ago)
|
56
|
+
|
57
|
+
swap Devise, confirm_within: 3.days, router_name: :fake_engine do
|
58
|
+
assert_raise ActionView::Template::Error do
|
59
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
test 'user with valid confirmation token where the token has expired and with application router_name set to a different engine and route overrides back to main it shows the path' do
|
65
|
+
user = create_user(confirm: false, confirmation_sent_at: 4.days.ago)
|
66
|
+
|
67
|
+
swap Devise, confirm_within: 3.days, router_name: :fake_engine do
|
68
|
+
visit user_on_main_app_confirmation_path(confirmation_token: user.raw_confirmation_token)
|
69
|
+
|
70
|
+
assert_current_url "/user_on_main_apps/confirmation?confirmation_token=#{user.raw_confirmation_token}"
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
test 'user with valid confirmation token where the token has expired with router overrides different engine it shows the path' do
|
75
|
+
user = create_user(confirm: false, confirmation_sent_at: 4.days.ago)
|
76
|
+
|
77
|
+
swap Devise, confirm_within: 3.days do
|
78
|
+
visit user_on_engine_confirmation_path(confirmation_token: user.raw_confirmation_token)
|
79
|
+
|
80
|
+
assert_current_url "/user_on_engines/confirmation?confirmation_token=#{user.raw_confirmation_token}"
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
test 'user with valid confirmation token should be able to confirm an account before the token has expired' do
|
85
|
+
swap Devise, confirm_within: 3.days do
|
86
|
+
user = create_user(confirm: false, confirmation_sent_at: 2.days.ago)
|
87
|
+
assert_not user.confirmed?
|
88
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
89
|
+
|
90
|
+
assert_contain 'Your email address has been successfully confirmed.'
|
91
|
+
assert_current_url '/users/sign_in'
|
92
|
+
assert user.reload.confirmed?
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
test 'user should be redirected to a custom path after confirmation' do
|
97
|
+
Devise::ConfirmationsController.any_instance.stubs(:after_confirmation_path_for).returns("/?custom=1")
|
98
|
+
|
99
|
+
user = create_user(confirm: false)
|
100
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
101
|
+
|
102
|
+
assert_current_url "/?custom=1"
|
103
|
+
end
|
104
|
+
|
105
|
+
test 'already confirmed user should not be able to confirm the account again' do
|
106
|
+
user = create_user(confirm: false)
|
107
|
+
user.confirmed_at = Time.now
|
108
|
+
user.save
|
109
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
110
|
+
|
111
|
+
assert_have_selector '#error_explanation'
|
112
|
+
assert_contain 'already confirmed'
|
113
|
+
end
|
114
|
+
|
115
|
+
test 'already confirmed user should not be able to confirm the account again neither request confirmation' do
|
116
|
+
user = create_user(confirm: false)
|
117
|
+
user.confirmed_at = Time.now
|
118
|
+
user.save
|
119
|
+
|
120
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
121
|
+
assert_contain 'already confirmed'
|
122
|
+
|
123
|
+
fill_in 'email', with: user.email
|
124
|
+
click_button 'Resend confirmation instructions'
|
125
|
+
assert_contain 'already confirmed'
|
126
|
+
end
|
127
|
+
|
128
|
+
test 'not confirmed user with setup to block without confirmation should not be able to sign in' do
|
129
|
+
swap Devise, allow_unconfirmed_access_for: 0.days do
|
130
|
+
sign_in_as_user(confirm: false)
|
131
|
+
|
132
|
+
assert_contain 'You have to confirm your email address before continuing'
|
133
|
+
assert_not warden.authenticated?(:user)
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
test 'not confirmed user should not see confirmation message if invalid password is given' do
|
138
|
+
swap Devise, allow_unconfirmed_access_for: 0.days do
|
139
|
+
sign_in_as_user(confirm: false) do
|
140
|
+
fill_in 'password', with: 'invalid'
|
141
|
+
end
|
142
|
+
|
143
|
+
assert_contain 'Please verify your password'
|
144
|
+
assert_not warden.authenticated?(:user)
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
test 'not confirmed user but configured with some days to confirm should be able to sign in' do
|
149
|
+
swap Devise, allow_unconfirmed_access_for: 1.day do
|
150
|
+
sign_in_as_user(confirm: false)
|
151
|
+
|
152
|
+
assert_response :success
|
153
|
+
assert warden.authenticated?(:user)
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
test 'unconfirmed but signed in user should be redirected to their root path' do
|
158
|
+
swap Devise, allow_unconfirmed_access_for: 1.day do
|
159
|
+
user = sign_in_as_user(confirm: false)
|
160
|
+
|
161
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
162
|
+
assert_contain 'Your email address has been successfully confirmed.'
|
163
|
+
assert_current_url '/'
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
test 'user should be redirected to sign in page whenever signed in as another resource at same session already' do
|
168
|
+
sign_in_as_admin
|
169
|
+
|
170
|
+
user = create_user(confirm: false)
|
171
|
+
visit_user_confirmation_with_token(user.raw_confirmation_token)
|
172
|
+
|
173
|
+
assert_current_url '/users/sign_in'
|
174
|
+
end
|
175
|
+
|
176
|
+
test 'error message is configurable by resource name' do
|
177
|
+
store_translations :en, devise: {
|
178
|
+
failure: { user: { unconfirmed: "Not confirmed user" } }
|
179
|
+
} do
|
180
|
+
sign_in_as_user(confirm: false)
|
181
|
+
assert_contain 'Not confirmed user'
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
test 'resent confirmation token with valid E-Mail in XML format should return valid response' do
|
186
|
+
user = create_user(confirm: false)
|
187
|
+
post user_confirmation_path(format: 'xml'), user: { email: user.email }
|
188
|
+
assert_response :success
|
189
|
+
assert_equal response.body, {}.to_xml
|
190
|
+
end
|
191
|
+
|
192
|
+
test 'resent confirmation token with invalid E-Mail in XML format should return invalid response' do
|
193
|
+
create_user(confirm: false)
|
194
|
+
post user_confirmation_path(format: 'xml'), user: { email: 'invalid.test@test.com' }
|
195
|
+
assert_response :unprocessable_entity
|
196
|
+
assert response.body.include? %(<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<errors>)
|
197
|
+
end
|
198
|
+
|
199
|
+
test 'confirm account with valid confirmation token in XML format should return valid response' do
|
200
|
+
user = create_user(confirm: false)
|
201
|
+
get user_confirmation_path(confirmation_token: user.raw_confirmation_token, format: 'xml')
|
202
|
+
assert_response :success
|
203
|
+
assert response.body.include? %(<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<user>)
|
204
|
+
end
|
205
|
+
|
206
|
+
test 'confirm account with invalid confirmation token in XML format should return invalid response' do
|
207
|
+
create_user(confirm: false)
|
208
|
+
get user_confirmation_path(confirmation_token: 'invalid_confirmation', format: 'xml')
|
209
|
+
assert_response :unprocessable_entity
|
210
|
+
assert response.body.include? %(<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<errors>)
|
211
|
+
end
|
212
|
+
|
213
|
+
test 'request an account confirmation account with JSON, should return an empty JSON' do
|
214
|
+
user = create_user(confirm: false)
|
215
|
+
|
216
|
+
post user_confirmation_path, user: { email: user.email }, format: :json
|
217
|
+
assert_response :success
|
218
|
+
assert_equal response.body, {}.to_json
|
219
|
+
end
|
220
|
+
|
221
|
+
test "when in paranoid mode and with a valid e-mail, should not say that the e-mail is valid" do
|
222
|
+
swap Devise, paranoid: true do
|
223
|
+
user = create_user(confirm: false)
|
224
|
+
visit new_user_session_path
|
225
|
+
|
226
|
+
click_link "Didn't receive confirmation instructions?"
|
227
|
+
fill_in 'email', with: user.email
|
228
|
+
click_button 'Resend confirmation instructions'
|
229
|
+
|
230
|
+
assert_contain "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
|
231
|
+
assert_current_url "/users/sign_in"
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
test "when in paranoid mode and with a invalid e-mail, should not say that the e-mail is invalid" do
|
236
|
+
swap Devise, paranoid: true do
|
237
|
+
visit new_user_session_path
|
238
|
+
|
239
|
+
click_link "Didn't receive confirmation instructions?"
|
240
|
+
fill_in 'email', with: "idonthavethisemail@gmail.com"
|
241
|
+
click_button 'Resend confirmation instructions'
|
242
|
+
|
243
|
+
assert_not_contain "1 error prohibited this user from being saved:"
|
244
|
+
assert_not_contain "Email not found"
|
245
|
+
|
246
|
+
assert_contain "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
|
247
|
+
assert_current_url "/users/sign_in"
|
248
|
+
end
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
252
|
+
class ConfirmationOnChangeTest < ActionDispatch::IntegrationTest
|
253
|
+
def create_second_admin(options={})
|
254
|
+
@admin = nil
|
255
|
+
create_admin(options)
|
256
|
+
end
|
257
|
+
|
258
|
+
def visit_admin_confirmation_with_token(confirmation_token)
|
259
|
+
visit admin_confirmation_path(confirmation_token: confirmation_token)
|
260
|
+
end
|
261
|
+
|
262
|
+
test 'admin should be able to request a new confirmation after email changed' do
|
263
|
+
admin = create_admin
|
264
|
+
admin.update_attributes(email: 'new_test@example.com')
|
265
|
+
|
266
|
+
visit new_admin_session_path
|
267
|
+
click_link "Didn't receive confirmation instructions?"
|
268
|
+
|
269
|
+
fill_in 'email', with: admin.unconfirmed_email
|
270
|
+
assert_difference "ActionMailer::Base.deliveries.size" do
|
271
|
+
click_button 'Resend confirmation instructions'
|
272
|
+
end
|
273
|
+
|
274
|
+
assert_current_url '/admin_area/sign_in'
|
275
|
+
assert_contain 'You will receive an email with instructions for how to confirm your email address in a few minutes'
|
276
|
+
end
|
277
|
+
|
278
|
+
test 'admin with valid confirmation token should be able to confirm email after email changed' do
|
279
|
+
admin = create_admin
|
280
|
+
admin.update_attributes(email: 'new_test@example.com')
|
281
|
+
assert_equal 'new_test@example.com', admin.unconfirmed_email
|
282
|
+
visit_admin_confirmation_with_token(admin.raw_confirmation_token)
|
283
|
+
|
284
|
+
assert_contain 'Your email address has been successfully confirmed.'
|
285
|
+
assert_current_url '/admin_area/sign_in'
|
286
|
+
assert admin.reload.confirmed?
|
287
|
+
assert_not admin.reload.pending_reconfirmation?
|
288
|
+
end
|
289
|
+
|
290
|
+
test 'admin with previously valid confirmation token should not be able to confirm email after email changed again' do
|
291
|
+
admin = create_admin
|
292
|
+
admin.update_attributes(email: 'first_test@example.com')
|
293
|
+
assert_equal 'first_test@example.com', admin.unconfirmed_email
|
294
|
+
|
295
|
+
raw_confirmation_token = admin.raw_confirmation_token
|
296
|
+
admin = Admin.find(admin.id)
|
297
|
+
|
298
|
+
admin.update_attributes(email: 'second_test@example.com')
|
299
|
+
assert_equal 'second_test@example.com', admin.unconfirmed_email
|
300
|
+
|
301
|
+
visit_admin_confirmation_with_token(raw_confirmation_token)
|
302
|
+
assert_have_selector '#error_explanation'
|
303
|
+
assert_contain(/Confirmation token(.*)invalid/)
|
304
|
+
|
305
|
+
visit_admin_confirmation_with_token(admin.raw_confirmation_token)
|
306
|
+
assert_contain 'Your email address has been successfully confirmed.'
|
307
|
+
assert_current_url '/admin_area/sign_in'
|
308
|
+
assert admin.reload.confirmed?
|
309
|
+
assert_not admin.reload.pending_reconfirmation?
|
310
|
+
end
|
311
|
+
|
312
|
+
test 'admin email should be unique also within unconfirmed_email' do
|
313
|
+
admin = create_admin
|
314
|
+
admin.update_attributes(email: 'new_admin_test@example.com')
|
315
|
+
assert_equal 'new_admin_test@example.com', admin.unconfirmed_email
|
316
|
+
|
317
|
+
create_second_admin(email: "new_admin_test@example.com")
|
318
|
+
|
319
|
+
visit_admin_confirmation_with_token(admin.raw_confirmation_token)
|
320
|
+
assert_have_selector '#error_explanation'
|
321
|
+
assert_contain(/Email.*already.*taken/)
|
322
|
+
assert admin.reload.pending_reconfirmation?
|
323
|
+
end
|
324
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class DatabaseAuthenticationTest < ActionDispatch::IntegrationTest
|
4
|
+
test 'sign in with email of different case should succeed when email is in the list of case insensitive keys' do
|
5
|
+
create_user(email: 'Foo@Bar.com')
|
6
|
+
|
7
|
+
sign_in_as_user do
|
8
|
+
fill_in 'email', with: 'foo@bar.com'
|
9
|
+
end
|
10
|
+
|
11
|
+
assert warden.authenticated?(:user)
|
12
|
+
end
|
13
|
+
|
14
|
+
test 'sign in with email of different case should fail when email is NOT the list of case insensitive keys' do
|
15
|
+
swap Devise, case_insensitive_keys: [] do
|
16
|
+
create_user(email: 'Foo@Bar.com')
|
17
|
+
|
18
|
+
sign_in_as_user do
|
19
|
+
fill_in 'email', with: 'foo@bar.com'
|
20
|
+
end
|
21
|
+
|
22
|
+
assert_not warden.authenticated?(:user)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
test 'sign in with email including extra spaces should succeed when email is in the list of strip whitespace keys' do
|
27
|
+
create_user(email: ' foo@bar.com ')
|
28
|
+
|
29
|
+
sign_in_as_user do
|
30
|
+
fill_in 'email', with: 'foo@bar.com'
|
31
|
+
end
|
32
|
+
|
33
|
+
assert warden.authenticated?(:user)
|
34
|
+
end
|
35
|
+
|
36
|
+
test 'sign in with email including extra spaces should fail when email is NOT the list of strip whitespace keys' do
|
37
|
+
swap Devise, strip_whitespace_keys: [] do
|
38
|
+
create_user(email: 'foo@bar.com')
|
39
|
+
|
40
|
+
sign_in_as_user do
|
41
|
+
fill_in 'email', with: ' foo@bar.com '
|
42
|
+
end
|
43
|
+
|
44
|
+
assert_not warden.authenticated?(:user)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
test 'sign in should not authenticate if not using proper authentication keys' do
|
49
|
+
swap Devise, authentication_keys: [:username] do
|
50
|
+
sign_in_as_user
|
51
|
+
assert_not warden.authenticated?(:user)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
test 'sign in with new valid email should signed up and display welcome message after sign in' do
|
56
|
+
store_translations :en, devise: { sessions: { signed_up: 'Welcome! You have signed up successfully.' } } do
|
57
|
+
sign_in_as_admin do
|
58
|
+
fill_in 'email', with: 'newvalidemail@test.com'
|
59
|
+
end
|
60
|
+
|
61
|
+
assert_contain 'Welcome! You have signed up successfully.'
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
test 'sign in with invalid pasword should return to sign in form with error message' do
|
66
|
+
sign_in_as_admin do
|
67
|
+
fill_in 'password', with: 'abcdef'
|
68
|
+
end
|
69
|
+
|
70
|
+
assert_contain 'Invalid email or password'
|
71
|
+
assert_not warden.authenticated?(:admin)
|
72
|
+
end
|
73
|
+
|
74
|
+
test 'error message is configurable by resource name' do
|
75
|
+
store_translations :en, devise: { failure: { admin: { invalid: "Invalid credentials" } } } do
|
76
|
+
sign_in_as_admin do
|
77
|
+
fill_in 'password', with: 'abcdef'
|
78
|
+
end
|
79
|
+
|
80
|
+
assert_contain 'Invalid credentials'
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
test 'valid sign in calls after_database_authentication callback' do
|
85
|
+
user = create_user(email: ' foo@bar.com ')
|
86
|
+
|
87
|
+
User.expects(:find_for_database_authentication).returns user
|
88
|
+
user.expects :after_database_authentication
|
89
|
+
|
90
|
+
sign_in_as_user do
|
91
|
+
fill_in 'email', with: 'foo@bar.com'
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class HttpAuthenticationTest < ActionDispatch::IntegrationTest
|
4
|
+
test 'handles unverified requests gets rid of caches but continues signed in' do
|
5
|
+
swap ApplicationController, allow_forgery_protection: true do
|
6
|
+
create_user
|
7
|
+
post exhibit_user_url(1), {}, "HTTP_AUTHORIZATION" => "Basic #{Base64.encode64("user@test.com:12345678")}"
|
8
|
+
assert warden.authenticated?(:user)
|
9
|
+
assert_equal "User is authenticated", response.body
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
test 'sign in should authenticate with http' do
|
14
|
+
sign_in_as_new_user_with_http
|
15
|
+
assert_response 200
|
16
|
+
assert_match '<email>user@test.com</email>', response.body
|
17
|
+
assert warden.authenticated?(:user)
|
18
|
+
|
19
|
+
get users_path(format: :xml)
|
20
|
+
assert_response 200
|
21
|
+
end
|
22
|
+
|
23
|
+
test 'sign in should authenticate with http but not emit a cookie if skipping session storage' do
|
24
|
+
swap Devise, skip_session_storage: [:http_auth] do
|
25
|
+
sign_in_as_new_user_with_http
|
26
|
+
assert_response 200
|
27
|
+
assert_match '<email>user@test.com</email>', response.body
|
28
|
+
assert warden.authenticated?(:user)
|
29
|
+
|
30
|
+
get users_path(format: :xml)
|
31
|
+
assert_response 401
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
test 'returns a custom response with www-authenticate header on failures' do
|
36
|
+
sign_in_as_new_user_with_http("unknown")
|
37
|
+
assert_equal 401, status
|
38
|
+
assert_equal 'Basic realm="Application"', headers["WWW-Authenticate"]
|
39
|
+
end
|
40
|
+
|
41
|
+
test 'uses the request format as response content type' do
|
42
|
+
sign_in_as_new_user_with_http("unknown")
|
43
|
+
assert_equal 401, status
|
44
|
+
assert_equal "application/xml; charset=utf-8", headers["Content-Type"]
|
45
|
+
assert_match "<error>Invalid email or password.</error>", response.body
|
46
|
+
end
|
47
|
+
|
48
|
+
test 'returns a custom response with www-authenticate and chosen realm' do
|
49
|
+
swap Devise, http_authentication_realm: "MyApp" do
|
50
|
+
sign_in_as_new_user_with_http("unknown")
|
51
|
+
assert_equal 401, status
|
52
|
+
assert_equal 'Basic realm="MyApp"', headers["WWW-Authenticate"]
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
test 'sign in should authenticate with http even with specific authentication keys' do
|
57
|
+
swap Devise, authentication_keys: [:username] do
|
58
|
+
sign_in_as_new_user_with_http("usertest")
|
59
|
+
assert_response :success
|
60
|
+
assert_match '<email>user@test.com</email>', response.body
|
61
|
+
assert warden.authenticated?(:user)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
test 'it uses appropriate authentication_keys when configured with hash' do
|
66
|
+
swap Devise, authentication_keys: ActiveSupport::OrderedHash[:username, false, :email, false] do
|
67
|
+
sign_in_as_new_user_with_http("usertest")
|
68
|
+
assert_response :success
|
69
|
+
assert_match '<email>user@test.com</email>', response.body
|
70
|
+
assert warden.authenticated?(:user)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
test 'it uses the appropriate key when configured explicitly' do
|
75
|
+
swap Devise, authentication_keys: ActiveSupport::OrderedHash[:email, false, :username, false], http_authentication_key: :username do
|
76
|
+
sign_in_as_new_user_with_http("usertest")
|
77
|
+
assert_response :success
|
78
|
+
assert_match '<email>user@test.com</email>', response.body
|
79
|
+
assert warden.authenticated?(:user)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
test 'test request with oauth2 header doesnt get mistaken for basic authentication' do
|
84
|
+
swap Devise, http_authenticatable: true do
|
85
|
+
add_oauth2_header
|
86
|
+
assert_equal 401, status
|
87
|
+
assert_equal 'Basic realm="Application"', headers["WWW-Authenticate"]
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
private
|
92
|
+
|
93
|
+
def sign_in_as_new_user_with_http(username="user@test.com", password="12345678")
|
94
|
+
user = create_user
|
95
|
+
get users_path(format: :xml), {}, "HTTP_AUTHORIZATION" => "Basic #{Base64.encode64("#{username}:#{password}")}"
|
96
|
+
user
|
97
|
+
end
|
98
|
+
|
99
|
+
# Sign in with oauth2 token. This is just to test that it isn't misinterpreted as basic authentication
|
100
|
+
def add_oauth2_header
|
101
|
+
user = create_user
|
102
|
+
get users_path(format: :xml), {}, "HTTP_AUTHORIZATION" => "OAuth #{Base64.encode64("#{user.email}:12345678")}"
|
103
|
+
end
|
104
|
+
|
105
|
+
end
|