2011-09-03 12:49:54 -04:00
|
|
|
# encoding: UTF-8
|
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class StringInputTest < ActionView::TestCase
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input maps text field to string attribute' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :name, :string
|
2014-09-08 17:14:53 -04:00
|
|
|
assert_select "input#user_name[type=text][name='user[name]'][value='New in SimpleForm!']"
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input generates a password field for password attributes' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :password, :password
|
|
|
|
assert_select "input#user_password.password[type=password][name='user[password]']"
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input gets maxlength from column definition for string attributes' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :name, :string
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[maxlength="100"]'
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input does not get maxlength from column without size definition for string attributes' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :action, :string
|
|
|
|
assert_no_select 'input.string[maxlength]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input gets maxlength from column definition for password attributes' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :password, :password
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.password[type=password][maxlength="100"]'
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input infers maxlength column definition from validation when present' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @validating_user, :name, :string
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[maxlength="25"]'
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
|
2016-07-01 13:55:15 -04:00
|
|
|
if ActionPack::VERSION::STRING < '5'
|
|
|
|
test 'input does not get maxlength from validation when tokenizer present' do
|
|
|
|
with_input_for @validating_user, :action, :string
|
|
|
|
assert_no_select 'input.string[maxlength]'
|
|
|
|
end
|
2012-01-02 15:48:41 -05:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input gets maxlength from validation when :is option present' do
|
2012-01-03 13:10:50 -05:00
|
|
|
with_input_for @validating_user, :home_picture, :string
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[maxlength="12"]'
|
2012-01-03 13:10:50 -05:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input maxlength is the column limit plus one to make room for decimal point' do
|
2012-04-21 08:10:10 -04:00
|
|
|
with_input_for @user, :credit_limit, :string
|
|
|
|
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[maxlength="16"]'
|
2012-04-21 08:10:10 -04:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input does not generate placeholder by default' do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_no_select 'input[placeholder]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input accepts the placeholder option' do
|
2013-01-28 16:02:59 -05:00
|
|
|
with_input_for @user, :name, :string, placeholder: 'Put in some text'
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[placeholder="Put in some text"]'
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input generates a password field for password attributes that accept placeholder' do
|
2013-01-28 16:02:59 -05:00
|
|
|
with_input_for @user, :password, :password, placeholder: 'Password Confirmation'
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input[type=password].password[placeholder="Password Confirmation"]#user_password'
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input does not infer pattern from attributes by default' do
|
2012-01-11 16:57:01 -05:00
|
|
|
with_input_for @other_validating_user, :country, :string
|
|
|
|
assert_no_select 'input[pattern="\w+"]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input infers pattern from attributes' do
|
2013-01-28 16:02:59 -05:00
|
|
|
with_input_for @other_validating_user, :country, :string, pattern: true
|
2011-12-04 07:40:00 -05:00
|
|
|
assert_select 'input[pattern="\w+"]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input infers pattern from attributes using proc' do
|
2013-01-28 16:02:59 -05:00
|
|
|
with_input_for @other_validating_user, :name, :string, pattern: true
|
2012-01-01 09:32:08 -05:00
|
|
|
assert_select 'input[pattern="\w+"]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input does not infer pattern from attributes if root default is false' do
|
2011-12-04 08:57:12 -05:00
|
|
|
swap_wrapper do
|
|
|
|
with_input_for @other_validating_user, :country, :string
|
2012-01-11 15:12:49 -05:00
|
|
|
assert_no_select 'input[pattern="\w+"]'
|
2011-12-04 08:57:12 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input uses given pattern from attributes' do
|
2013-01-28 16:02:59 -05:00
|
|
|
with_input_for @other_validating_user, :country, :string, input_html: { pattern: "\\d+" }
|
2011-12-04 07:40:00 -05:00
|
|
|
assert_select 'input[pattern="\d+"]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input does not use pattern if model has :without validation option' do
|
2013-02-28 01:57:57 -05:00
|
|
|
with_input_for @other_validating_user, :description, :string, pattern: true
|
|
|
|
assert_no_select 'input[pattern="\d+"]'
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input uses i18n to translate placeholder text' do
|
2013-01-28 16:02:59 -05:00
|
|
|
store_translations(:en, simple_form: { placeholders: { user: {
|
|
|
|
name: 'Name goes here'
|
2011-09-03 12:49:54 -04:00
|
|
|
} } }) do
|
|
|
|
with_input_for @user, :name, :string
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[placeholder="Name goes here"]'
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test 'input uses custom i18n scope to translate placeholder text' do
|
2014-04-04 11:00:04 -04:00
|
|
|
store_translations(:en, my_scope: { placeholders: { user: {
|
|
|
|
name: 'Name goes here'
|
|
|
|
} } }) do
|
|
|
|
swap SimpleForm, i18n_scope: :my_scope do
|
|
|
|
with_input_for @user, :name, :string
|
2014-09-08 16:19:40 -04:00
|
|
|
assert_select 'input.string[placeholder="Name goes here"]'
|
2014-04-04 11:00:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-03 12:49:54 -04:00
|
|
|
[:email, :url, :search, :tel].each do |type|
|
2014-05-14 13:19:06 -04:00
|
|
|
test "input allows type #{type}" do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :name, type
|
|
|
|
assert_select "input.string.#{type}"
|
|
|
|
assert_select "input[type=#{type}]"
|
|
|
|
end
|
|
|
|
|
2014-05-14 13:19:06 -04:00
|
|
|
test "input does not allow type #{type} if HTML5 compatibility is disabled" do
|
2011-12-04 10:15:27 -05:00
|
|
|
swap_wrapper do
|
2011-09-03 12:49:54 -04:00
|
|
|
with_input_for @user, :name, type
|
2011-12-04 10:15:27 -05:00
|
|
|
assert_select "input[type=text]"
|
2011-09-03 12:49:54 -04:00
|
|
|
assert_no_select "input[type=#{type}]"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-01-26 07:51:12 -05:00
|
|
|
|
|
|
|
test 'input strips extra spaces from class html attribute with default classes' do
|
|
|
|
with_input_for @user, :name, :string
|
|
|
|
assert_select "input[class='string required']"
|
|
|
|
assert_no_select "input[class='string required ']"
|
|
|
|
assert_no_select "input[class=' string required']"
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input strips extra spaces from class html attribute when giving a custom class' do
|
2013-01-28 16:02:59 -05:00
|
|
|
with_input_for @user, :name, :string, input_html: { class: "my_input" }
|
2012-01-26 07:51:12 -05:00
|
|
|
assert_select "input[class='string required my_input']"
|
|
|
|
assert_no_select "input[class='string required my_input ']"
|
|
|
|
assert_no_select "input[class=' string required my_input']"
|
|
|
|
end
|
2011-09-03 12:49:54 -04:00
|
|
|
end
|