devise 3.5.3 → 4.7.1
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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +256 -1099
- data/MIT-LICENSE +1 -1
- data/README.md +254 -67
- data/app/controllers/devise/confirmations_controller.rb +3 -1
- data/app/controllers/devise/omniauth_callbacks_controller.rb +8 -6
- data/app/controllers/devise/passwords_controller.rb +7 -4
- data/app/controllers/devise/registrations_controller.rb +39 -18
- data/app/controllers/devise/sessions_controller.rb +9 -7
- data/app/controllers/devise/unlocks_controller.rb +4 -2
- data/app/controllers/devise_controller.rb +23 -10
- data/app/helpers/devise_helper.rb +12 -19
- data/app/mailers/devise/mailer.rb +6 -0
- data/app/views/devise/confirmations/new.html.erb +2 -2
- data/app/views/devise/mailer/email_changed.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +3 -3
- data/app/views/devise/passwords/new.html.erb +2 -2
- data/app/views/devise/registrations/edit.html.erb +9 -5
- data/app/views/devise/registrations/new.html.erb +4 -4
- data/app/views/devise/sessions/new.html.erb +4 -4
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/_links.html.erb +7 -7
- data/app/views/devise/unlocks/new.html.erb +2 -2
- data/config/locales/en.yml +4 -1
- data/lib/devise/controllers/helpers.rb +23 -20
- data/lib/devise/controllers/rememberable.rb +11 -2
- data/lib/devise/controllers/scoped_views.rb +2 -0
- data/lib/devise/controllers/sign_in_out.rb +34 -11
- data/lib/devise/controllers/store_location.rb +25 -7
- data/lib/devise/controllers/url_helpers.rb +2 -0
- data/lib/devise/delegator.rb +2 -0
- data/lib/devise/encryptor.rb +6 -4
- data/lib/devise/failure_app.rb +75 -37
- data/lib/devise/hooks/activatable.rb +2 -0
- data/lib/devise/hooks/csrf_cleaner.rb +2 -0
- data/lib/devise/hooks/forgetable.rb +2 -0
- data/lib/devise/hooks/lockable.rb +6 -1
- data/lib/devise/hooks/proxy.rb +3 -1
- data/lib/devise/hooks/rememberable.rb +2 -0
- data/lib/devise/hooks/timeoutable.rb +5 -2
- data/lib/devise/hooks/trackable.rb +2 -0
- data/lib/devise/mailers/helpers.rb +7 -4
- data/lib/devise/mapping.rb +2 -0
- data/lib/devise/models/authenticatable.rb +51 -26
- data/lib/devise/models/confirmable.rb +89 -27
- data/lib/devise/models/database_authenticatable.rb +88 -21
- data/lib/devise/models/lockable.rb +15 -5
- data/lib/devise/models/omniauthable.rb +2 -0
- data/lib/devise/models/recoverable.rb +32 -20
- data/lib/devise/models/registerable.rb +4 -0
- data/lib/devise/models/rememberable.rb +42 -26
- data/lib/devise/models/timeoutable.rb +2 -6
- data/lib/devise/models/trackable.rb +15 -1
- data/lib/devise/models/validatable.rb +10 -3
- data/lib/devise/models.rb +3 -1
- data/lib/devise/modules.rb +2 -0
- data/lib/devise/omniauth/config.rb +2 -0
- data/lib/devise/omniauth/url_helpers.rb +14 -5
- data/lib/devise/omniauth.rb +2 -0
- data/lib/devise/orm/active_record.rb +5 -1
- data/lib/devise/orm/mongoid.rb +6 -2
- data/lib/devise/parameter_filter.rb +4 -0
- data/lib/devise/parameter_sanitizer.rb +139 -65
- data/lib/devise/rails/routes.rb +44 -33
- data/lib/devise/rails/warden_compat.rb +3 -10
- data/lib/devise/rails.rb +7 -16
- data/lib/devise/secret_key_finder.rb +27 -0
- data/lib/devise/strategies/authenticatable.rb +3 -1
- data/lib/devise/strategies/base.rb +2 -0
- data/lib/devise/strategies/database_authenticatable.rb +11 -4
- data/lib/devise/strategies/rememberable.rb +5 -6
- data/lib/devise/test/controller_helpers.rb +165 -0
- data/lib/devise/test/integration_helpers.rb +63 -0
- data/lib/devise/test_helpers.rb +7 -124
- data/lib/devise/time_inflector.rb +2 -0
- data/lib/devise/token_generator.rb +3 -41
- data/lib/devise/version.rb +3 -1
- data/lib/devise.rb +61 -40
- data/lib/generators/active_record/devise_generator.rb +29 -10
- data/lib/generators/active_record/templates/migration.rb +4 -2
- data/lib/generators/active_record/templates/migration_existing.rb +4 -2
- data/lib/generators/devise/controllers_generator.rb +3 -1
- data/lib/generators/devise/devise_generator.rb +4 -2
- data/lib/generators/devise/install_generator.rb +17 -0
- data/lib/generators/devise/orm_helpers.rb +10 -21
- data/lib/generators/devise/views_generator.rb +7 -8
- data/lib/generators/mongoid/devise_generator.rb +7 -5
- data/lib/generators/templates/README +1 -8
- data/lib/generators/templates/controllers/confirmations_controller.rb +2 -0
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +2 -0
- data/lib/generators/templates/controllers/passwords_controller.rb +2 -0
- data/lib/generators/templates/controllers/registrations_controller.rb +6 -4
- data/lib/generators/templates/controllers/sessions_controller.rb +4 -2
- data/lib/generators/templates/controllers/unlocks_controller.rb +2 -0
- data/lib/generators/templates/devise.rb +50 -20
- data/lib/generators/templates/markerb/email_changed.markerb +7 -0
- data/lib/generators/templates/markerb/password_change.markerb +2 -2
- 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 +11 -3
- 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 +13 -310
- data/.gitignore +0 -10
- data/.travis.yml +0 -44
- data/.yardopts +0 -9
- data/CODE_OF_CONDUCT.md +0 -22
- data/CONTRIBUTING.md +0 -16
- data/Gemfile +0 -29
- data/Gemfile.lock +0 -183
- data/Rakefile +0 -36
- data/devise.gemspec +0 -27
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-3.2-stable +0 -29
- data/gemfiles/Gemfile.rails-3.2-stable.lock +0 -172
- data/gemfiles/Gemfile.rails-4.0-stable +0 -29
- data/gemfiles/Gemfile.rails-4.0-stable.lock +0 -166
- data/gemfiles/Gemfile.rails-4.1-stable +0 -29
- data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -172
- data/gemfiles/Gemfile.rails-4.2-stable +0 -29
- data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -194
- data/script/cached-bundle +0 -49
- data/script/s3-put +0 -71
- data/test/controllers/custom_registrations_controller_test.rb +0 -40
- data/test/controllers/custom_strategy_test.rb +0 -62
- data/test/controllers/helper_methods_test.rb +0 -21
- data/test/controllers/helpers_test.rb +0 -316
- data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -51
- data/test/controllers/internal_helpers_test.rb +0 -129
- data/test/controllers/load_hooks_controller_test.rb +0 -19
- data/test/controllers/passwords_controller_test.rb +0 -31
- data/test/controllers/sessions_controller_test.rb +0 -103
- data/test/controllers/url_helpers_test.rb +0 -65
- data/test/delegator_test.rb +0 -19
- data/test/devise_test.rb +0 -107
- data/test/failure_app_test.rb +0 -315
- data/test/generators/active_record_generator_test.rb +0 -109
- data/test/generators/controllers_generator_test.rb +0 -48
- data/test/generators/devise_generator_test.rb +0 -39
- data/test/generators/install_generator_test.rb +0 -13
- data/test/generators/mongoid_generator_test.rb +0 -23
- data/test/generators/views_generator_test.rb +0 -103
- data/test/helpers/devise_helper_test.rb +0 -49
- data/test/integration/authenticatable_test.rb +0 -729
- data/test/integration/confirmable_test.rb +0 -324
- data/test/integration/database_authenticatable_test.rb +0 -95
- data/test/integration/http_authenticatable_test.rb +0 -105
- data/test/integration/lockable_test.rb +0 -239
- data/test/integration/omniauthable_test.rb +0 -135
- data/test/integration/recoverable_test.rb +0 -347
- data/test/integration/registerable_test.rb +0 -359
- data/test/integration/rememberable_test.rb +0 -176
- data/test/integration/timeoutable_test.rb +0 -184
- data/test/integration/trackable_test.rb +0 -92
- data/test/mailers/confirmation_instructions_test.rb +0 -115
- data/test/mailers/reset_password_instructions_test.rb +0 -96
- data/test/mailers/unlock_instructions_test.rb +0 -91
- data/test/mapping_test.rb +0 -134
- data/test/models/authenticatable_test.rb +0 -23
- data/test/models/confirmable_test.rb +0 -489
- data/test/models/database_authenticatable_test.rb +0 -269
- data/test/models/lockable_test.rb +0 -328
- data/test/models/omniauthable_test.rb +0 -7
- data/test/models/recoverable_test.rb +0 -251
- data/test/models/registerable_test.rb +0 -7
- data/test/models/rememberable_test.rb +0 -204
- data/test/models/serializable_test.rb +0 -49
- data/test/models/timeoutable_test.rb +0 -51
- data/test/models/trackable_test.rb +0 -41
- data/test/models/validatable_test.rb +0 -127
- data/test/models_test.rb +0 -153
- data/test/omniauth/config_test.rb +0 -57
- data/test/omniauth/url_helpers_test.rb +0 -54
- data/test/orm/active_record.rb +0 -10
- data/test/orm/mongoid.rb +0 -13
- data/test/parameter_sanitizer_test.rb +0 -81
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -6
- data/test/rails_app/app/active_record/shim.rb +0 -2
- data/test/rails_app/app/active_record/user.rb +0 -6
- data/test/rails_app/app/active_record/user_on_engine.rb +0 -7
- data/test/rails_app/app/active_record/user_on_main_app.rb +0 -7
- data/test/rails_app/app/active_record/user_without_email.rb +0 -8
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -6
- data/test/rails_app/app/controllers/admins_controller.rb +0 -6
- data/test/rails_app/app/controllers/application_controller.rb +0 -12
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -30
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -31
- data/test/rails_app/app/controllers/home_controller.rb +0 -25
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -2
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -2
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -14
- data/test/rails_app/app/controllers/users_controller.rb +0 -31
- data/test/rails_app/app/helpers/application_helper.rb +0 -3
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -3
- data/test/rails_app/app/mailers/users/mailer.rb +0 -3
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -4
- data/test/rails_app/app/mongoid/admin.rb +0 -29
- data/test/rails_app/app/mongoid/shim.rb +0 -23
- data/test/rails_app/app/mongoid/user.rb +0 -39
- data/test/rails_app/app/mongoid/user_on_engine.rb +0 -39
- data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -39
- data/test/rails_app/app/mongoid/user_without_email.rb +0 -33
- 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 -40
- data/test/rails_app/config/boot.rb +0 -14
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -5
- data/test/rails_app/config/environments/development.rb +0 -30
- data/test/rails_app/config/environments/production.rb +0 -84
- data/test/rails_app/config/environments/test.rb +0 -41
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -7
- data/test/rails_app/config/initializers/devise.rb +0 -180
- data/test/rails_app/config/initializers/inflections.rb +0 -2
- data/test/rails_app/config/initializers/secret_token.rb +0 -8
- data/test/rails_app/config/initializers/session_store.rb +0 -1
- data/test/rails_app/config/routes.rb +0 -125
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -71
- data/test/rails_app/db/schema.rb +0 -55
- data/test/rails_app/lib/shared_admin.rb +0 -17
- data/test/rails_app/lib/shared_user.rb +0 -29
- data/test/rails_app/lib/shared_user_without_email.rb +0 -26
- data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -13
- 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 -9
- data/test/routes_test.rb +0 -264
- data/test/support/action_controller/record_identifier.rb +0 -10
- data/test/support/assertions.rb +0 -39
- data/test/support/helpers.rb +0 -77
- data/test/support/integration.rb +0 -92
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -24
- data/test/test_helper.rb +0 -34
- data/test/test_helpers_test.rb +0 -178
- data/test/test_models.rb +0 -33
| @@ -1,39 +0,0 @@ | |
| 1 | 
            -
            require 'test_helper'
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            require "generators/devise/devise_generator"
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            class DeviseGeneratorTest < Rails::Generators::TestCase
         | 
| 6 | 
            -
              tests Devise::Generators::DeviseGenerator
         | 
| 7 | 
            -
              destination File.expand_path("../../tmp", __FILE__)
         | 
| 8 | 
            -
             | 
| 9 | 
            -
              setup do
         | 
| 10 | 
            -
                prepare_destination
         | 
| 11 | 
            -
                copy_routes
         | 
| 12 | 
            -
              end
         | 
| 13 | 
            -
             | 
| 14 | 
            -
              test "route generation for simple model names" do
         | 
| 15 | 
            -
                run_generator %w(monster name:string)
         | 
| 16 | 
            -
                assert_file "config/routes.rb", /devise_for :monsters/
         | 
| 17 | 
            -
              end
         | 
| 18 | 
            -
             | 
| 19 | 
            -
              test "route generation for namespaced model names" do
         | 
| 20 | 
            -
                run_generator %w(monster/goblin name:string)
         | 
| 21 | 
            -
                match = /devise_for :goblins, class_name: "Monster::Goblin"/
         | 
| 22 | 
            -
                assert_file "config/routes.rb", match
         | 
| 23 | 
            -
              end
         | 
| 24 | 
            -
             | 
| 25 | 
            -
              test "route generation with skip routes" do
         | 
| 26 | 
            -
                run_generator %w(monster name:string --skip-routes)
         | 
| 27 | 
            -
                match = /devise_for :monsters, skip: :all/
         | 
| 28 | 
            -
                assert_file "config/routes.rb", match
         | 
| 29 | 
            -
              end
         | 
| 30 | 
            -
             | 
| 31 | 
            -
              def copy_routes
         | 
| 32 | 
            -
                routes = File.expand_path("../../rails_app/config/routes.rb", __FILE__)
         | 
| 33 | 
            -
                destination = File.join(destination_root, "config")
         | 
| 34 | 
            -
             | 
| 35 | 
            -
                FileUtils.mkdir_p(destination)
         | 
| 36 | 
            -
                FileUtils.cp routes, destination
         | 
| 37 | 
            -
              end
         | 
| 38 | 
            -
             | 
| 39 | 
            -
            end
         | 
| @@ -1,13 +0,0 @@ | |
| 1 | 
            -
            require "test_helper"
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            class InstallGeneratorTest < Rails::Generators::TestCase
         | 
| 4 | 
            -
              tests Devise::Generators::InstallGenerator
         | 
| 5 | 
            -
              destination File.expand_path("../../tmp", __FILE__)
         | 
| 6 | 
            -
              setup :prepare_destination
         | 
| 7 | 
            -
             | 
| 8 | 
            -
              test "Assert all files are properly created" do
         | 
| 9 | 
            -
                run_generator
         | 
| 10 | 
            -
                assert_file "config/initializers/devise.rb"
         | 
| 11 | 
            -
                assert_file "config/locales/devise.en.yml"
         | 
| 12 | 
            -
              end
         | 
| 13 | 
            -
            end
         | 
| @@ -1,23 +0,0 @@ | |
| 1 | 
            -
            require "test_helper"
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            if DEVISE_ORM == :mongoid
         | 
| 4 | 
            -
              require "generators/mongoid/devise_generator"
         | 
| 5 | 
            -
             | 
| 6 | 
            -
              class MongoidGeneratorTest < Rails::Generators::TestCase
         | 
| 7 | 
            -
                tests Mongoid::Generators::DeviseGenerator
         | 
| 8 | 
            -
                destination File.expand_path("../../tmp", __FILE__)
         | 
| 9 | 
            -
                setup :prepare_destination
         | 
| 10 | 
            -
             | 
| 11 | 
            -
                test "all files are properly created" do
         | 
| 12 | 
            -
                  run_generator %w(monster)
         | 
| 13 | 
            -
                  assert_file "app/models/monster.rb", /devise/
         | 
| 14 | 
            -
                end
         | 
| 15 | 
            -
             | 
| 16 | 
            -
                test "all files are properly deleted" do
         | 
| 17 | 
            -
                  run_generator %w(monster)
         | 
| 18 | 
            -
                  run_generator %w(monster), behavior: :revoke
         | 
| 19 | 
            -
                  assert_no_file "app/models/monster.rb"
         | 
| 20 | 
            -
                end
         | 
| 21 | 
            -
              end
         | 
| 22 | 
            -
            end
         | 
| 23 | 
            -
             | 
| @@ -1,103 +0,0 @@ | |
| 1 | 
            -
            require "test_helper"
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            class ViewsGeneratorTest < Rails::Generators::TestCase
         | 
| 4 | 
            -
              tests Devise::Generators::ViewsGenerator
         | 
| 5 | 
            -
              destination File.expand_path("../../tmp", __FILE__)
         | 
| 6 | 
            -
              setup :prepare_destination
         | 
| 7 | 
            -
             | 
| 8 | 
            -
              test "Assert all views are properly created with no params" do
         | 
| 9 | 
            -
                run_generator
         | 
| 10 | 
            -
                assert_files
         | 
| 11 | 
            -
                assert_shared_links
         | 
| 12 | 
            -
              end
         | 
| 13 | 
            -
             | 
| 14 | 
            -
              test "Assert all views are properly created with scope param" do
         | 
| 15 | 
            -
                run_generator %w(users)
         | 
| 16 | 
            -
                assert_files "users"
         | 
| 17 | 
            -
                assert_shared_links "users"
         | 
| 18 | 
            -
             | 
| 19 | 
            -
                run_generator %w(admins)
         | 
| 20 | 
            -
                assert_files "admins"
         | 
| 21 | 
            -
                assert_shared_links "admins"
         | 
| 22 | 
            -
              end
         | 
| 23 | 
            -
             | 
| 24 | 
            -
              test "Assert views with simple form" do
         | 
| 25 | 
            -
                run_generator %w(-b simple_form_for)
         | 
| 26 | 
            -
                assert_files
         | 
| 27 | 
            -
                assert_file "app/views/devise/confirmations/new.html.erb", /simple_form_for/
         | 
| 28 | 
            -
             | 
| 29 | 
            -
                run_generator %w(users -b simple_form_for)
         | 
| 30 | 
            -
                assert_files "users"
         | 
| 31 | 
            -
                assert_file "app/views/users/confirmations/new.html.erb", /simple_form_for/
         | 
| 32 | 
            -
              end
         | 
| 33 | 
            -
             | 
| 34 | 
            -
              test "Assert views with markerb" do
         | 
| 35 | 
            -
                run_generator %w(--markerb)
         | 
| 36 | 
            -
                assert_files nil, mail_template_engine: "markerb"
         | 
| 37 | 
            -
              end
         | 
| 38 | 
            -
             | 
| 39 | 
            -
             | 
| 40 | 
            -
              test "Assert only views within specified directories" do
         | 
| 41 | 
            -
                run_generator %w(-v sessions registrations)
         | 
| 42 | 
            -
                assert_file "app/views/devise/sessions/new.html.erb"
         | 
| 43 | 
            -
                assert_file "app/views/devise/registrations/new.html.erb"
         | 
| 44 | 
            -
                assert_file "app/views/devise/registrations/edit.html.erb"
         | 
| 45 | 
            -
                assert_no_file "app/views/devise/confirmations/new.html.erb"
         | 
| 46 | 
            -
                assert_no_file "app/views/devise/mailer/confirmation_instructions.html.erb"
         | 
| 47 | 
            -
              end
         | 
| 48 | 
            -
             | 
| 49 | 
            -
              test "Assert mailer specific directory with simple form" do
         | 
| 50 | 
            -
                run_generator %w(-v mailer -b simple_form_for)
         | 
| 51 | 
            -
                assert_file "app/views/devise/mailer/confirmation_instructions.html.erb"
         | 
| 52 | 
            -
                assert_file "app/views/devise/mailer/reset_password_instructions.html.erb"
         | 
| 53 | 
            -
                assert_file "app/views/devise/mailer/unlock_instructions.html.erb"
         | 
| 54 | 
            -
              end
         | 
| 55 | 
            -
             | 
| 56 | 
            -
              test "Assert specified directories with scope" do
         | 
| 57 | 
            -
                run_generator %w(users -v sessions)
         | 
| 58 | 
            -
                assert_file "app/views/users/sessions/new.html.erb"
         | 
| 59 | 
            -
                assert_no_file "app/views/users/confirmations/new.html.erb"
         | 
| 60 | 
            -
              end
         | 
| 61 | 
            -
             | 
| 62 | 
            -
              test "Assert specified directories with simple form" do
         | 
| 63 | 
            -
                run_generator %w(-v registrations -b simple_form_for)
         | 
| 64 | 
            -
                assert_file "app/views/devise/registrations/new.html.erb", /simple_form_for/
         | 
| 65 | 
            -
                assert_no_file "app/views/devise/confirmations/new.html.erb"
         | 
| 66 | 
            -
                end
         | 
| 67 | 
            -
             | 
| 68 | 
            -
              test "Assert specified directories with markerb" do
         | 
| 69 | 
            -
                run_generator %w(--markerb -v passwords mailer)
         | 
| 70 | 
            -
                assert_file "app/views/devise/passwords/new.html.erb"
         | 
| 71 | 
            -
                assert_no_file "app/views/devise/confirmations/new.html.erb"
         | 
| 72 | 
            -
                assert_file "app/views/devise/mailer/reset_password_instructions.markerb"
         | 
| 73 | 
            -
              end
         | 
| 74 | 
            -
             | 
| 75 | 
            -
              def assert_files(scope = nil, options={})
         | 
| 76 | 
            -
                scope = "devise" if scope.nil?
         | 
| 77 | 
            -
                mail_template_engine = options[:mail_template_engine] || "html.erb"
         | 
| 78 | 
            -
             | 
| 79 | 
            -
                assert_file "app/views/#{scope}/confirmations/new.html.erb"
         | 
| 80 | 
            -
                assert_file "app/views/#{scope}/mailer/confirmation_instructions.#{mail_template_engine}"
         | 
| 81 | 
            -
                assert_file "app/views/#{scope}/mailer/reset_password_instructions.#{mail_template_engine}"
         | 
| 82 | 
            -
                assert_file "app/views/#{scope}/mailer/unlock_instructions.#{mail_template_engine}"
         | 
| 83 | 
            -
                assert_file "app/views/#{scope}/passwords/edit.html.erb"
         | 
| 84 | 
            -
                assert_file "app/views/#{scope}/passwords/new.html.erb"
         | 
| 85 | 
            -
                assert_file "app/views/#{scope}/registrations/new.html.erb"
         | 
| 86 | 
            -
                assert_file "app/views/#{scope}/registrations/edit.html.erb"
         | 
| 87 | 
            -
                assert_file "app/views/#{scope}/sessions/new.html.erb"
         | 
| 88 | 
            -
                assert_file "app/views/#{scope}/shared/_links.html.erb"
         | 
| 89 | 
            -
                assert_file "app/views/#{scope}/unlocks/new.html.erb"
         | 
| 90 | 
            -
              end
         | 
| 91 | 
            -
             | 
| 92 | 
            -
              def assert_shared_links(scope = nil)
         | 
| 93 | 
            -
                scope = "devise" if scope.nil?
         | 
| 94 | 
            -
                link = /<%= render \"#{scope}\/shared\/links\" %>/
         | 
| 95 | 
            -
             | 
| 96 | 
            -
                assert_file "app/views/#{scope}/passwords/edit.html.erb", link
         | 
| 97 | 
            -
                assert_file "app/views/#{scope}/passwords/new.html.erb", link
         | 
| 98 | 
            -
                assert_file "app/views/#{scope}/confirmations/new.html.erb", link
         | 
| 99 | 
            -
                assert_file "app/views/#{scope}/registrations/new.html.erb", link
         | 
| 100 | 
            -
                assert_file "app/views/#{scope}/sessions/new.html.erb", link
         | 
| 101 | 
            -
                assert_file "app/views/#{scope}/unlocks/new.html.erb", link
         | 
| 102 | 
            -
              end
         | 
| 103 | 
            -
            end
         | 
| @@ -1,49 +0,0 @@ | |
| 1 | 
            -
            require 'test_helper'
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            class DeviseHelperTest < ActionDispatch::IntegrationTest
         | 
| 4 | 
            -
              setup do
         | 
| 5 | 
            -
                model_labels = { models: { user: "the user" } }
         | 
| 6 | 
            -
                translations = {
         | 
| 7 | 
            -
                  errors: { messages: { not_saved: {
         | 
| 8 | 
            -
                    one: "Can't save %{resource} because of 1 error",
         | 
| 9 | 
            -
                    other: "Can't save %{resource} because of %{count} errors",
         | 
| 10 | 
            -
                  } } },
         | 
| 11 | 
            -
                  activerecord: model_labels,
         | 
| 12 | 
            -
                  mongoid: model_labels
         | 
| 13 | 
            -
                }
         | 
| 14 | 
            -
             | 
| 15 | 
            -
                I18n.available_locales
         | 
| 16 | 
            -
                I18n.backend.store_translations(:en, translations)
         | 
| 17 | 
            -
              end
         | 
| 18 | 
            -
             | 
| 19 | 
            -
              teardown do
         | 
| 20 | 
            -
                I18n.reload!
         | 
| 21 | 
            -
              end
         | 
| 22 | 
            -
             | 
| 23 | 
            -
              test 'test errors.messages.not_saved with single error from i18n' do
         | 
| 24 | 
            -
                get new_user_registration_path
         | 
| 25 | 
            -
             | 
| 26 | 
            -
                fill_in 'password', with: 'new_user123'
         | 
| 27 | 
            -
                fill_in 'password confirmation', with: 'new_user123'
         | 
| 28 | 
            -
                click_button 'Sign up'
         | 
| 29 | 
            -
             | 
| 30 | 
            -
                assert_have_selector '#error_explanation'
         | 
| 31 | 
            -
                assert_contain "Can't save the user because of 1 error"
         | 
| 32 | 
            -
              end
         | 
| 33 | 
            -
             | 
| 34 | 
            -
              test 'test errors.messages.not_saved with multiple errors from i18n' do
         | 
| 35 | 
            -
                # Dirty tracking behavior prevents email validations from being applied:
         | 
| 36 | 
            -
                #    https://github.com/mongoid/mongoid/issues/756
         | 
| 37 | 
            -
                (pending "Fails on Mongoid < 2.1"; break) if defined?(Mongoid) && Mongoid::VERSION.to_f < 2.1
         | 
| 38 | 
            -
             | 
| 39 | 
            -
                get new_user_registration_path
         | 
| 40 | 
            -
             | 
| 41 | 
            -
                fill_in 'email', with: 'invalid_email'
         | 
| 42 | 
            -
                fill_in 'password', with: 'new_user123'
         | 
| 43 | 
            -
                fill_in 'password confirmation', with: 'new_user321'
         | 
| 44 | 
            -
                click_button 'Sign up'
         | 
| 45 | 
            -
             | 
| 46 | 
            -
                assert_have_selector '#error_explanation'
         | 
| 47 | 
            -
                assert_contain "Can't save the user because of 2 errors"
         | 
| 48 | 
            -
              end
         | 
| 49 | 
            -
            end
         |