devise 4.4.3 → 4.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +174 -4
- data/MIT-LICENSE +2 -1
- data/README.md +129 -65
- data/app/controllers/devise/confirmations_controller.rb +1 -0
- data/app/controllers/devise/passwords_controller.rb +3 -2
- data/app/controllers/devise/registrations_controller.rb +27 -9
- data/app/controllers/devise/sessions_controller.rb +2 -2
- data/app/controllers/devise/unlocks_controller.rb +1 -0
- data/app/controllers/devise_controller.rb +17 -3
- data/app/helpers/devise_helper.rb +21 -18
- data/app/mailers/devise/mailer.rb +5 -5
- data/app/views/devise/confirmations/new.html.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +3 -3
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/edit.html.erb +5 -5
- data/app/views/devise/registrations/new.html.erb +3 -3
- data/app/views/devise/sessions/new.html.erb +3 -3
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/_links.html.erb +8 -8
- data/app/views/devise/unlocks/new.html.erb +1 -1
- data/config/locales/en.yml +3 -2
- data/lib/devise/controllers/helpers.rb +10 -8
- data/lib/devise/controllers/responder.rb +35 -0
- data/lib/devise/controllers/sign_in_out.rb +9 -4
- data/lib/devise/controllers/url_helpers.rb +1 -1
- data/lib/devise/failure_app.rb +41 -8
- data/lib/devise/hooks/csrf_cleaner.rb +6 -1
- data/lib/devise/hooks/lockable.rb +2 -5
- data/lib/devise/hooks/timeoutable.rb +2 -2
- data/lib/devise/mapping.rb +1 -1
- data/lib/devise/models/authenticatable.rb +51 -48
- data/lib/devise/models/confirmable.rb +34 -40
- data/lib/devise/models/database_authenticatable.rb +54 -35
- data/lib/devise/models/lockable.rb +13 -5
- data/lib/devise/models/omniauthable.rb +2 -2
- data/lib/devise/models/recoverable.rb +8 -19
- data/lib/devise/models/registerable.rb +2 -0
- data/lib/devise/models/rememberable.rb +2 -2
- data/lib/devise/models/timeoutable.rb +1 -1
- data/lib/devise/models/trackable.rb +9 -2
- data/lib/devise/models/validatable.rb +4 -9
- data/lib/devise/models.rb +1 -0
- data/lib/devise/omniauth.rb +2 -5
- data/lib/devise/orm.rb +71 -0
- data/lib/devise/parameter_filter.rb +2 -0
- data/lib/devise/parameter_sanitizer.rb +13 -1
- data/lib/devise/rails/deprecated_constant_accessor.rb +39 -0
- data/lib/devise/rails/routes.rb +6 -6
- data/lib/devise/rails.rb +4 -0
- data/lib/devise/secret_key_finder.rb +2 -0
- data/lib/devise/strategies/authenticatable.rb +1 -1
- data/lib/devise/strategies/database_authenticatable.rb +6 -1
- data/lib/devise/test/controller_helpers.rb +5 -3
- data/lib/devise/test/integration_helpers.rb +1 -1
- data/lib/devise/test_helpers.rb +1 -1
- data/lib/devise/version.rb +1 -1
- data/lib/devise.rb +38 -11
- data/lib/generators/active_record/devise_generator.rb +26 -11
- data/lib/generators/devise/controllers_generator.rb +1 -1
- data/lib/generators/devise/devise_generator.rb +1 -1
- data/lib/generators/devise/install_generator.rb +1 -5
- data/lib/generators/devise/orm_helpers.rb +2 -2
- data/lib/generators/devise/views_generator.rb +1 -1
- data/lib/generators/mongoid/devise_generator.rb +5 -5
- data/lib/generators/templates/README +9 -1
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +1 -1
- data/lib/generators/templates/devise.rb +38 -8
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +5 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +10 -2
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +4 -1
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +12 -4
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +11 -3
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +7 -2
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +4 -1
- metadata +23 -316
- data/.gitignore +0 -10
- data/.travis.yml +0 -68
- data/.yardopts +0 -9
- data/CODE_OF_CONDUCT.md +0 -22
- data/CONTRIBUTING.md +0 -79
- data/Gemfile +0 -39
- data/Gemfile.lock +0 -193
- data/ISSUE_TEMPLATE.md +0 -19
- data/Rakefile +0 -37
- data/bin/test +0 -13
- data/devise.gemspec +0 -28
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-4.1-stable +0 -32
- data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -171
- data/gemfiles/Gemfile.rails-4.2-stable +0 -32
- data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.0-stable +0 -33
- data/gemfiles/Gemfile.rails-5.0-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.2-rc1 +0 -26
- data/gemfiles/Gemfile.rails-5.2-rc1.lock +0 -201
- data/guides/bug_report_templates/integration_test.rb +0 -106
- data/test/controllers/custom_registrations_controller_test.rb +0 -42
- data/test/controllers/custom_strategy_test.rb +0 -66
- data/test/controllers/helper_methods_test.rb +0 -24
- data/test/controllers/helpers_test.rb +0 -318
- data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -53
- data/test/controllers/internal_helpers_test.rb +0 -129
- data/test/controllers/load_hooks_controller_test.rb +0 -21
- data/test/controllers/passwords_controller_test.rb +0 -34
- data/test/controllers/sessions_controller_test.rb +0 -108
- data/test/controllers/url_helpers_test.rb +0 -67
- data/test/delegator_test.rb +0 -21
- data/test/devise_test.rb +0 -109
- data/test/failure_app_test.rb +0 -340
- data/test/generators/active_record_generator_test.rb +0 -130
- data/test/generators/controllers_generator_test.rb +0 -50
- data/test/generators/devise_generator_test.rb +0 -41
- data/test/generators/install_generator_test.rb +0 -26
- data/test/generators/mongoid_generator_test.rb +0 -25
- data/test/generators/views_generator_test.rb +0 -105
- data/test/helpers/devise_helper_test.rb +0 -51
- data/test/integration/authenticatable_test.rb +0 -706
- data/test/integration/confirmable_test.rb +0 -326
- data/test/integration/database_authenticatable_test.rb +0 -97
- data/test/integration/http_authenticatable_test.rb +0 -114
- data/test/integration/lockable_test.rb +0 -242
- data/test/integration/mounted_engine_test.rb +0 -38
- data/test/integration/omniauthable_test.rb +0 -148
- data/test/integration/recoverable_test.rb +0 -349
- data/test/integration/registerable_test.rb +0 -365
- data/test/integration/rememberable_test.rb +0 -219
- data/test/integration/timeoutable_test.rb +0 -186
- data/test/integration/trackable_test.rb +0 -99
- data/test/mailers/confirmation_instructions_test.rb +0 -117
- data/test/mailers/email_changed_test.rb +0 -132
- data/test/mailers/mailer_test.rb +0 -20
- data/test/mailers/reset_password_instructions_test.rb +0 -98
- data/test/mailers/unlock_instructions_test.rb +0 -93
- data/test/mapping_test.rb +0 -136
- data/test/models/authenticatable_test.rb +0 -25
- data/test/models/confirmable_test.rb +0 -549
- data/test/models/database_authenticatable_test.rb +0 -283
- data/test/models/lockable_test.rb +0 -352
- data/test/models/omniauthable_test.rb +0 -9
- data/test/models/recoverable_test.rb +0 -263
- data/test/models/registerable_test.rb +0 -9
- data/test/models/rememberable_test.rb +0 -184
- data/test/models/serializable_test.rb +0 -60
- data/test/models/timeoutable_test.rb +0 -53
- data/test/models/trackable_test.rb +0 -62
- data/test/models/validatable_test.rb +0 -121
- data/test/models_test.rb +0 -155
- data/test/omniauth/config_test.rb +0 -61
- data/test/omniauth/url_helpers_test.rb +0 -53
- data/test/orm/active_record.rb +0 -24
- data/test/orm/mongoid.rb +0 -15
- data/test/parameter_sanitizer_test.rb +0 -77
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -8
- data/test/rails_app/app/active_record/shim.rb +0 -4
- data/test/rails_app/app/active_record/user.rb +0 -20
- data/test/rails_app/app/active_record/user_on_engine.rb +0 -9
- data/test/rails_app/app/active_record/user_on_main_app.rb +0 -9
- data/test/rails_app/app/active_record/user_with_validations.rb +0 -12
- data/test/rails_app/app/active_record/user_without_email.rb +0 -10
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -8
- data/test/rails_app/app/controllers/admins_controller.rb +0 -8
- data/test/rails_app/app/controllers/application_controller.rb +0 -13
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -32
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -33
- data/test/rails_app/app/controllers/home_controller.rb +0 -31
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -4
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -4
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -16
- data/test/rails_app/app/controllers/users_controller.rb +0 -33
- data/test/rails_app/app/helpers/application_helper.rb +0 -5
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -6
- data/test/rails_app/app/mongoid/admin.rb +0 -31
- data/test/rails_app/app/mongoid/shim.rb +0 -25
- data/test/rails_app/app/mongoid/user.rb +0 -50
- data/test/rails_app/app/mongoid/user_on_engine.rb +0 -41
- data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -41
- data/test/rails_app/app/mongoid/user_with_validations.rb +0 -37
- data/test/rails_app/app/mongoid/user_without_email.rb +0 -35
- data/test/rails_app/app/views/admins/index.html.erb +0 -1
- data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/home/index.html.erb +0 -1
- data/test/rails_app/app/views/home/join.html.erb +0 -1
- data/test/rails_app/app/views/home/private.html.erb +0 -1
- data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/layouts/application.html.erb +0 -24
- data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
- data/test/rails_app/app/views/users/index.html.erb +0 -1
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
- data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
- data/test/rails_app/bin/bundle +0 -3
- data/test/rails_app/bin/rails +0 -4
- data/test/rails_app/bin/rake +0 -4
- data/test/rails_app/config/application.rb +0 -48
- data/test/rails_app/config/boot.rb +0 -27
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -7
- data/test/rails_app/config/environments/development.rb +0 -32
- data/test/rails_app/config/environments/production.rb +0 -88
- data/test/rails_app/config/environments/test.rb +0 -47
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -9
- data/test/rails_app/config/initializers/devise.rb +0 -182
- data/test/rails_app/config/initializers/inflections.rb +0 -4
- data/test/rails_app/config/initializers/secret_token.rb +0 -5
- data/test/rails_app/config/initializers/session_store.rb +0 -3
- data/test/rails_app/config/routes.rb +0 -128
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -77
- data/test/rails_app/db/schema.rb +0 -57
- data/test/rails_app/lib/shared_admin.rb +0 -23
- data/test/rails_app/lib/shared_user.rb +0 -32
- data/test/rails_app/lib/shared_user_without_email.rb +0 -28
- data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -15
- data/test/rails_app/public/404.html +0 -26
- data/test/rails_app/public/422.html +0 -26
- data/test/rails_app/public/500.html +0 -26
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_test.rb +0 -11
- data/test/routes_test.rb +0 -281
- data/test/secret_key_finder_test.rb +0 -97
- data/test/support/action_controller/record_identifier.rb +0 -12
- data/test/support/assertions.rb +0 -30
- data/test/support/helpers.rb +0 -83
- data/test/support/http_method_compatibility.rb +0 -53
- data/test/support/integration.rb +0 -95
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -35
- data/test/test/controller_helpers_test.rb +0 -193
- data/test/test/integration_helpers_test.rb +0 -34
- data/test/test_helper.rb +0 -36
- data/test/test_models.rb +0 -35
@@ -1,53 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Devise
|
4
|
-
class IntegrationTest < ActionDispatch::IntegrationTest
|
5
|
-
# %w( get post patch put head delete xml_http_request
|
6
|
-
# xhr get_via_redirect post_via_redirect
|
7
|
-
# ).each do |method|
|
8
|
-
%w( get post put ).each do |method|
|
9
|
-
if Rails.version >= '5.0.0'
|
10
|
-
define_method(method) do |url, options={}|
|
11
|
-
if options.empty?
|
12
|
-
super url
|
13
|
-
else
|
14
|
-
super url, options
|
15
|
-
end
|
16
|
-
end
|
17
|
-
else
|
18
|
-
define_method(method) do |url, options={}|
|
19
|
-
if options[:xhr]==true
|
20
|
-
xml_http_request __method__, url, options[:params] || {}, options[:headers]
|
21
|
-
else
|
22
|
-
super url, options[:params] || {}, options[:headers]
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
class ControllerTestCase < ActionController::TestCase
|
30
|
-
# %w( get post patch put head delete xml_http_request
|
31
|
-
# xhr get_via_redirect post_via_redirect
|
32
|
-
# ).each do |method|
|
33
|
-
%w( get post put ).each do |method|
|
34
|
-
if Rails.version >= '5.0.0'
|
35
|
-
define_method(method) do |action, options={}|
|
36
|
-
if options.empty?
|
37
|
-
super action
|
38
|
-
else
|
39
|
-
super action, options
|
40
|
-
end
|
41
|
-
end
|
42
|
-
else
|
43
|
-
define_method(method) do |action, options={}|
|
44
|
-
if options[:xhr]==true
|
45
|
-
xml_http_request __method__, action, options[:params] || {}, options[:headers]
|
46
|
-
else
|
47
|
-
super action, options[:params] || {}, options[:headers]
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
data/test/support/integration.rb
DELETED
@@ -1,95 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'action_dispatch/testing/integration'
|
4
|
-
|
5
|
-
class ActionDispatch::IntegrationTest
|
6
|
-
def warden
|
7
|
-
request.env['warden']
|
8
|
-
end
|
9
|
-
|
10
|
-
def create_user(options={})
|
11
|
-
@user ||= begin
|
12
|
-
user = User.create!(
|
13
|
-
username: 'usertest',
|
14
|
-
email: options[:email] || 'user@test.com',
|
15
|
-
password: options[:password] || '12345678',
|
16
|
-
password_confirmation: options[:password] || '12345678',
|
17
|
-
created_at: Time.now.utc
|
18
|
-
)
|
19
|
-
user.update_attribute(:confirmation_sent_at, options[:confirmation_sent_at]) if options[:confirmation_sent_at]
|
20
|
-
user.confirm unless options[:confirm] == false
|
21
|
-
user.lock_access! if options[:locked] == true
|
22
|
-
User.validations_performed = false
|
23
|
-
user
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def create_admin(options={})
|
28
|
-
@admin ||= begin
|
29
|
-
admin = Admin.create!(
|
30
|
-
email: options[:email] || 'admin@test.com',
|
31
|
-
password: '123456', password_confirmation: '123456',
|
32
|
-
active: options[:active]
|
33
|
-
)
|
34
|
-
admin.confirm unless options[:confirm] == false
|
35
|
-
admin
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
def sign_in_as_user(options={}, &block)
|
40
|
-
user = create_user(options)
|
41
|
-
visit_with_option options[:visit], new_user_session_path
|
42
|
-
fill_in 'email', with: options[:email] || 'user@test.com'
|
43
|
-
fill_in 'password', with: options[:password] || '12345678'
|
44
|
-
check 'remember me' if options[:remember_me] == true
|
45
|
-
yield if block_given?
|
46
|
-
click_button 'Log In'
|
47
|
-
user
|
48
|
-
end
|
49
|
-
|
50
|
-
def sign_in_as_admin(options={}, &block)
|
51
|
-
admin = create_admin(options)
|
52
|
-
visit_with_option options[:visit], new_admin_session_path
|
53
|
-
fill_in 'email', with: 'admin@test.com'
|
54
|
-
fill_in 'password', with: '123456'
|
55
|
-
yield if block_given?
|
56
|
-
click_button 'Log In'
|
57
|
-
admin
|
58
|
-
end
|
59
|
-
|
60
|
-
# Fix assert_redirect_to in integration sessions because they don't take into
|
61
|
-
# account Middleware redirects.
|
62
|
-
#
|
63
|
-
def assert_redirected_to(url)
|
64
|
-
assert [301, 302].include?(@integration_session.status),
|
65
|
-
"Expected status to be 301 or 302, got #{@integration_session.status}"
|
66
|
-
|
67
|
-
assert_url url, @integration_session.headers["Location"]
|
68
|
-
end
|
69
|
-
|
70
|
-
def assert_current_url(expected)
|
71
|
-
assert_url expected, current_url
|
72
|
-
end
|
73
|
-
|
74
|
-
def assert_url(expected, actual)
|
75
|
-
assert_equal prepend_host(expected), prepend_host(actual)
|
76
|
-
end
|
77
|
-
|
78
|
-
protected
|
79
|
-
|
80
|
-
def visit_with_option(given, default)
|
81
|
-
case given
|
82
|
-
when String
|
83
|
-
visit given
|
84
|
-
when FalseClass
|
85
|
-
# Do nothing
|
86
|
-
else
|
87
|
-
visit default
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
def prepend_host(url)
|
92
|
-
url = "http://#{request.host}#{url}" if url[0] == ?/
|
93
|
-
url
|
94
|
-
end
|
95
|
-
end
|
data/test/support/locale/en.yml
DELETED
data/test/support/mongoid.yml
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'webrat/core/elements/form'
|
4
|
-
require 'action_dispatch/testing/integration'
|
5
|
-
|
6
|
-
module Webrat
|
7
|
-
Form.class_eval do
|
8
|
-
def self.parse_rails_request_params(params)
|
9
|
-
Rack::Utils.parse_nested_query(params)
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
module Logging
|
14
|
-
# Avoid RAILS_DEFAULT_LOGGER deprecation warning
|
15
|
-
def logger # :nodoc:
|
16
|
-
::Rails.logger
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
class RailsAdapter
|
21
|
-
protected
|
22
|
-
|
23
|
-
def do_request(http_method, url, data, headers)
|
24
|
-
update_protocol(url)
|
25
|
-
integration_session.send(http_method, normalize_url(url), params: data, headers: headers)
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
module ActionDispatch #:nodoc:
|
31
|
-
IntegrationTest.class_eval do
|
32
|
-
include Webrat::Methods
|
33
|
-
include Webrat::Matchers
|
34
|
-
end
|
35
|
-
end
|
@@ -1,193 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
|
5
|
-
class TestControllerHelpersTest < Devise::ControllerTestCase
|
6
|
-
tests UsersController
|
7
|
-
include Devise::Test::ControllerHelpers
|
8
|
-
|
9
|
-
test "redirects if attempting to access a page unauthenticated" do
|
10
|
-
get :index
|
11
|
-
assert_redirected_to new_user_session_path
|
12
|
-
assert_equal "You need to sign in or sign up before continuing.", flash[:alert]
|
13
|
-
end
|
14
|
-
|
15
|
-
test "redirects if attempting to access a page with an unconfirmed account" do
|
16
|
-
swap Devise, allow_unconfirmed_access_for: 0.days do
|
17
|
-
user = create_user
|
18
|
-
assert !user.active_for_authentication?
|
19
|
-
|
20
|
-
sign_in user
|
21
|
-
get :index
|
22
|
-
assert_redirected_to new_user_session_path
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
test "returns nil if accessing current_user with an unconfirmed account" do
|
27
|
-
swap Devise, allow_unconfirmed_access_for: 0.days do
|
28
|
-
user = create_user
|
29
|
-
assert !user.active_for_authentication?
|
30
|
-
|
31
|
-
sign_in user
|
32
|
-
get :accept, params: { id: user }
|
33
|
-
assert_nil assigns(:current_user)
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
test "does not redirect with valid user" do
|
38
|
-
user = create_user
|
39
|
-
user.confirm
|
40
|
-
|
41
|
-
sign_in user
|
42
|
-
get :index
|
43
|
-
assert_response :success
|
44
|
-
end
|
45
|
-
|
46
|
-
test "does not redirect with valid user after failed first attempt" do
|
47
|
-
get :index
|
48
|
-
assert_response :redirect
|
49
|
-
|
50
|
-
user = create_user
|
51
|
-
user.confirm
|
52
|
-
|
53
|
-
sign_in user
|
54
|
-
get :index
|
55
|
-
assert_response :success
|
56
|
-
end
|
57
|
-
|
58
|
-
test "redirects if valid user signed out" do
|
59
|
-
user = create_user
|
60
|
-
user.confirm
|
61
|
-
|
62
|
-
sign_in user
|
63
|
-
get :index
|
64
|
-
|
65
|
-
sign_out user
|
66
|
-
get :index
|
67
|
-
assert_redirected_to new_user_session_path
|
68
|
-
end
|
69
|
-
|
70
|
-
test "respects custom failure app" do
|
71
|
-
custom_failure_app = Class.new(Devise::FailureApp) do
|
72
|
-
def redirect
|
73
|
-
self.status = 300
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
swap Devise.warden_config, failure_app: custom_failure_app do
|
78
|
-
get :index
|
79
|
-
assert_response 300
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
test "passes given headers from the failure app to the response" do
|
84
|
-
custom_failure_app = Class.new(Devise::FailureApp) do
|
85
|
-
def respond
|
86
|
-
self.status = 401
|
87
|
-
self.response.headers["CUSTOMHEADER"] = 1
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
swap Devise.warden_config, failure_app: custom_failure_app do
|
92
|
-
sign_in create_user
|
93
|
-
get :index
|
94
|
-
assert_equal 1, @response.headers["CUSTOMHEADER"]
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
test "returns the body of a failure app" do
|
99
|
-
get :index
|
100
|
-
assert_equal response.body, "<html><body>You are being <a href=\"http://test.host/users/sign_in\">redirected</a>.</body></html>"
|
101
|
-
end
|
102
|
-
|
103
|
-
test "returns the content type of a failure app" do
|
104
|
-
get :index, params: { format: :xml }
|
105
|
-
assert response.content_type.include?('application/xml')
|
106
|
-
end
|
107
|
-
|
108
|
-
test "defined Warden after_authentication callback should not be called when sign_in is called" do
|
109
|
-
begin
|
110
|
-
Warden::Manager.after_authentication do |user, auth, opts|
|
111
|
-
flunk "callback was called while it should not"
|
112
|
-
end
|
113
|
-
|
114
|
-
user = create_user
|
115
|
-
user.confirm
|
116
|
-
sign_in user
|
117
|
-
ensure
|
118
|
-
Warden::Manager._after_set_user.pop
|
119
|
-
end
|
120
|
-
end
|
121
|
-
|
122
|
-
test "defined Warden before_logout callback should not be called when sign_out is called" do
|
123
|
-
begin
|
124
|
-
Warden::Manager.before_logout do |user, auth, opts|
|
125
|
-
flunk "callback was called while it should not"
|
126
|
-
end
|
127
|
-
user = create_user
|
128
|
-
user.confirm
|
129
|
-
|
130
|
-
sign_in user
|
131
|
-
sign_out user
|
132
|
-
ensure
|
133
|
-
Warden::Manager._before_logout.pop
|
134
|
-
end
|
135
|
-
end
|
136
|
-
|
137
|
-
test "before_failure call should work" do
|
138
|
-
begin
|
139
|
-
executed = false
|
140
|
-
Warden::Manager.before_failure do |env,opts|
|
141
|
-
executed = true
|
142
|
-
end
|
143
|
-
|
144
|
-
user = create_user
|
145
|
-
sign_in user
|
146
|
-
|
147
|
-
get :index
|
148
|
-
assert executed
|
149
|
-
ensure
|
150
|
-
Warden::Manager._before_failure.pop
|
151
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
test "allows to sign in with different users" do
|
155
|
-
first_user = create_user
|
156
|
-
first_user.confirm
|
157
|
-
|
158
|
-
sign_in first_user
|
159
|
-
get :index
|
160
|
-
assert_match /User ##{first_user.id}/, @response.body
|
161
|
-
sign_out first_user
|
162
|
-
|
163
|
-
second_user = create_user
|
164
|
-
second_user.confirm
|
165
|
-
|
166
|
-
sign_in second_user
|
167
|
-
get :index
|
168
|
-
assert_match /User ##{second_user.id}/, @response.body
|
169
|
-
end
|
170
|
-
|
171
|
-
test "creates a new warden proxy if the request object has changed" do
|
172
|
-
old_warden_proxy = warden
|
173
|
-
|
174
|
-
@request = if Devise::Test.rails51? || Devise::Test.rails52?
|
175
|
-
ActionController::TestRequest.create(Class.new) # needs a "controller class"
|
176
|
-
elsif Devise::Test.rails5?
|
177
|
-
ActionController::TestRequest.create
|
178
|
-
else
|
179
|
-
ActionController::TestRequest.new
|
180
|
-
end
|
181
|
-
|
182
|
-
new_warden_proxy = warden
|
183
|
-
|
184
|
-
assert_not_equal old_warden_proxy, new_warden_proxy
|
185
|
-
end
|
186
|
-
|
187
|
-
test "doesn't create a new warden proxy if the request object hasn't changed" do
|
188
|
-
old_warden_proxy = warden
|
189
|
-
new_warden_proxy = warden
|
190
|
-
|
191
|
-
assert_equal old_warden_proxy, new_warden_proxy
|
192
|
-
end
|
193
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
|
5
|
-
class TestIntegrationsHelpersTest < Devise::IntegrationTest
|
6
|
-
include Devise::Test::IntegrationHelpers
|
7
|
-
|
8
|
-
test '#sign_in signs in the resource directly' do
|
9
|
-
sign_in(create_user)
|
10
|
-
|
11
|
-
visit '/'
|
12
|
-
assert warden.authenticated?(:user)
|
13
|
-
end
|
14
|
-
|
15
|
-
test '#sign_outs signs out in the resource directly' do
|
16
|
-
user = create_user
|
17
|
-
sign_in user
|
18
|
-
sign_out user
|
19
|
-
|
20
|
-
visit '/'
|
21
|
-
refute warden.authenticated?(:user)
|
22
|
-
end
|
23
|
-
|
24
|
-
test '#sign_out does not signs out other scopes' do
|
25
|
-
sign_in(create_user)
|
26
|
-
sign_in(create_admin)
|
27
|
-
sign_out :user
|
28
|
-
|
29
|
-
visit '/'
|
30
|
-
|
31
|
-
refute warden.authenticated?(:user)
|
32
|
-
assert warden.authenticated?(:admin)
|
33
|
-
end
|
34
|
-
end
|
data/test/test_helper.rb
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
ENV["RAILS_ENV"] = "test"
|
4
|
-
DEVISE_ORM = (ENV["DEVISE_ORM"] || :active_record).to_sym
|
5
|
-
|
6
|
-
$:.unshift File.dirname(__FILE__)
|
7
|
-
puts "\n==> Devise.orm = #{DEVISE_ORM.inspect}"
|
8
|
-
|
9
|
-
require "rails_app/config/environment"
|
10
|
-
require "rails/test_help"
|
11
|
-
require "orm/#{DEVISE_ORM}"
|
12
|
-
|
13
|
-
I18n.load_path << File.expand_path("../support/locale/en.yml", __FILE__)
|
14
|
-
|
15
|
-
require 'mocha/setup'
|
16
|
-
require 'webrat'
|
17
|
-
Webrat.configure do |config|
|
18
|
-
config.mode = :rails
|
19
|
-
config.open_error_files = false
|
20
|
-
end
|
21
|
-
|
22
|
-
if ActiveSupport.respond_to?(:test_order)
|
23
|
-
ActiveSupport.test_order = :random
|
24
|
-
end
|
25
|
-
|
26
|
-
OmniAuth.config.logger = Logger.new('/dev/null')
|
27
|
-
|
28
|
-
# Add support to load paths so we can overwrite broken webrat setup
|
29
|
-
$:.unshift File.expand_path('../support', __FILE__)
|
30
|
-
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
31
|
-
|
32
|
-
# For generators
|
33
|
-
require "rails/generators/test_case"
|
34
|
-
require "generators/devise/install_generator"
|
35
|
-
require "generators/devise/views_generator"
|
36
|
-
require "generators/devise/controllers_generator"
|
data/test/test_models.rb
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
class Configurable < User
|
4
|
-
devise :database_authenticatable, :confirmable, :rememberable, :timeoutable, :lockable,
|
5
|
-
stretches: 15, pepper: 'abcdef', allow_unconfirmed_access_for: 5.days,
|
6
|
-
remember_for: 7.days, timeout_in: 15.minutes, unlock_in: 10.days
|
7
|
-
end
|
8
|
-
|
9
|
-
class WithValidation < Admin
|
10
|
-
devise :database_authenticatable, :validatable, password_length: 2..6
|
11
|
-
end
|
12
|
-
|
13
|
-
class UserWithValidation < User
|
14
|
-
validates_presence_of :username
|
15
|
-
end
|
16
|
-
|
17
|
-
class UserWithCustomHashing < User
|
18
|
-
protected
|
19
|
-
def password_digest(password)
|
20
|
-
password.reverse
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
class UserWithVirtualAttributes < User
|
25
|
-
devise case_insensitive_keys: [:email, :email_confirmation]
|
26
|
-
validates :email, presence: true, confirmation: { on: :create }
|
27
|
-
end
|
28
|
-
|
29
|
-
class Several < Admin
|
30
|
-
devise :validatable
|
31
|
-
devise :lockable
|
32
|
-
end
|
33
|
-
|
34
|
-
class Inheritable < Admin
|
35
|
-
end
|