af-devise 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +10 -0
- data/.travis.yml +15 -0
- data/CHANGELOG.rdoc +885 -0
- data/CONTRIBUTING.md +14 -0
- data/Gemfile +29 -0
- data/Gemfile.lock +155 -0
- data/MIT-LICENSE +20 -0
- data/README.md +394 -0
- data/Rakefile +34 -0
- data/app/controllers/devise/confirmations_controller.rb +43 -0
- data/app/controllers/devise/omniauth_callbacks_controller.rb +30 -0
- data/app/controllers/devise/passwords_controller.rb +65 -0
- data/app/controllers/devise/registrations_controller.rb +119 -0
- data/app/controllers/devise/sessions_controller.rb +50 -0
- data/app/controllers/devise/unlocks_controller.rb +44 -0
- data/app/controllers/devise_controller.rb +184 -0
- data/app/helpers/devise_helper.rb +25 -0
- data/app/mailers/devise/mailer.rb +15 -0
- data/app/views/devise/_links.erb +3 -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 +59 -0
- data/devise.gemspec +25 -0
- data/gemfiles/Gemfile.rails-3.1.x +35 -0
- data/gemfiles/Gemfile.rails-3.1.x.lock +167 -0
- data/lib/devise.rb +444 -0
- data/lib/devise/controllers/helpers.rb +285 -0
- data/lib/devise/controllers/rememberable.rb +52 -0
- data/lib/devise/controllers/scoped_views.rb +17 -0
- data/lib/devise/controllers/url_helpers.rb +67 -0
- data/lib/devise/delegator.rb +16 -0
- data/lib/devise/failure_app.rb +187 -0
- data/lib/devise/hooks/activatable.rb +11 -0
- data/lib/devise/hooks/forgetable.rb +9 -0
- data/lib/devise/hooks/lockable.rb +7 -0
- data/lib/devise/hooks/rememberable.rb +6 -0
- data/lib/devise/hooks/timeoutable.rb +25 -0
- data/lib/devise/hooks/trackable.rb +9 -0
- data/lib/devise/mailers/helpers.rb +91 -0
- data/lib/devise/mapping.rb +172 -0
- data/lib/devise/models.rb +128 -0
- data/lib/devise/models/authenticatable.rb +268 -0
- data/lib/devise/models/confirmable.rb +270 -0
- data/lib/devise/models/database_authenticatable.rb +127 -0
- data/lib/devise/models/lockable.rb +193 -0
- data/lib/devise/models/omniauthable.rb +27 -0
- data/lib/devise/models/recoverable.rb +140 -0
- data/lib/devise/models/registerable.rb +25 -0
- data/lib/devise/models/rememberable.rb +125 -0
- data/lib/devise/models/timeoutable.rb +49 -0
- data/lib/devise/models/token_authenticatable.rb +89 -0
- data/lib/devise/models/trackable.rb +35 -0
- data/lib/devise/models/validatable.rb +66 -0
- data/lib/devise/modules.rb +29 -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/param_filter.rb +41 -0
- data/lib/devise/rails.rb +54 -0
- data/lib/devise/rails/routes.rb +446 -0
- data/lib/devise/rails/warden_compat.rb +43 -0
- data/lib/devise/strategies/authenticatable.rb +176 -0
- data/lib/devise/strategies/base.rb +20 -0
- data/lib/devise/strategies/database_authenticatable.rb +20 -0
- data/lib/devise/strategies/rememberable.rb +55 -0
- data/lib/devise/strategies/token_authenticatable.rb +56 -0
- data/lib/devise/test_helpers.rb +131 -0
- data/lib/devise/time_inflector.rb +14 -0
- data/lib/devise/version.rb +3 -0
- data/lib/generators/active_record/devise_generator.rb +79 -0
- data/lib/generators/active_record/templates/migration.rb +19 -0
- data/lib/generators/active_record/templates/migration_existing.rb +26 -0
- data/lib/generators/devise/devise_generator.rb +24 -0
- data/lib/generators/devise/install_generator.rb +24 -0
- data/lib/generators/devise/orm_helpers.rb +32 -0
- data/lib/generators/devise/views_generator.rb +116 -0
- data/lib/generators/mongoid/devise_generator.rb +57 -0
- data/lib/generators/templates/README +35 -0
- data/lib/generators/templates/devise.rb +240 -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 +15 -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 +22 -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 +15 -0
- data/test/controllers/custom_strategy_test.rb +62 -0
- data/test/controllers/helpers_test.rb +253 -0
- data/test/controllers/internal_helpers_test.rb +110 -0
- data/test/controllers/sessions_controller_test.rb +85 -0
- data/test/controllers/url_helpers_test.rb +59 -0
- data/test/delegator_test.rb +19 -0
- data/test/devise_test.rb +72 -0
- data/test/failure_app_test.rb +221 -0
- data/test/generators/active_record_generator_test.rb +75 -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 +52 -0
- data/test/helpers/devise_helper_test.rb +51 -0
- data/test/integration/authenticatable_test.rb +633 -0
- data/test/integration/confirmable_test.rb +298 -0
- data/test/integration/database_authenticatable_test.rb +82 -0
- data/test/integration/http_authenticatable_test.rb +97 -0
- data/test/integration/lockable_test.rb +242 -0
- data/test/integration/omniauthable_test.rb +133 -0
- data/test/integration/recoverable_test.rb +334 -0
- data/test/integration/registerable_test.rb +345 -0
- data/test/integration/rememberable_test.rb +158 -0
- data/test/integration/timeoutable_test.rb +140 -0
- data/test/integration/token_authenticatable_test.rb +161 -0
- data/test/integration/trackable_test.rb +92 -0
- data/test/mailers/confirmation_instructions_test.rb +102 -0
- data/test/mailers/reset_password_instructions_test.rb +83 -0
- data/test/mailers/unlock_instructions_test.rb +77 -0
- data/test/mapping_test.rb +127 -0
- data/test/models/authenticatable_test.rb +7 -0
- data/test/models/confirmable_test.rb +391 -0
- data/test/models/database_authenticatable_test.rb +196 -0
- data/test/models/lockable_test.rb +273 -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 +174 -0
- data/test/models/serializable_test.rb +49 -0
- data/test/models/timeoutable_test.rb +46 -0
- data/test/models/token_authenticatable_test.rb +55 -0
- data/test/models/trackable_test.rb +13 -0
- data/test/models/validatable_test.rb +117 -0
- data/test/models_test.rb +179 -0
- data/test/omniauth/config_test.rb +57 -0
- data/test/omniauth/url_helpers_test.rb +51 -0
- data/test/orm/active_record.rb +9 -0
- data/test/orm/mongoid.rb +13 -0
- data/test/rails_app/Rakefile +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 +6 -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 +8 -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 +23 -0
- data/test/rails_app/app/helpers/application_helper.rb +3 -0
- data/test/rails_app/app/mailers/users/mailer.rb +8 -0
- data/test/rails_app/app/mongoid/admin.rb +29 -0
- data/test/rails_app/app/mongoid/shim.rb +24 -0
- data/test/rails_app/app/mongoid/user.rb +42 -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/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/config.ru +4 -0
- data/test/rails_app/config/application.rb +41 -0
- data/test/rails_app/config/boot.rb +8 -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 +18 -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 +178 -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 +100 -0
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +74 -0
- data/test/rails_app/db/schema.rb +52 -0
- data/test/rails_app/lib/shared_admin.rb +14 -0
- data/test/rails_app/lib/shared_user.rb +26 -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/rails_app/script/rails +10 -0
- data/test/routes_test.rb +248 -0
- data/test/support/assertions.rb +40 -0
- data/test/support/helpers.rb +91 -0
- data/test/support/integration.rb +92 -0
- data/test/support/locale/en.yml +4 -0
- data/test/support/webrat/integrations/rails.rb +24 -0
- data/test/test_helper.rb +27 -0
- data/test/test_helpers_test.rb +151 -0
- metadata +421 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Hello <%= @resource.email %>!
|
|
2
|
+
|
|
3
|
+
Someone has requested a link to change your password, and you can do this through the link below.
|
|
4
|
+
|
|
5
|
+
<%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %>
|
|
6
|
+
|
|
7
|
+
If you didn't request this, please ignore this email.
|
|
8
|
+
Your password won't change until you access the link above and create a new one.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Hello <%= @resource.email %>!
|
|
2
|
+
|
|
3
|
+
Your account has been locked due to an excessive number of unsuccessful sign in attempts.
|
|
4
|
+
|
|
5
|
+
Click the link below to unlock your account:
|
|
6
|
+
|
|
7
|
+
<%= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token) %>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<h2>Resend confirmation instructions</h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
|
|
4
|
+
<%= f.error_notification %>
|
|
5
|
+
|
|
6
|
+
<div class="form-inputs">
|
|
7
|
+
<%= f.input :email, :required => true, :autofocus => true %>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div class="form-actions">
|
|
11
|
+
<%= f.button :submit, "Resend confirmation instructions" %>
|
|
12
|
+
</div>
|
|
13
|
+
<% end %>
|
|
14
|
+
|
|
15
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<h2>Change your password</h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
|
|
4
|
+
<%= f.error_notification %>
|
|
5
|
+
|
|
6
|
+
<%= f.input :reset_password_token, :as => :hidden %>
|
|
7
|
+
<%= f.full_error :reset_password_token %>
|
|
8
|
+
|
|
9
|
+
<div class="form-inputs">
|
|
10
|
+
<%= f.input :password, :label => "New password", :required => true, :autofocus => true %>
|
|
11
|
+
<%= f.input :password_confirmation, :label => "Confirm your new password", :required => true %>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="form-actions">
|
|
15
|
+
<%= f.button :submit, "Change my password" %>
|
|
16
|
+
</div>
|
|
17
|
+
<% end %>
|
|
18
|
+
|
|
19
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<h2>Forgot your password?</h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
|
|
4
|
+
<%= f.error_notification %>
|
|
5
|
+
|
|
6
|
+
<div class="form-inputs">
|
|
7
|
+
<%= f.input :email, :required => true, :autofocus => true %>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div class="form-actions">
|
|
11
|
+
<%= f.button :submit, "Send me reset password instructions" %>
|
|
12
|
+
</div>
|
|
13
|
+
<% end %>
|
|
14
|
+
|
|
15
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<h2>Edit <%= resource_name.to_s.humanize %></h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
|
|
4
|
+
<%= f.error_notification %>
|
|
5
|
+
|
|
6
|
+
<div class="form-inputs">
|
|
7
|
+
<%= f.input :email, :required => true, :autofocus => true %>
|
|
8
|
+
<%= f.input :password, :autocomplete => "off", :hint => "leave it blank if you don't want to change it", :required => false %>
|
|
9
|
+
<%= f.input :password_confirmation, :required => false %>
|
|
10
|
+
<%= f.input :current_password, :hint => "we need your current password to confirm your changes", :required => true %>
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<div class="form-actions">
|
|
14
|
+
<%= f.button :submit, "Update" %>
|
|
15
|
+
</div>
|
|
16
|
+
<% end %>
|
|
17
|
+
|
|
18
|
+
<h3>Cancel my account</h3>
|
|
19
|
+
|
|
20
|
+
<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :data => { :confirm => "Are you sure?" }, :method => :delete %>.</p>
|
|
21
|
+
|
|
22
|
+
<%= link_to "Back", :back %>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<h2>Sign up</h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
|
|
4
|
+
<%= f.error_notification %>
|
|
5
|
+
|
|
6
|
+
<div class="form-inputs">
|
|
7
|
+
<%= f.input :email, :required => true, :autofocus => true %>
|
|
8
|
+
<%= f.input :password, :required => true %>
|
|
9
|
+
<%= f.input :password_confirmation, :required => true %>
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<div class="form-actions">
|
|
13
|
+
<%= f.button :submit, "Sign up" %>
|
|
14
|
+
</div>
|
|
15
|
+
<% end %>
|
|
16
|
+
|
|
17
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<h2>Sign in</h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
|
|
4
|
+
<div class="form-inputs">
|
|
5
|
+
<%= f.input :email, :required => false, :autofocus => true %>
|
|
6
|
+
<%= f.input :password, :required => false %>
|
|
7
|
+
<%= f.input :remember_me, :as => :boolean if devise_mapping.rememberable? %>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div class="form-actions">
|
|
11
|
+
<%= f.button :submit, "Sign in" %>
|
|
12
|
+
</div>
|
|
13
|
+
<% end %>
|
|
14
|
+
|
|
15
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<h2>Resend unlock instructions</h2>
|
|
2
|
+
|
|
3
|
+
<%= simple_form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %>
|
|
4
|
+
<%= f.error_notification %>
|
|
5
|
+
|
|
6
|
+
<div class="form-inputs">
|
|
7
|
+
<%= f.input :email, :required => true, :autofocus => true %>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div class="form-actions">
|
|
11
|
+
<%= f.button :submit, "Resend unlock instructions" %>
|
|
12
|
+
</div>
|
|
13
|
+
<% end %>
|
|
14
|
+
|
|
15
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
require 'ostruct'
|
|
3
|
+
require 'warden/strategies/base'
|
|
4
|
+
require 'devise/test_helpers'
|
|
5
|
+
|
|
6
|
+
class CustomStrategyController < ActionController::Base
|
|
7
|
+
def new
|
|
8
|
+
warden.authenticate!(:custom_strategy)
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# These tests are to prove that a warden strategy can successfully
|
|
13
|
+
# return a custom response, including a specific status code and
|
|
14
|
+
# custom http response headers. This does work in production,
|
|
15
|
+
# however, at the time of writing this, the Devise test helpers do
|
|
16
|
+
# not recognise the custom response and proceed to calling the
|
|
17
|
+
# Failure App. This makes it impossible to write tests for a
|
|
18
|
+
# strategy that return a custom response with Devise.
|
|
19
|
+
class CustomStrategy < Warden::Strategies::Base
|
|
20
|
+
def authenticate!
|
|
21
|
+
custom_headers = { "X-FOO" => "BAR" }
|
|
22
|
+
response = Rack::Response.new("BAD REQUEST", 400, custom_headers)
|
|
23
|
+
custom! response.finish
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
class CustomStrategyTest < ActionController::TestCase
|
|
28
|
+
tests CustomStrategyController
|
|
29
|
+
|
|
30
|
+
include Devise::TestHelpers
|
|
31
|
+
|
|
32
|
+
setup do
|
|
33
|
+
Warden::Strategies.add(:custom_strategy, CustomStrategy)
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
teardown do
|
|
37
|
+
Warden::Strategies._strategies.delete(:custom_strategy)
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
test "custom strategy can return its own status code" do
|
|
41
|
+
ret = get :new
|
|
42
|
+
|
|
43
|
+
# check the returned rack array
|
|
44
|
+
assert ret.is_a?(Array)
|
|
45
|
+
assert_equal 400, ret.first
|
|
46
|
+
|
|
47
|
+
# check the saved response as well. This is purely so that the response is available to the testing framework
|
|
48
|
+
# for verification. In production, the above array would be delivered directly to Rack.
|
|
49
|
+
assert_response 400
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
test "custom strategy can return custom headers" do
|
|
53
|
+
ret = get :new
|
|
54
|
+
|
|
55
|
+
# check the returned rack array
|
|
56
|
+
assert ret.is_a?(Array)
|
|
57
|
+
assert_equal ret.third['X-FOO'], 'BAR'
|
|
58
|
+
|
|
59
|
+
# check the saved response headers as well.
|
|
60
|
+
assert_equal response.headers['X-FOO'], 'BAR'
|
|
61
|
+
end
|
|
62
|
+
end
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
require 'ostruct'
|
|
3
|
+
|
|
4
|
+
class ControllerAuthenticatableTest < ActionController::TestCase
|
|
5
|
+
tests ApplicationController
|
|
6
|
+
|
|
7
|
+
def setup
|
|
8
|
+
@mock_warden = OpenStruct.new
|
|
9
|
+
@controller.request.env['warden'] = @mock_warden
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
test 'provide access to warden instance' do
|
|
13
|
+
assert_equal @mock_warden, @controller.warden
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
test 'proxy signed_in?(scope) to authenticate?' do
|
|
17
|
+
@mock_warden.expects(:authenticate?).with(:scope => :my_scope)
|
|
18
|
+
@controller.signed_in?(:my_scope)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
test 'proxy signed_in?(nil) to authenticate?' do
|
|
22
|
+
Devise.mappings.keys.each do |scope| # :user, :admin, :manager
|
|
23
|
+
@mock_warden.expects(:authenticate?).with(:scope => scope)
|
|
24
|
+
end
|
|
25
|
+
@controller.signed_in?
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
test 'proxy current_user to authenticate with user scope' do
|
|
29
|
+
@mock_warden.expects(:authenticate).with(:scope => :user)
|
|
30
|
+
@controller.current_user
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
test 'proxy current_admin to authenticate with admin scope' do
|
|
34
|
+
@mock_warden.expects(:authenticate).with(:scope => :admin)
|
|
35
|
+
@controller.current_admin
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
test 'proxy current_publisher_account to authenticate with namespaced publisher account scope' do
|
|
39
|
+
@mock_warden.expects(:authenticate).with(:scope => :publisher_account)
|
|
40
|
+
@controller.current_publisher_account
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
test 'proxy authenticate_user! to authenticate with user scope' do
|
|
44
|
+
@mock_warden.expects(:authenticate!).with(:scope => :user)
|
|
45
|
+
@controller.authenticate_user!
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
test 'proxy authenticate_user! options to authenticate with user scope' do
|
|
49
|
+
@mock_warden.expects(:authenticate!).with(:scope => :user, :recall => "foo")
|
|
50
|
+
@controller.authenticate_user!(:recall => "foo")
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
test 'proxy authenticate_admin! to authenticate with admin scope' do
|
|
54
|
+
@mock_warden.expects(:authenticate!).with(:scope => :admin)
|
|
55
|
+
@controller.authenticate_admin!
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
test 'proxy authenticate_publisher_account! to authenticate with namespaced publisher account scope' do
|
|
59
|
+
@mock_warden.expects(:authenticate!).with(:scope => :publisher_account)
|
|
60
|
+
@controller.authenticate_publisher_account!
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
test 'proxy user_signed_in? to authenticate with user scope' do
|
|
64
|
+
@mock_warden.expects(:authenticate).with(:scope => :user).returns("user")
|
|
65
|
+
assert @controller.user_signed_in?
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
test 'proxy admin_signed_in? to authenticatewith admin scope' do
|
|
69
|
+
@mock_warden.expects(:authenticate).with(:scope => :admin)
|
|
70
|
+
assert_not @controller.admin_signed_in?
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
test 'proxy publisher_account_signed_in? to authenticate with namespaced publisher account scope' do
|
|
74
|
+
@mock_warden.expects(:authenticate).with(:scope => :publisher_account)
|
|
75
|
+
@controller.publisher_account_signed_in?
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
test 'proxy user_session to session scope in warden' do
|
|
79
|
+
@mock_warden.expects(:authenticate).with(:scope => :user).returns(true)
|
|
80
|
+
@mock_warden.expects(:session).with(:user).returns({})
|
|
81
|
+
@controller.user_session
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
test 'proxy admin_session to session scope in warden' do
|
|
85
|
+
@mock_warden.expects(:authenticate).with(:scope => :admin).returns(true)
|
|
86
|
+
@mock_warden.expects(:session).with(:admin).returns({})
|
|
87
|
+
@controller.admin_session
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
test 'proxy publisher_account_session from namespaced scope to session scope in warden' do
|
|
91
|
+
@mock_warden.expects(:authenticate).with(:scope => :publisher_account).returns(true)
|
|
92
|
+
@mock_warden.expects(:session).with(:publisher_account).returns({})
|
|
93
|
+
@controller.publisher_account_session
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
test 'sign in proxy to set_user on warden' do
|
|
97
|
+
user = User.new
|
|
98
|
+
@mock_warden.expects(:user).returns(nil)
|
|
99
|
+
@mock_warden.expects(:set_user).with(user, :scope => :user).returns(true)
|
|
100
|
+
@controller.sign_in(:user, user)
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
test 'sign in accepts a resource as argument' do
|
|
104
|
+
user = User.new
|
|
105
|
+
@mock_warden.expects(:user).returns(nil)
|
|
106
|
+
@mock_warden.expects(:set_user).with(user, :scope => :user).returns(true)
|
|
107
|
+
@controller.sign_in(user)
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
test 'does not sign in again if the user is already in' do
|
|
111
|
+
user = User.new
|
|
112
|
+
@mock_warden.expects(:user).returns(user)
|
|
113
|
+
@mock_warden.expects(:set_user).never
|
|
114
|
+
assert @controller.sign_in(user)
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
test 'sign in again when the user is already in only if force is given' do
|
|
118
|
+
user = User.new
|
|
119
|
+
@mock_warden.expects(:user).returns(user)
|
|
120
|
+
@mock_warden.expects(:set_user).with(user, :scope => :user).returns(true)
|
|
121
|
+
@controller.sign_in(user, :force => true)
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
test 'sign in accepts bypass as option' do
|
|
125
|
+
user = User.new
|
|
126
|
+
@mock_warden.expects(:session_serializer).returns(serializer = mock())
|
|
127
|
+
serializer.expects(:store).with(user, :user)
|
|
128
|
+
@controller.sign_in(user, :bypass => true)
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
test 'sign out clears up any signed in user from all scopes' do
|
|
132
|
+
user = User.new
|
|
133
|
+
@mock_warden.expects(:user).times(Devise.mappings.size)
|
|
134
|
+
@mock_warden.expects(:logout).with().returns(true)
|
|
135
|
+
@controller.instance_variable_set(:@current_user, user)
|
|
136
|
+
@controller.instance_variable_set(:@current_admin, user)
|
|
137
|
+
@controller.sign_out
|
|
138
|
+
assert_equal nil, @controller.instance_variable_get(:@current_user)
|
|
139
|
+
assert_equal nil, @controller.instance_variable_get(:@current_admin)
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
test 'sign out logs out and clears up any signed in user by scope' do
|
|
143
|
+
user = User.new
|
|
144
|
+
@mock_warden.expects(:user).with(:scope => :user, :run_callbacks => false).returns(user)
|
|
145
|
+
@mock_warden.expects(:logout).with(:user).returns(true)
|
|
146
|
+
@mock_warden.expects(:clear_strategies_cache!).with(:scope => :user).returns(true)
|
|
147
|
+
@controller.instance_variable_set(:@current_user, user)
|
|
148
|
+
@controller.sign_out(:user)
|
|
149
|
+
assert_equal nil, @controller.instance_variable_get(:@current_user)
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
test 'sign out accepts a resource as argument' do
|
|
153
|
+
@mock_warden.expects(:user).with(:scope => :user, :run_callbacks => false).returns(true)
|
|
154
|
+
@mock_warden.expects(:logout).with(:user).returns(true)
|
|
155
|
+
@mock_warden.expects(:clear_strategies_cache!).with(:scope => :user).returns(true)
|
|
156
|
+
@controller.sign_out(User.new)
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
test 'sign out without args proxy to sign out all scopes' do
|
|
160
|
+
@mock_warden.expects(:user).times(Devise.mappings.size)
|
|
161
|
+
@mock_warden.expects(:logout).with().returns(true)
|
|
162
|
+
@mock_warden.expects(:clear_strategies_cache!).with().returns(true)
|
|
163
|
+
@controller.sign_out
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
test 'sign out everybody proxy to logout on warden' do
|
|
167
|
+
@mock_warden.expects(:user).times(Devise.mappings.size)
|
|
168
|
+
@mock_warden.expects(:logout).with().returns(true)
|
|
169
|
+
@controller.sign_out_all_scopes
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
test 'stored location for returns the location for a given scope' do
|
|
173
|
+
assert_nil @controller.stored_location_for(:user)
|
|
174
|
+
@controller.session[:"user_return_to"] = "/foo.bar"
|
|
175
|
+
assert_equal "/foo.bar", @controller.stored_location_for(:user)
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
test 'stored location for accepts a resource as argument' do
|
|
179
|
+
assert_nil @controller.stored_location_for(:user)
|
|
180
|
+
@controller.session[:"user_return_to"] = "/foo.bar"
|
|
181
|
+
assert_equal "/foo.bar", @controller.stored_location_for(User.new)
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
test 'stored location cleans information after reading' do
|
|
185
|
+
@controller.session[:"user_return_to"] = "/foo.bar"
|
|
186
|
+
assert_equal "/foo.bar", @controller.stored_location_for(:user)
|
|
187
|
+
assert_nil @controller.session[:"user_return_to"]
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
test 'after sign in path defaults to root path if none by was specified for the given scope' do
|
|
191
|
+
assert_equal root_path, @controller.after_sign_in_path_for(:user)
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
test 'after sign in path defaults to the scoped root path' do
|
|
195
|
+
assert_equal admin_root_path, @controller.after_sign_in_path_for(:admin)
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
test 'after sign out path defaults to the root path' do
|
|
199
|
+
assert_equal root_path, @controller.after_sign_out_path_for(:admin)
|
|
200
|
+
assert_equal root_path, @controller.after_sign_out_path_for(:user)
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
test 'sign in and redirect uses the stored location' do
|
|
204
|
+
user = User.new
|
|
205
|
+
@controller.session[:"user_return_to"] = "/foo.bar"
|
|
206
|
+
@mock_warden.expects(:user).with(:user).returns(nil)
|
|
207
|
+
@mock_warden.expects(:set_user).with(user, :scope => :user).returns(true)
|
|
208
|
+
@controller.expects(:redirect_to).with("/foo.bar")
|
|
209
|
+
@controller.sign_in_and_redirect(user)
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
test 'sign in and redirect uses the configured after sign in path' do
|
|
213
|
+
admin = Admin.new
|
|
214
|
+
@mock_warden.expects(:user).with(:admin).returns(nil)
|
|
215
|
+
@mock_warden.expects(:set_user).with(admin, :scope => :admin).returns(true)
|
|
216
|
+
@controller.expects(:redirect_to).with(admin_root_path)
|
|
217
|
+
@controller.sign_in_and_redirect(admin)
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
test 'sign in and redirect does not sign in again if user is already signed' do
|
|
221
|
+
admin = Admin.new
|
|
222
|
+
@mock_warden.expects(:user).with(:admin).returns(admin)
|
|
223
|
+
@mock_warden.expects(:set_user).never
|
|
224
|
+
@controller.expects(:redirect_to).with(admin_root_path)
|
|
225
|
+
@controller.sign_in_and_redirect(admin)
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
test 'sign out and redirect uses the configured after sign out path when signing out only the current scope' do
|
|
229
|
+
swap Devise, :sign_out_all_scopes => false do
|
|
230
|
+
@mock_warden.expects(:user).with(:scope => :admin, :run_callbacks => false).returns(true)
|
|
231
|
+
@mock_warden.expects(:logout).with(:admin).returns(true)
|
|
232
|
+
@mock_warden.expects(:clear_strategies_cache!).with(:scope => :admin).returns(true)
|
|
233
|
+
@controller.expects(:redirect_to).with(admin_root_path)
|
|
234
|
+
@controller.instance_eval "def after_sign_out_path_for(resource); admin_root_path; end"
|
|
235
|
+
@controller.sign_out_and_redirect(:admin)
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
test 'sign out and redirect uses the configured after sign out path when signing out all scopes' do
|
|
240
|
+
swap Devise, :sign_out_all_scopes => true do
|
|
241
|
+
@mock_warden.expects(:user).times(Devise.mappings.size)
|
|
242
|
+
@mock_warden.expects(:logout).with().returns(true)
|
|
243
|
+
@mock_warden.expects(:clear_strategies_cache!).with().returns(true)
|
|
244
|
+
@controller.expects(:redirect_to).with(admin_root_path)
|
|
245
|
+
@controller.instance_eval "def after_sign_out_path_for(resource); admin_root_path; end"
|
|
246
|
+
@controller.sign_out_and_redirect(:admin)
|
|
247
|
+
end
|
|
248
|
+
end
|
|
249
|
+
|
|
250
|
+
test 'is not a devise controller' do
|
|
251
|
+
assert_not @controller.devise_controller?
|
|
252
|
+
end
|
|
253
|
+
end
|