Sha256: 2d6abffec2c2df72e81c18d6bb3e4a28f20b1acd6cfa9014867712efa7eb15e6

Contents?: true

Size: 1.48 KB

Versions: 13

Compression:

Stored size: 1.48 KB

Contents

require 'test_helper'

class DeviseHelperTest < ActionDispatch::IntegrationTest
  setup do
    model_labels = { models: { user: "the user" } }
    translations = {
      errors: { messages: { not_saved: {
        one: "Can't save %{resource} because of 1 error",
        other: "Can't save %{resource} because of %{count} errors",
      } } },
      activerecord: model_labels,
      mongoid: model_labels
    }

    I18n.available_locales
    I18n.backend.store_translations(:en, translations)
  end

  teardown do
    I18n.reload!
  end

  test 'test errors.messages.not_saved with single error from i18n' do
    get new_user_registration_path

    fill_in 'password', with: 'new_user123'
    fill_in 'password confirmation', with: 'new_user123'
    click_button 'Sign up'

    assert_have_selector '#error_explanation'
    assert_contain "Can't save the user because of 1 error"
  end

  test 'test errors.messages.not_saved with multiple errors from i18n' do
    # Dirty tracking behavior prevents email validations from being applied:
    #    https://github.com/mongoid/mongoid/issues/756
    (pending "Fails on Mongoid < 2.1"; break) if defined?(Mongoid) && Mongoid::VERSION.to_f < 2.1

    get new_user_registration_path

    fill_in 'email', with: 'invalid_email'
    fill_in 'password', with: 'new_user123'
    fill_in 'password confirmation', with: 'new_user321'
    click_button 'Sign up'

    assert_have_selector '#error_explanation'
    assert_contain "Can't save the user because of 2 errors"
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
devise-3.5.10 test/helpers/devise_helper_test.rb
devise-3.5.9 test/helpers/devise_helper_test.rb
devise-3.5.8 test/helpers/devise_helper_test.rb
devise-3.5.7 test/helpers/devise_helper_test.rb
devise-3.5.6 test/helpers/devise_helper_test.rb
devise-3.5.5 test/helpers/devise_helper_test.rb
devise-3.5.4 test/helpers/devise_helper_test.rb
devise-3.5.3 test/helpers/devise_helper_test.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/devise-3.5.2/test/helpers/devise_helper_test.rb
devise-3.5.2 test/helpers/devise_helper_test.rb
devise-3.5.1 test/helpers/devise_helper_test.rb
devise-3.4.1 test/helpers/devise_helper_test.rb
devise-3.4.0 test/helpers/devise_helper_test.rb