2011-09-03 12:36:02 -04:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class RequiredTest < ActionView::TestCase
|
|
|
|
# REQUIRED AND PRESENCE VALIDATION
|
|
|
|
test 'builder input should obtain required from ActiveModel::Validations when it is included' do
|
|
|
|
with_form_for @validating_user, :name
|
|
|
|
assert_select 'input.required[required]#validating_user_name'
|
|
|
|
with_form_for @validating_user, :status
|
|
|
|
assert_select 'input.optional#validating_user_status'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should allow overriding required when ActiveModel::Validations is included' do
|
|
|
|
with_form_for @validating_user, :name, :required => false
|
|
|
|
assert_select 'input.optional#validating_user_name'
|
|
|
|
with_form_for @validating_user, :status, :required => true
|
|
|
|
assert_select 'input.required[required]#validating_user_status'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should be required by default when ActiveModel::Validations is not included' do
|
|
|
|
with_form_for @user, :name
|
|
|
|
assert_select 'input.required[required]#user_name'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should not be required by default when ActiveModel::Validations is not included if option is set to false' do
|
|
|
|
swap SimpleForm, :required_by_default => false do
|
|
|
|
with_form_for @user, :name
|
|
|
|
assert_select 'input.optional#user_name'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-26 08:54:04 -05:00
|
|
|
test 'when not using browser validations, input should not generate required html attribute' do
|
|
|
|
swap SimpleForm, :browser_validations => false do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input[type=text].required'
|
|
|
|
assert_no_select 'input[type=text][required]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-03 12:36:02 -04:00
|
|
|
test 'builder input should allow disabling required when ActiveModel::Validations is not included' do
|
|
|
|
with_form_for @user, :name, :required => false
|
|
|
|
assert_no_select 'input.required'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
assert_select 'input.optional#user_name'
|
|
|
|
end
|
|
|
|
|
2011-12-04 18:37:45 -05:00
|
|
|
test 'when not the required component the input does not have the required attribute but has the required class' do
|
|
|
|
swap_wrapper do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input[type=text].required'
|
|
|
|
assert_no_select 'input[type=text][required]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-03 12:36:02 -04:00
|
|
|
# VALIDATORS :if :unless
|
|
|
|
test 'builder input should not be required when ActiveModel::Validations is included and if option is present' do
|
|
|
|
with_form_for @validating_user, :age
|
|
|
|
assert_no_select 'input.required'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
assert_select 'input.optional#validating_user_age'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should not be required when ActiveModel::Validations is included and unless option is present' do
|
|
|
|
with_form_for @validating_user, :amount
|
|
|
|
assert_no_select 'input.required'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
assert_select 'input.optional#validating_user_amount'
|
|
|
|
end
|
|
|
|
|
|
|
|
# VALIDATORS :on
|
|
|
|
test 'builder input should be required when validation is on create and is not persisted' do
|
|
|
|
@validating_user.new_record!
|
|
|
|
with_form_for @validating_user, :action
|
|
|
|
assert_select 'input.required'
|
|
|
|
assert_select 'input[required]'
|
|
|
|
assert_select 'input.required[required]#validating_user_action'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should not be required when validation is on create and is persisted' do
|
|
|
|
with_form_for @validating_user, :action
|
|
|
|
assert_no_select 'input.required'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
assert_select 'input.optional#validating_user_action'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should be required when validation is on save' do
|
|
|
|
with_form_for @validating_user, :credit_limit
|
|
|
|
assert_select 'input.required'
|
|
|
|
assert_select 'input[required]'
|
|
|
|
assert_select 'input.required[required]#validating_user_credit_limit'
|
|
|
|
|
|
|
|
@validating_user.new_record!
|
|
|
|
with_form_for @validating_user, :credit_limit
|
|
|
|
assert_select 'input.required'
|
|
|
|
assert_select 'input[required]'
|
|
|
|
assert_select 'input.required[required]#validating_user_credit_limit'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should be required when validation is on update and is persisted' do
|
|
|
|
with_form_for @validating_user, :phone_number
|
|
|
|
assert_select 'input.required'
|
|
|
|
assert_select 'input[required]'
|
|
|
|
assert_select 'input.required[required]#validating_user_phone_number'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'builder input should not be required when validation is on update and is not persisted' do
|
|
|
|
@validating_user.new_record!
|
|
|
|
with_form_for @validating_user, :phone_number
|
|
|
|
assert_no_select 'input.required'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
assert_select 'input.optional#validating_user_phone_number'
|
|
|
|
end
|
2011-12-04 18:37:45 -05:00
|
|
|
end
|