2010-06-17 18:12:36 -04:00
|
|
|
# encoding: UTF-8
|
2009-12-09 17:36:21 -05:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class InputTest < ActionView::TestCase
|
|
|
|
|
|
|
|
setup do
|
2010-01-09 12:12:46 -05:00
|
|
|
SimpleForm::Inputs::CollectionInput.reset_i18n_cache :boolean_collection
|
2010-01-09 10:05:02 -05:00
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
def with_input_for(object, attribute_name, type, options={})
|
2010-09-26 18:24:30 -04:00
|
|
|
with_concat_form_for(object) do |f|
|
2010-09-26 18:16:25 -04:00
|
|
|
f.input(attribute_name, options.merge(:as => type))
|
2010-09-26 18:24:30 -04:00
|
|
|
end
|
2010-01-09 10:05:02 -05:00
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# ALL
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate css class based on default input type' do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input.string'
|
|
|
|
with_input_for @user, :description, :text
|
|
|
|
assert_select 'textarea.text'
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_select 'input.integer'
|
|
|
|
with_input_for @user, :born_at, :date
|
|
|
|
assert_select 'select.date'
|
|
|
|
with_input_for @user, :created_at, :datetime
|
|
|
|
assert_select 'select.datetime'
|
|
|
|
end
|
2010-01-09 12:12:46 -05:00
|
|
|
|
2010-11-19 23:59:19 -05:00
|
|
|
test 'input should generate disabled elements based on the disabled option' do
|
|
|
|
with_input_for @user, :name, :string, :disabled => true
|
|
|
|
assert_select 'input.string[disabled]'
|
|
|
|
with_input_for @user, :description, :text, :disabled => true
|
|
|
|
assert_select 'textarea.text[disabled]'
|
|
|
|
with_input_for @user, :age, :integer, :disabled => true
|
|
|
|
assert_select 'input.integer[disabled]'
|
|
|
|
with_input_for @user, :born_at, :date, :disabled => true
|
|
|
|
assert_select 'select.date[disabled]'
|
|
|
|
with_input_for @user, :created_at, :datetime, :disabled => true
|
|
|
|
assert_select 'select.datetime[disabled]'
|
|
|
|
|
|
|
|
with_input_for @user, :name, :string, :disabled => false
|
|
|
|
assert_select 'input.string:not([disabled])'
|
|
|
|
with_input_for @user, :description, :text, :disabled => false
|
|
|
|
assert_select 'textarea.text:not([disabled])'
|
|
|
|
with_input_for @user, :age, :integer, :disabled => false
|
|
|
|
assert_select 'input.integer:not([disabled])'
|
|
|
|
with_input_for @user, :born_at, :date, :disabled => false
|
|
|
|
assert_select 'select.date:not([disabled])'
|
|
|
|
with_input_for @user, :created_at, :datetime, :disabled => false
|
|
|
|
assert_select 'select.datetime:not([disabled])'
|
|
|
|
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input.string:not([disabled])'
|
|
|
|
with_input_for @user, :description, :text
|
|
|
|
assert_select 'textarea.text:not([disabled])'
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_select 'input.integer:not([disabled])'
|
|
|
|
with_input_for @user, :born_at, :date
|
|
|
|
assert_select 'select.date:not([disabled])'
|
|
|
|
with_input_for @user, :created_at, :datetime
|
|
|
|
assert_select 'select.datetime:not([disabled])'
|
|
|
|
end
|
|
|
|
|
2010-12-17 06:28:47 -05:00
|
|
|
test 'input should generate autofocus attribute based on the autofocus option' do
|
|
|
|
with_input_for @user, :name, :string, :autofocus => true
|
|
|
|
assert_select 'input.string[autofocus]'
|
|
|
|
with_input_for @user, :description, :text, :autofocus => true
|
|
|
|
assert_select 'textarea.text[autofocus]'
|
|
|
|
with_input_for @user, :age, :integer, :autofocus => true
|
|
|
|
assert_select 'input.integer[autofocus]'
|
|
|
|
with_input_for @user, :born_at, :date, :autofocus => true
|
|
|
|
assert_select 'select.date[autofocus]'
|
|
|
|
with_input_for @user, :created_at, :datetime, :autofocus => true
|
|
|
|
assert_select 'select.datetime[autofocus]'
|
|
|
|
|
|
|
|
with_input_for @user, :name, :string, :autofocus => false
|
|
|
|
assert_select 'input.string:not([autofocus])'
|
|
|
|
with_input_for @user, :description, :text, :autofocus => false
|
|
|
|
assert_select 'textarea.text:not([autofocus])'
|
|
|
|
with_input_for @user, :age, :integer, :autofocus => false
|
|
|
|
assert_select 'input.integer:not([autofocus])'
|
|
|
|
with_input_for @user, :born_at, :date, :autofocus => false
|
|
|
|
assert_select 'select.date:not([autofocus])'
|
|
|
|
with_input_for @user, :created_at, :datetime, :autofocus => false
|
|
|
|
assert_select 'select.datetime:not([autofocus])'
|
|
|
|
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input.string:not([autofocus])'
|
|
|
|
with_input_for @user, :description, :text
|
|
|
|
assert_select 'textarea.text:not([autofocus])'
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_select 'input.integer:not([autofocus])'
|
|
|
|
with_input_for @user, :born_at, :date
|
|
|
|
assert_select 'select.date:not([autofocus])'
|
|
|
|
with_input_for @user, :created_at, :datetime
|
|
|
|
assert_select 'select.datetime:not([autofocus])'
|
|
|
|
end
|
|
|
|
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
test "when not using HTML5, it does not generate autofocus attribute" do
|
2011-05-16 05:45:16 -04:00
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @user, :name, :string, :autofocus => true
|
|
|
|
assert_no_select 'input.string[autofocus]'
|
|
|
|
end
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
end
|
|
|
|
|
2010-09-27 05:56:37 -04:00
|
|
|
test 'input should render components according to an optional :components option' do
|
|
|
|
with_input_for @user, :name, :string, :components => [:input, :label]
|
|
|
|
assert_select 'input + label'
|
|
|
|
|
|
|
|
with_input_for @user, :age, :integer, :components => [:input, :label]
|
|
|
|
assert_select 'input + label'
|
|
|
|
|
|
|
|
with_input_for @user, :active, :boolean, :components => [:label, :input]
|
|
|
|
assert_select 'label + input'
|
|
|
|
|
|
|
|
with_input_for @user, :description, :text, :components => [:input, :label]
|
|
|
|
assert_select 'textarea + label'
|
|
|
|
|
|
|
|
with_input_for @user, :password, :password, :components => [:input, :label]
|
|
|
|
assert_select 'input + label'
|
|
|
|
|
|
|
|
with_input_for @user, :name, :file, :components => [:input, :label]
|
|
|
|
assert_select 'input + label'
|
|
|
|
|
|
|
|
with_input_for @user, :country, :country, :components => [:input, :label]
|
|
|
|
assert_select 'select + label'
|
|
|
|
|
|
|
|
with_input_for @user, :time_zone, :time_zone, :components => [:input, :label]
|
|
|
|
assert_select 'select + label'
|
|
|
|
end
|
|
|
|
|
2010-07-08 06:19:12 -04:00
|
|
|
# StringInput
|
2010-01-09 12:12:46 -05:00
|
|
|
test 'input should map text field to string attribute' do
|
|
|
|
with_input_for @user, :name, :string
|
2011-04-05 19:40:34 -04:00
|
|
|
assert_select "input#user_name[type=text][name='user[name]'][value=New in Simple Form!]"
|
2010-01-09 12:12:46 -05:00
|
|
|
end
|
|
|
|
|
2011-03-25 09:25:09 -04:00
|
|
|
test 'input should generate a password field for password attributes' do
|
2011-03-01 15:18:56 -05:00
|
|
|
with_input_for @user, :password, :password
|
2011-04-05 19:40:34 -04:00
|
|
|
assert_select "input#user_password.password[type=password][name='user[password]']"
|
2011-03-01 15:18:56 -05:00
|
|
|
end
|
|
|
|
|
2011-08-25 17:13:20 -04:00
|
|
|
test 'input should not use size attribute for decimal attributes' do
|
2010-02-06 16:06:25 -05:00
|
|
|
with_input_for @user, :credit_limit, :decimal
|
2011-08-25 17:13:20 -04:00
|
|
|
assert_no_select 'input.decimal[size]'
|
2010-02-06 16:06:25 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should get maxlength from column definition for string attributes' do
|
2010-01-09 12:12:46 -05:00
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input.string[maxlength=100]'
|
|
|
|
end
|
2010-02-06 16:06:25 -05:00
|
|
|
|
2011-08-30 22:43:53 -04:00
|
|
|
test 'input should not get maxlength from column without size definition for string attributes' do
|
|
|
|
with_input_for @user, :action, :string
|
|
|
|
assert_no_select 'input.string[maxlength]'
|
|
|
|
end
|
|
|
|
|
2010-02-06 16:06:25 -05:00
|
|
|
test 'input should get size from column definition for string attributes respecting maximum value' do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input.string[size=50]'
|
2010-01-09 12:12:46 -05:00
|
|
|
end
|
|
|
|
|
2011-03-01 14:51:39 -05:00
|
|
|
test 'input should use default text size for password attributes' do
|
|
|
|
with_input_for @user, :password, :password
|
2011-04-05 19:40:34 -04:00
|
|
|
assert_select 'input.password[type=password][size=50]'
|
2011-03-01 14:51:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should get maxlength from column definition for password attributes' do
|
|
|
|
with_input_for @user, :password, :password
|
2011-04-05 19:40:34 -04:00
|
|
|
assert_select 'input.password[type=password][maxlength=100]'
|
2011-03-01 14:51:39 -05:00
|
|
|
end
|
|
|
|
|
2011-07-20 18:53:14 -04:00
|
|
|
test 'input should infer maxlength column definition from validation when present' do
|
|
|
|
with_input_for @validating_user, :name, :string
|
|
|
|
assert_select 'input.string[maxlength=25]'
|
2011-07-17 07:15:36 -04:00
|
|
|
end
|
|
|
|
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
test 'when not using HTML5, does not show maxlength attribute' do
|
2011-05-16 05:45:16 -04:00
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @user, :password, :password
|
|
|
|
assert_no_select 'input[type=password][maxlength]'
|
|
|
|
end
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
end
|
|
|
|
|
2011-08-30 22:43:53 -04:00
|
|
|
test 'when not using HTML5, does not show maxlength attribute with validating lenght attribute' do
|
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @validating_user, :name, :string
|
|
|
|
assert_no_select 'input.string[maxlength]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-23 23:44:13 -04:00
|
|
|
test 'input should not generate placeholder by default' do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_no_select 'input[placeholder]'
|
|
|
|
end
|
|
|
|
|
2010-09-22 14:45:22 -04:00
|
|
|
test 'input should accept the placeholder option' do
|
|
|
|
with_input_for @user, :name, :string, :placeholder => 'Put in some text'
|
|
|
|
assert_select 'input.string[placeholder=Put in some text]'
|
|
|
|
end
|
|
|
|
|
2011-03-25 09:25:09 -04:00
|
|
|
test 'input should generate a password field for password attributes that accept placeholder' do
|
|
|
|
with_input_for @user, :password, :password, :placeholder => 'Password Confirmation'
|
|
|
|
assert_select 'input[type=password].password[placeholder=Password Confirmation]#user_password'
|
|
|
|
end
|
|
|
|
|
2010-09-22 14:45:22 -04:00
|
|
|
test 'input should use i18n to translate placeholder text' do
|
2010-09-23 23:51:57 -04:00
|
|
|
store_translations(:en, :simple_form => { :placeholders => { :user => {
|
2010-09-22 14:45:22 -04:00
|
|
|
:name => 'Name goes here'
|
|
|
|
} } }) do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select 'input.string[placeholder=Name goes here]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-26 22:39:55 -04:00
|
|
|
[:email, :url, :search, :tel].each do |type|
|
|
|
|
test "input should allow type #{type}" do
|
|
|
|
with_input_for @user, :name, type
|
|
|
|
assert_select "input.string.#{type}"
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
assert_select "input[type=#{type}]"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "input should not allow type #{type} if HTML5 compatibility is disabled" do
|
2011-05-16 05:45:16 -04:00
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @user, :name, type
|
|
|
|
assert_no_select "input[type=#{type}]"
|
|
|
|
end
|
2010-09-26 22:39:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-08 06:19:12 -04:00
|
|
|
# NumericInput
|
|
|
|
test 'input should generate an integer text field for integer attributes ' do
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_select 'input[type=number].integer#user_age'
|
|
|
|
end
|
|
|
|
|
2010-09-13 23:40:03 -04:00
|
|
|
test 'input should generate a float text field for float attributes ' do
|
|
|
|
with_input_for @user, :age, :float
|
|
|
|
assert_select 'input[type=number].float#user_age'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should generate a decimal text field for decimal attributes ' do
|
|
|
|
with_input_for @user, :age, :decimal
|
|
|
|
assert_select 'input[type=number].decimal#user_age'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should not generate min attribute by default' do
|
2010-09-08 13:17:58 -04:00
|
|
|
with_input_for @user, :age, :integer
|
2010-09-13 23:40:03 -04:00
|
|
|
assert_no_select 'input[min]'
|
2010-09-08 13:17:58 -04:00
|
|
|
end
|
|
|
|
|
2010-09-13 23:40:03 -04:00
|
|
|
test 'input should not generate max attribute by default' do
|
2010-09-08 13:17:58 -04:00
|
|
|
with_input_for @user, :age, :integer
|
2010-09-13 23:40:03 -04:00
|
|
|
assert_no_select 'input[max]'
|
2010-09-08 13:17:58 -04:00
|
|
|
end
|
|
|
|
|
2010-09-13 23:40:03 -04:00
|
|
|
test 'input should infer min value from integer attributes with greater than validation' do
|
|
|
|
with_input_for @other_validating_user, :age, :float
|
|
|
|
assert_no_select 'input[min]'
|
|
|
|
|
2010-09-05 12:46:02 -04:00
|
|
|
with_input_for @other_validating_user, :age, :integer
|
|
|
|
assert_select 'input[min=18]'
|
|
|
|
end
|
|
|
|
|
2011-03-10 21:54:59 -05:00
|
|
|
test 'input should infer min value from integer attributes with greater than validation using symbol' do
|
|
|
|
with_input_for @validating_user, :amount, :float
|
|
|
|
assert_no_select 'input[min]'
|
|
|
|
|
|
|
|
with_input_for @validating_user, :amount, :integer
|
|
|
|
assert_select 'input[min=11]'
|
|
|
|
end
|
|
|
|
|
2011-03-11 23:12:01 -05:00
|
|
|
test 'input should infer min value from integer attributes with greater than or equal to validation using symbol' do
|
|
|
|
with_input_for @validating_user, :attempts, :float
|
|
|
|
assert_select 'input[min=1]'
|
|
|
|
|
|
|
|
with_input_for @validating_user, :attempts, :integer
|
|
|
|
assert_select 'input[min=1]'
|
|
|
|
end
|
|
|
|
|
2011-03-10 21:54:59 -05:00
|
|
|
test 'input should infer min value from integer attributes with greater than validation using proc' do
|
|
|
|
with_input_for @other_validating_user, :amount, :float
|
|
|
|
assert_no_select 'input[min]'
|
|
|
|
|
|
|
|
with_input_for @other_validating_user, :amount, :integer
|
|
|
|
assert_select 'input[min=20]'
|
|
|
|
end
|
|
|
|
|
2011-03-11 23:12:01 -05:00
|
|
|
test 'input should infer min value from integer attributes with greater than or equal to validation using proc' do
|
|
|
|
with_input_for @other_validating_user, :attempts, :float
|
|
|
|
assert_select 'input[min=19]'
|
|
|
|
|
|
|
|
with_input_for @other_validating_user, :attempts, :integer
|
|
|
|
assert_select 'input[min=19]'
|
|
|
|
end
|
|
|
|
|
2010-09-13 23:40:03 -04:00
|
|
|
test 'input should infer max value from attributes with less than validation' do
|
|
|
|
with_input_for @other_validating_user, :age, :float
|
|
|
|
assert_no_select 'input[max]'
|
|
|
|
|
2010-09-05 12:46:02 -04:00
|
|
|
with_input_for @other_validating_user, :age, :integer
|
|
|
|
assert_select 'input[max=99]'
|
|
|
|
end
|
|
|
|
|
2011-03-10 21:54:59 -05:00
|
|
|
test 'input should infer max value from attributes with less than validation using symbol' do
|
|
|
|
with_input_for @validating_user, :amount, :float
|
|
|
|
assert_no_select 'input[max]'
|
|
|
|
|
|
|
|
with_input_for @validating_user, :amount, :integer
|
|
|
|
assert_select 'input[max=99]'
|
|
|
|
end
|
|
|
|
|
2011-03-11 23:12:01 -05:00
|
|
|
test 'input should infer max value from attributes with less than or equal to validation using symbol' do
|
|
|
|
with_input_for @validating_user, :attempts, :float
|
|
|
|
assert_select 'input[max=100]'
|
|
|
|
|
|
|
|
with_input_for @validating_user, :attempts, :integer
|
|
|
|
assert_select 'input[max=100]'
|
|
|
|
end
|
|
|
|
|
2011-03-10 21:54:59 -05:00
|
|
|
test 'input should infer max value from attributes with less than validation using proc' do
|
|
|
|
with_input_for @other_validating_user, :amount, :float
|
|
|
|
assert_no_select 'input[max]'
|
|
|
|
|
|
|
|
with_input_for @other_validating_user, :amount, :integer
|
|
|
|
assert_select 'input[max=118]'
|
|
|
|
end
|
|
|
|
|
2011-03-11 23:12:01 -05:00
|
|
|
test 'input should infer max value from attributes with less than or equal to validation using proc' do
|
|
|
|
with_input_for @other_validating_user, :attempts, :float
|
|
|
|
assert_select 'input[max=119]'
|
|
|
|
|
|
|
|
with_input_for @other_validating_user, :attempts, :integer
|
|
|
|
assert_select 'input[max=119]'
|
|
|
|
end
|
|
|
|
|
2011-08-30 20:16:00 -04:00
|
|
|
test 'input should infer pattern from attributes when it is present' do
|
|
|
|
with_input_for @other_validating_user, :country, :string
|
|
|
|
assert_select 'input[pattern="\w+"]'
|
|
|
|
end
|
|
|
|
|
2011-03-16 17:56:24 -04:00
|
|
|
test 'input should have step value of any except for integer attribute' do
|
2010-09-13 23:40:03 -04:00
|
|
|
with_input_for @validating_user, :age, :float
|
2011-03-16 17:56:24 -04:00
|
|
|
assert_select 'input[step="any"]'
|
2010-09-13 23:40:03 -04:00
|
|
|
|
2010-09-05 11:32:13 -04:00
|
|
|
with_input_for @validating_user, :age, :integer
|
|
|
|
assert_select 'input[step=1]'
|
|
|
|
end
|
|
|
|
|
2010-10-06 14:55:52 -04:00
|
|
|
test 'numeric input should not generate placeholder by default' do
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_no_select 'input[placeholder]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'numeric input should accept the placeholder option' do
|
2010-10-06 15:40:56 -04:00
|
|
|
with_input_for @user, :age, :integer, :placeholder => 'Put in your age'
|
|
|
|
assert_select 'input.integer[placeholder=Put in your age]'
|
2010-10-06 14:55:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'numeric input should use i18n to translate placeholder text' do
|
|
|
|
store_translations(:en, :simple_form => { :placeholders => { :user => {
|
|
|
|
:age => 'Age goes here'
|
|
|
|
} } }) do
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_select 'input.integer[placeholder=Age goes here]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
# Numeric input but HTML5 disabled
|
|
|
|
test ' when not using HTML5 input should not generate field with type number and use text instead' do
|
2011-05-16 05:45:16 -04:00
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @user, :age, :integer
|
|
|
|
assert_no_select "input[type=number]"
|
|
|
|
assert_no_select "input#user_age[text]"
|
|
|
|
end
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'when not using HTML5 input should not use min or max or step attributes' do
|
2011-05-16 05:45:16 -04:00
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @validating_user, :age, :integer
|
|
|
|
assert_no_select "input[min]"
|
|
|
|
assert_no_select "input[max]"
|
|
|
|
assert_no_select "input[step]"
|
|
|
|
end
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
end
|
|
|
|
|
2010-09-08 13:11:57 -04:00
|
|
|
[:integer, :float, :decimal].each do |type|
|
2010-09-13 23:40:03 -04:00
|
|
|
test "#{type} input should infer min value from attributes with greater than or equal validation" do
|
2010-09-08 13:11:57 -04:00
|
|
|
with_input_for @validating_user, :age, type
|
|
|
|
assert_select 'input[min=18]'
|
|
|
|
end
|
|
|
|
|
2010-09-13 23:40:03 -04:00
|
|
|
test "#{type} input should infer the max value from attributes with less than or equal to validation" do
|
2010-09-08 13:11:57 -04:00
|
|
|
with_input_for @validating_user, :age, type
|
|
|
|
assert_select 'input[max=99]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-06 05:24:12 -04:00
|
|
|
# BooleanInput
|
|
|
|
test 'input should generate a checkbox by default for boolean attributes' do
|
|
|
|
with_input_for @user, :active, :boolean
|
|
|
|
assert_select 'input[type=checkbox].boolean#user_active'
|
|
|
|
assert_select 'input.boolean + label.boolean.optional'
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# MappingInput
|
|
|
|
test 'input should generate a text area for text attributes' do
|
|
|
|
with_input_for @user, :description, :text
|
|
|
|
assert_select 'textarea.text#user_description'
|
|
|
|
end
|
|
|
|
|
2010-10-06 15:34:52 -04:00
|
|
|
test 'input should generate a text area for text attributes that accept placeholder' do
|
|
|
|
with_input_for @user, :description, :text, :placeholder => 'Put in some text'
|
|
|
|
assert_select 'textarea.text[placeholder=Put in some text]'
|
|
|
|
end
|
|
|
|
|
2011-08-30 19:51:53 -04:00
|
|
|
test 'input should get maxlength from column definition for text attributes' do
|
|
|
|
with_input_for @user, :description, :text
|
|
|
|
assert_select 'textarea.text[maxlength=200]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should infer maxlength column definition from validation when present for text attributes' do
|
|
|
|
with_input_for @validating_user, :description, :text
|
|
|
|
assert_select 'textarea.text[maxlength=50]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'when not using HTML5, does not show maxlength attribute for text attributes' do
|
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @user, :description, :text
|
|
|
|
assert_no_select 'textarea.text[maxlength]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-30 22:43:53 -04:00
|
|
|
test 'when not using HTML5, does not show maxlength attribute with validating lenght text attribute' do
|
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @validating_user, :name, :string
|
|
|
|
assert_no_select 'input.string[maxlength]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
test 'input should generate a file field' do
|
|
|
|
with_input_for @user, :name, :file
|
|
|
|
assert_select 'input#user_name[type=file]'
|
|
|
|
end
|
|
|
|
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
test "input should generate a file field that doesn't accept placeholder" do
|
2010-10-06 15:54:43 -04:00
|
|
|
with_input_for @user, :name, :file, :placeholder => 'Put in some text'
|
|
|
|
assert_no_select 'input[placeholder]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# HiddenInput
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a hidden field' do
|
|
|
|
with_input_for @user, :name, :hidden
|
|
|
|
assert_no_select 'input[type=text]'
|
|
|
|
assert_select 'input#user_name[type=hidden]'
|
|
|
|
end
|
2010-01-09 12:12:46 -05:00
|
|
|
|
|
|
|
test 'hint should not be generated for hidden fields' do
|
|
|
|
with_input_for @user, :name, :hidden, :hint => 'Use with care...'
|
|
|
|
assert_no_select 'span.hint'
|
2010-01-09 10:05:02 -05:00
|
|
|
end
|
2010-01-09 12:12:46 -05:00
|
|
|
|
|
|
|
test 'label should not be generated for hidden inputs' do
|
|
|
|
with_input_for @user, :name, :hidden
|
|
|
|
assert_no_select 'label'
|
|
|
|
end
|
|
|
|
|
2010-09-26 22:53:06 -04:00
|
|
|
test 'required/optional options should not be generated for hidden inputs' do
|
|
|
|
with_input_for @user, :name, :hidden
|
|
|
|
assert_no_select 'input.required'
|
|
|
|
assert_no_select 'input[required]'
|
|
|
|
assert_no_select 'input.optional'
|
|
|
|
assert_select 'input.hidden#user_name'
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# PriorityInput
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a country select field' do
|
|
|
|
with_input_for @user, :country, :country
|
|
|
|
assert_select 'select#user_country'
|
|
|
|
assert_select 'select option[value=Brazil]', 'Brazil'
|
|
|
|
assert_no_select 'select option[value=][disabled=disabled]'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a country select with simple form default' do
|
|
|
|
swap SimpleForm, :country_priority => [ 'Brazil' ] do
|
|
|
|
with_input_for @user, :country, :country
|
|
|
|
assert_select 'select option[value=][disabled=disabled]'
|
|
|
|
end
|
|
|
|
end
|
2010-01-09 12:12:46 -05:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a time zone select field' do
|
|
|
|
with_input_for @user, :time_zone, :time_zone
|
|
|
|
assert_select 'select#user_time_zone'
|
|
|
|
assert_select 'select option[value=Brasilia]', '(GMT-03:00) Brasilia'
|
|
|
|
assert_no_select 'select option[value=][disabled=disabled]'
|
|
|
|
end
|
2010-02-03 09:56:27 -05:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a time zone select field with default' do
|
|
|
|
with_input_for @user, :time_zone, :time_zone, :default => 'Brasilia'
|
|
|
|
assert_select 'select option[value=Brasilia][selected=selected]'
|
2010-02-03 09:56:27 -05:00
|
|
|
assert_no_select 'select option[value=]'
|
2010-01-09 10:05:02 -05:00
|
|
|
end
|
2010-02-03 09:56:27 -05:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a time zone select using options priority' do
|
|
|
|
with_input_for @user, :time_zone, :time_zone, :priority => /Brasilia/
|
|
|
|
assert_select 'select option[value=][disabled=disabled]'
|
2010-02-03 09:56:27 -05:00
|
|
|
assert_no_select 'select option[value=]', /^$/
|
2010-01-09 10:05:02 -05:00
|
|
|
end
|
2010-01-09 12:12:46 -05:00
|
|
|
|
2010-12-10 17:57:22 -05:00
|
|
|
test 'priority input should not generate invalid required html attribute' do
|
|
|
|
with_input_for @user, :country, :country
|
|
|
|
assert_select 'select.required'
|
|
|
|
assert_no_select 'select[required]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# DateTime input
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a datetime select by default for datetime attributes' do
|
|
|
|
with_input_for @user, :created_at, :datetime
|
|
|
|
1.upto(5) do |i|
|
|
|
|
assert_select "form select.datetime#user_created_at_#{i}i"
|
|
|
|
end
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should be able to pass options to datetime select' do
|
|
|
|
with_input_for @user, :created_at, :datetime,
|
|
|
|
:disabled => true, :prompt => { :year => 'ano', :month => 'mês', :day => 'dia' }
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
assert_select 'select.datetime[disabled=disabled]'
|
|
|
|
assert_select 'select.datetime option', 'ano'
|
|
|
|
assert_select 'select.datetime option', 'mês'
|
|
|
|
assert_select 'select.datetime option', 'dia'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a date select for date attributes' do
|
|
|
|
with_input_for @user, :born_at, :date
|
|
|
|
assert_select 'select.date#user_born_at_1i'
|
|
|
|
assert_select 'select.date#user_born_at_2i'
|
|
|
|
assert_select 'select.date#user_born_at_3i'
|
|
|
|
assert_no_select 'select.date#user_born_at_4i'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should be able to pass options to date select' do
|
|
|
|
with_input_for @user, :born_at, :date, :as => :date,
|
|
|
|
:disabled => true, :prompt => { :year => 'ano', :month => 'mês', :day => 'dia' }
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
assert_select 'select.date[disabled=disabled]'
|
|
|
|
assert_select 'select.date option', 'ano'
|
|
|
|
assert_select 'select.date option', 'mês'
|
|
|
|
assert_select 'select.date option', 'dia'
|
|
|
|
end
|
2010-02-03 09:56:27 -05:00
|
|
|
|
|
|
|
test 'input should be able to pass :default to date select' do
|
|
|
|
with_input_for @user, :born_at, :date, :default => Date.today
|
|
|
|
assert_select "select.date option[value=#{Date.today.year}][selected=selected]"
|
|
|
|
end
|
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a time select for time attributes' do
|
|
|
|
with_input_for @user, :delivery_time, :time
|
|
|
|
assert_select 'input[type=hidden]#user_delivery_time_1i'
|
|
|
|
assert_select 'input[type=hidden]#user_delivery_time_2i'
|
|
|
|
assert_select 'input[type=hidden]#user_delivery_time_3i'
|
|
|
|
assert_select 'select.time#user_delivery_time_4i'
|
|
|
|
assert_select 'select.time#user_delivery_time_5i'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should be able to pass options to time select' do
|
|
|
|
with_input_for @user, :delivery_time, :time, :required => true,
|
|
|
|
:disabled => true, :prompt => { :hour => 'hora', :minute => 'minuto' }
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
assert_select 'select.time[disabled=disabled]'
|
|
|
|
assert_select 'select.time option', 'hora'
|
|
|
|
assert_select 'select.time option', 'minuto'
|
|
|
|
end
|
2010-01-09 12:12:46 -05:00
|
|
|
|
|
|
|
test 'label should point to first option when date input type' do
|
|
|
|
with_input_for :project, :created_at, :date
|
|
|
|
assert_select 'label[for=project_created_at_1i]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'label should point to first option when datetime input type' do
|
|
|
|
with_input_for :project, :created_at, :datetime
|
|
|
|
assert_select 'label[for=project_created_at_1i]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'label should point to first option when time input type' do
|
|
|
|
with_input_for :project, :created_at, :time
|
|
|
|
assert_select 'label[for=project_created_at_4i]'
|
|
|
|
end
|
|
|
|
|
2010-12-10 17:57:22 -05:00
|
|
|
test 'date time input should not generate invalid required html attribute' do
|
|
|
|
with_input_for @user, :delivery_time, :time, :required => true
|
|
|
|
assert_select 'select.required'
|
|
|
|
assert_no_select 'select[required]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# CollectionInput
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate boolean radio buttons by default for radio types' do
|
|
|
|
with_input_for @user, :active, :radio
|
|
|
|
assert_select 'input[type=radio][value=true].radio#user_active_true'
|
|
|
|
assert_select 'input[type=radio][value=false].radio#user_active_false'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input as radio should generate internal labels by default' do
|
|
|
|
with_input_for @user, :active, :radio
|
|
|
|
assert_select 'label[for=user_active_true]', 'Yes'
|
|
|
|
assert_select 'label[for=user_active_false]', 'No'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input as radio should use i18n to translate internal labels' do
|
|
|
|
store_translations(:en, :simple_form => { :yes => 'Sim', :no => 'Não' }) do
|
|
|
|
with_input_for @user, :active, :radio
|
|
|
|
assert_select 'label[for=user_active_true]', 'Sim'
|
|
|
|
assert_select 'label[for=user_active_false]', 'Não'
|
|
|
|
end
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2011-02-14 20:44:22 -05:00
|
|
|
test 'input should mark the checked value when using boolean and radios' do
|
|
|
|
@user.active = false
|
|
|
|
with_input_for @user, :active, :radio
|
|
|
|
assert_no_select 'input[type=radio][value=true][checked]'
|
|
|
|
assert_select 'input[type=radio][value=false][checked]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should generate a boolean select with options by default for select types' do
|
|
|
|
with_input_for @user, :active, :select
|
|
|
|
assert_select 'select.select#user_active'
|
|
|
|
assert_select 'select option[value=true]', 'Yes'
|
|
|
|
assert_select 'select option[value=false]', 'No'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input as select should use i18n to translate select boolean options' do
|
|
|
|
store_translations(:en, :simple_form => { :yes => 'Sim', :no => 'Não' }) do
|
|
|
|
with_input_for @user, :active, :select
|
|
|
|
assert_select 'select option[value=true]', 'Sim'
|
|
|
|
assert_select 'select option[value=false]', 'Não'
|
|
|
|
end
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should allow overriding collection for select types' do
|
|
|
|
with_input_for @user, :name, :select, :collection => ['Jose', 'Carlos']
|
|
|
|
assert_select 'select.select#user_name'
|
|
|
|
assert_select 'select option', 'Jose'
|
|
|
|
assert_select 'select option', 'Carlos'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should mark the selected value by default' do
|
|
|
|
@user.name = "Carlos"
|
|
|
|
with_input_for @user, :name, :select, :collection => ['Jose', 'Carlos']
|
|
|
|
assert_select 'select option[selected=selected]', 'Carlos'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should mark the selected value also when using integers' do
|
|
|
|
@user.age = 18
|
|
|
|
with_input_for @user, :age, :select, :collection => 18..60
|
|
|
|
assert_select 'select option[selected=selected]', '18'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2011-02-14 20:44:22 -05:00
|
|
|
test 'input should mark the selected value when using booleans and select' do
|
|
|
|
@user.active = false
|
|
|
|
with_input_for @user, :active, :select
|
|
|
|
assert_no_select 'select option[selected][value=true]', 'Yes'
|
|
|
|
assert_select 'select option[selected][value=false]', 'No'
|
|
|
|
end
|
|
|
|
|
2010-12-03 11:36:44 -05:00
|
|
|
test 'input should set the correct value when using a collection that includes floats' do
|
|
|
|
with_input_for @user, :age, :select, :collection => [2.0, 2.5, 3.0, 3.5, 4.0, 4.5]
|
|
|
|
assert_select 'select option[value="2.0"]'
|
|
|
|
assert_select 'select option[value="2.5"]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should set the correct values when using a collection that uses mixed values' do
|
2010-12-06 21:24:56 -05:00
|
|
|
with_input_for @user, :age, :select, :collection => ["Hello Kitty", 2, 4.5, :johnny, nil, true, false]
|
2010-12-03 11:36:44 -05:00
|
|
|
assert_select 'select option[value="Hello Kitty"]'
|
|
|
|
assert_select 'select option[value="2"]'
|
|
|
|
assert_select 'select option[value="4.5"]'
|
|
|
|
assert_select 'select option[value="johnny"]'
|
|
|
|
assert_select 'select option[value=""]'
|
2010-12-06 21:24:56 -05:00
|
|
|
assert_select 'select option[value="true"]'
|
|
|
|
assert_select 'select option[value="false"]'
|
2010-12-03 11:36:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should include a blank option even if :include_blank is set to false if the collection includes a nil value' do
|
|
|
|
with_input_for @user, :age, :select, :collection => [nil], :include_blank => false
|
|
|
|
assert_select 'select option[value=""]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should automatically set include blank' do
|
|
|
|
with_input_for @user, :age, :select, :collection => 18..30
|
|
|
|
assert_select 'select option[value=]', ''
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should not set include blank if otherwise is told' do
|
|
|
|
with_input_for @user, :age, :select, :collection => 18..30, :include_blank => false
|
|
|
|
assert_no_select 'select option[value=]', ''
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should not set include blank if prompt is given' do
|
|
|
|
with_input_for @user, :age, :select, :collection => 18..30, :prompt => "Please select foo"
|
|
|
|
assert_no_select 'select option[value=]', ''
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should not set include blank if multiple is given' do
|
|
|
|
with_input_for @user, :age, :select, :collection => 18..30, :input_html => { :multiple => true }
|
|
|
|
assert_no_select 'select option[value=]', ''
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should detect label and value on collections' do
|
|
|
|
users = [ setup_new_user(:id => 1, :name => "Jose"), setup_new_user(:id => 2, :name => "Carlos") ]
|
|
|
|
with_input_for @user, :description, :select, :collection => users
|
|
|
|
assert_select 'select option[value=1]', 'Jose'
|
|
|
|
assert_select 'select option[value=2]', 'Carlos'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2011-08-30 20:31:48 -04:00
|
|
|
test 'input should disable the anothers components when the option is a object' do
|
|
|
|
with_input_for @user, :description, :select, :collection => ["Jose", "Carlos"], :disabled => true
|
|
|
|
assert_no_select 'select option[value=Jose][disabled=disabled]', 'Jose'
|
|
|
|
assert_no_select 'select option[value=Carlos][disabled=disabled]', 'Carlos'
|
|
|
|
assert_select 'select[disabled=disabled]'
|
|
|
|
assert_select 'div.disabled'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should not disable the anothers components when the option is a object' do
|
|
|
|
with_input_for @user, :description, :select, :collection => ["Jose", "Carlos"], :disabled => 'Jose'
|
|
|
|
assert_select 'select option[value=Jose][disabled=disabled]', 'Jose'
|
|
|
|
assert_no_select 'select option[value=Carlos][disabled=disabled]', 'Carlos'
|
|
|
|
assert_no_select 'select[disabled=disabled]'
|
|
|
|
assert_no_select 'div.disabled'
|
|
|
|
end
|
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should allow overriding collection for radio types' do
|
|
|
|
with_input_for @user, :name, :radio, :collection => ['Jose', 'Carlos']
|
|
|
|
assert_select 'input[type=radio][value=Jose]'
|
|
|
|
assert_select 'input[type=radio][value=Carlos]'
|
|
|
|
assert_select 'label.collection_radio', 'Jose'
|
|
|
|
assert_select 'label.collection_radio', 'Carlos'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should mark the current radio value by default' do
|
|
|
|
@user.name = "Carlos"
|
|
|
|
with_input_for @user, :name, :radio, :collection => ['Jose', 'Carlos']
|
|
|
|
assert_select 'input[type=radio][value=Carlos][checked=checked]'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should allow using a collection with text/value arrays' do
|
|
|
|
with_input_for @user, :name, :radio, :collection => [['Jose', 'jose'], ['Carlos', 'carlos']]
|
|
|
|
assert_select 'input[type=radio][value=jose]'
|
|
|
|
assert_select 'input[type=radio][value=carlos]'
|
|
|
|
assert_select 'label.collection_radio', 'Jose'
|
|
|
|
assert_select 'label.collection_radio', 'Carlos'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-12-07 20:55:10 -05:00
|
|
|
test 'input should allow overriding only label method for collections' do
|
|
|
|
with_input_for @user, :name, :radio,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => :upcase
|
|
|
|
assert_select 'label.collection_radio', 'JOSE'
|
|
|
|
assert_select 'label.collection_radio', 'CARLOS'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding only value method for collections' do
|
|
|
|
with_input_for @user, :name, :radio,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:value_method => :upcase
|
|
|
|
assert_select 'input[type=radio][value=JOSE]'
|
|
|
|
assert_select 'input[type=radio][value=CARLOS]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should allow overriding label and value method for collections' do
|
|
|
|
with_input_for @user, :name, :radio,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => :upcase,
|
|
|
|
:value_method => :downcase
|
|
|
|
assert_select 'input[type=radio][value=jose]'
|
|
|
|
assert_select 'input[type=radio][value=carlos]'
|
|
|
|
assert_select 'label.collection_radio', 'JOSE'
|
2010-08-24 18:08:48 -04:00
|
|
|
assert_select 'label.collection_radio', 'CARLOS'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding label and value method using a lambda for collections' do
|
|
|
|
with_input_for @user, :name, :radio,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => lambda { |i| i.upcase },
|
|
|
|
:value_method => lambda { |i| i.downcase }
|
|
|
|
assert_select 'input[type=radio][value=jose]'
|
|
|
|
assert_select 'input[type=radio][value=carlos]'
|
|
|
|
assert_select 'label.collection_radio', 'JOSE'
|
2010-01-09 10:05:02 -05:00
|
|
|
assert_select 'label.collection_radio', 'CARLOS'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2011-02-06 17:17:27 -05:00
|
|
|
test 'input should allow overriding label and value method using a lambda for collection selects' do
|
|
|
|
with_input_for @user, :name, :select,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => lambda { |i| i.upcase },
|
|
|
|
:value_method => lambda { |i| i.downcase }
|
|
|
|
assert_select 'select option[value=jose]', "JOSE"
|
|
|
|
assert_select 'select option[value=carlos]', "CARLOS"
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding only label but not value method using a lambda for collection select' do
|
|
|
|
with_input_for @user, :name, :select,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => lambda { |i| i.upcase }
|
|
|
|
assert_select 'select option[value=Jose]', "JOSE"
|
|
|
|
assert_select 'select option[value=Carlos]', "CARLOS"
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding only value but not label method using a lambda for collection select' do
|
|
|
|
with_input_for @user, :name, :select,
|
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:value_method => lambda { |i| i.downcase }
|
|
|
|
assert_select 'select option[value=jose]', "Jose"
|
|
|
|
assert_select 'select option[value=carlos]', "Carlos"
|
|
|
|
end
|
|
|
|
|
2010-08-07 16:11:21 -04:00
|
|
|
test 'input should allow symbols for collections' do
|
|
|
|
with_input_for @user, :name, :select, :collection => [:jose, :carlos]
|
|
|
|
assert_select 'select.select#user_name'
|
|
|
|
assert_select 'select option[value=jose]', 'jose'
|
|
|
|
assert_select 'select option[value=carlos]', 'carlos'
|
|
|
|
end
|
|
|
|
|
2010-12-10 17:57:22 -05:00
|
|
|
test 'collection input with radio type should generate required html attribute' do
|
|
|
|
with_input_for @user, :name, :radio, :collection => ['Jose' , 'Carlos']
|
|
|
|
assert_select 'input[type=radio].required'
|
|
|
|
assert_select 'input[type=radio][required]'
|
|
|
|
end
|
|
|
|
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
test 'when not using HTML5, collection input with radio type should not generate required html attribute' do
|
2011-05-16 05:45:16 -04:00
|
|
|
swap SimpleForm, :html5 => false do
|
|
|
|
with_input_for @user, :name, :radio, :collection => ['Jose' , 'Carlos']
|
|
|
|
assert_select 'input[type=radio].required'
|
|
|
|
assert_no_select 'input[type=radio][required]'
|
|
|
|
end
|
Add configuration option to explicitly turn off HTML5 extensions.
This includes the new field types such as email, number, search, url,
tel, and the new attributes such as required, autofocus, maxlength, min, max, step.
None of these are technically allowed in the HTML4 or XHTML1.0 doc types.
Test coverage and updated README.
Update config file generator with new HTML5 option.
2011-04-01 19:31:48 -04:00
|
|
|
end
|
|
|
|
|
2011-05-26 13:40:17 -04: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
|
|
|
|
|
2010-12-10 17:57:22 -05:00
|
|
|
test 'collection input with select type should not generate invalid required html attribute' do
|
|
|
|
with_input_for @user, :name, :select, :collection => ['Jose' , 'Carlos']
|
|
|
|
assert_select 'select.required'
|
|
|
|
assert_no_select 'select[required]'
|
|
|
|
end
|
|
|
|
|
2010-01-09 12:12:46 -05:00
|
|
|
# With no object
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input should be generated properly when object is not present' do
|
|
|
|
with_input_for :project, :name, :string
|
|
|
|
assert_select 'input.string.required#project_name'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input as radio should be generated properly when object is not present ' do
|
|
|
|
with_input_for :project, :name, :radio
|
|
|
|
assert_select 'input.radio#project_name_true'
|
|
|
|
assert_select 'input.radio#project_name_false'
|
|
|
|
end
|
2010-06-17 18:12:36 -04:00
|
|
|
|
2010-01-09 10:05:02 -05:00
|
|
|
test 'input as select with collection should be generated properly when object is not present' do
|
|
|
|
with_input_for :project, :name, :select, :collection => ['Jose', 'Carlos']
|
|
|
|
assert_select 'select.select#project_name'
|
|
|
|
end
|
2009-12-09 17:36:21 -05:00
|
|
|
end
|