2012-01-26 14:06:59 -05:00
|
|
|
# encoding: UTF-8
|
|
|
|
require 'test_helper'
|
|
|
|
|
2012-01-27 13:30:19 -05:00
|
|
|
class CollectionRadioButtonsInputTest < ActionView::TestCase
|
2012-01-26 14:06:59 -05:00
|
|
|
setup do
|
2012-01-27 13:30:19 -05:00
|
|
|
SimpleForm::Inputs::CollectionRadioButtonsInput.reset_i18n_cache :boolean_collection
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should generate boolean radio buttons by default for radio types' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
|
|
|
assert_select 'input[type=radio][value=true].radio_buttons#user_active_true'
|
|
|
|
assert_select 'input[type=radio][value=false].radio_buttons#user_active_false'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input as radio should generate internal labels by default' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'label[for=user_active_true]', 'Yes'
|
|
|
|
assert_select 'label[for=user_active_false]', 'No'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input as radio should use i18n to translate internal labels' do
|
|
|
|
store_translations(:en, :simple_form => { :yes => 'Sim', :no => 'Não' }) do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'label[for=user_active_true]', 'Sim'
|
|
|
|
assert_select 'label[for=user_active_false]', 'Não'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-26 16:30:45 -05:00
|
|
|
test 'input radio should not include for attribute by default' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :gender, :radio_buttons, :collection => [:male, :female]
|
2012-01-26 16:30:45 -05:00
|
|
|
assert_select 'label'
|
|
|
|
assert_no_select 'label[for=user_gender]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio should include for attribute when giving as html option' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :gender, :radio_buttons, :collection => [:male, :female], :label_html => { :for => 'gender' }
|
2012-01-26 16:30:45 -05:00
|
|
|
assert_select 'label[for=gender]'
|
|
|
|
end
|
|
|
|
|
2012-01-26 14:06:59 -05:00
|
|
|
test 'input should mark the checked value when using boolean and radios' do
|
|
|
|
@user.active = false
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_no_select 'input[type=radio][value=true][checked]'
|
|
|
|
assert_select 'input[type=radio][value=false][checked]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding collection for radio types' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons, :collection => ['Jose', 'Carlos']
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'input[type=radio][value=Jose]'
|
|
|
|
assert_select 'input[type=radio][value=Carlos]'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'Jose'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'Carlos'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should do automatic collection translation for radio types using defaults key' do
|
|
|
|
store_translations(:en, :simple_form => { :options => { :defaults => {
|
|
|
|
:gender => { :male => 'Male', :female => 'Female'}
|
|
|
|
} } } ) do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :gender, :radio_buttons, :collection => [:male, :female]
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'input[type=radio][value=male]'
|
|
|
|
assert_select 'input[type=radio][value=female]'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'Male'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'Female'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should do automatic collection translation for radio types using specific object key' do
|
|
|
|
store_translations(:en, :simple_form => { :options => { :user => {
|
|
|
|
:gender => { :male => 'Male', :female => 'Female'}
|
|
|
|
} } } ) do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :gender, :radio_buttons, :collection => [:male, :female]
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'input[type=radio][value=male]'
|
|
|
|
assert_select 'input[type=radio][value=female]'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'Male'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'Female'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should mark the current radio value by default' do
|
|
|
|
@user.name = "Carlos"
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons, :collection => ['Jose', 'Carlos']
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'input[type=radio][value=Carlos][checked=checked]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow using a collection with text/value arrays' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons, :collection => [['Jose', 'jose'], ['Carlos', 'carlos']]
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'input[type=radio][value=jose]'
|
|
|
|
assert_select 'input[type=radio][value=carlos]'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'Jose'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'Carlos'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow using a collection with a Proc' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons, :collection => Proc.new { ['Jose', 'Carlos' ] }
|
|
|
|
assert_select 'label.collection_radio_buttons', 'Jose'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'Carlos'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding only label method for collections' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons,
|
2012-01-26 14:06:59 -05:00
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => :upcase
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'JOSE'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'CARLOS'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding only value method for collections' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons,
|
2012-01-26 14:06:59 -05:00
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:value_method => :upcase
|
|
|
|
assert_select 'input[type=radio][value=JOSE]'
|
|
|
|
assert_select 'input[type=radio][value=CARLOS]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding label and value method for collections' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons,
|
2012-01-26 14:06:59 -05:00
|
|
|
:collection => ['Jose' , 'Carlos'],
|
|
|
|
:label_method => :upcase,
|
|
|
|
:value_method => :downcase
|
|
|
|
assert_select 'input[type=radio][value=jose]'
|
|
|
|
assert_select 'input[type=radio][value=carlos]'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'JOSE'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'CARLOS'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'input should allow overriding label and value method using a lambda for collections' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons,
|
2012-01-26 14:06:59 -05:00
|
|
|
: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]'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_select 'label.collection_radio_buttons', 'JOSE'
|
|
|
|
assert_select 'label.collection_radio_buttons', 'CARLOS'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'collection input with radio type should generate required html attribute' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :name, :radio_buttons, :collection => ['Jose' , 'Carlos']
|
2012-01-26 14:06:59 -05:00
|
|
|
assert_select 'input[type=radio].required'
|
|
|
|
assert_select 'input[type=radio][required]'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio does not wrap the collection by default' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form ul'
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio wraps the collection in the configured collection wrapper tag' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => :ul do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form ul input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio does not wrap the collection when configured with falsy values' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => false do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form ul'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio allows overriding the collection wrapper tag at input level' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => :ul do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons, :collection_wrapper_tag => :section
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form section input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form ul'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio allows disabling the collection wrapper tag at input level' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => :ul do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons, :collection_wrapper_tag => false
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form ul'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio renders the wrapper tag with the configured wrapper class' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => :ul, :collection_wrapper_class => 'inputs-list' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form ul.inputs-list input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio allows giving wrapper class at input level only' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => :ul do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons, :collection_wrapper_class => 'items-list'
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form ul.items-list input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio uses both configured and given wrapper classes for wrapper tag' do
|
|
|
|
swap SimpleForm, :collection_wrapper_tag => :ul, :collection_wrapper_class => 'inputs-list' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons, :collection_wrapper_class => 'items-list'
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form ul.inputs-list.items-list input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio wraps each item in the configured item wrapper tag' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => :li do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form li input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio does not wrap items when configured with falsy values' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => false do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form li'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio allows overriding the item wrapper tag at input level' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => :li do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_tag => :dl
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form dl input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form li'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio allows disabling the item wrapper tag at input level' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => :ul do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_tag => false
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form input[type=radio]', :count => 2
|
|
|
|
assert_no_select 'form li'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio wraps items in a span tag by default' do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
|
|
|
assert_select 'form span input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
|
2012-01-27 14:42:01 -05:00
|
|
|
test 'input radio renders the item wrapper tag with a default class "radio"' do
|
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_tag => :li
|
|
|
|
|
|
|
|
assert_select 'form li.radio input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio renders the item wrapper tag with the configured item wrapper class' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => :li, :item_wrapper_class => 'item' do
|
|
|
|
with_input_for @user, :active, :radio_buttons
|
|
|
|
|
|
|
|
assert_select 'form li.radio.item input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio allows giving item wrapper class at input level only' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => :li do
|
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_class => 'item'
|
|
|
|
|
|
|
|
assert_select 'form li.radio.item input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio uses both configured and given item wrapper classes for item wrapper tag' do
|
|
|
|
swap SimpleForm, :item_wrapper_tag => :li, :item_wrapper_class => 'item' do
|
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_class => 'inline'
|
|
|
|
|
|
|
|
assert_select 'form li.radio.item.inline input[type=radio]', :count => 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-26 14:06:59 -05:00
|
|
|
test 'input radio respects the nested boolean style config, generating nested label > input' do
|
|
|
|
swap SimpleForm, :boolean_style => :nested do
|
2012-01-27 13:30:19 -05:00
|
|
|
with_input_for @user, :active, :radio_buttons
|
2012-01-26 14:06:59 -05:00
|
|
|
|
2012-01-27 13:49:06 -05:00
|
|
|
assert_select 'label.radio > input#user_active_true[type=radio]'
|
|
|
|
assert_select 'label.radio', 'Yes'
|
|
|
|
assert_select 'label.radio > input#user_active_false[type=radio]'
|
|
|
|
assert_select 'label.radio', 'No'
|
2012-01-27 13:30:19 -05:00
|
|
|
assert_no_select 'label.collection_radio_buttons'
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|
|
|
|
end
|
2012-01-27 14:42:01 -05:00
|
|
|
|
|
|
|
test 'input radio with nested style overrides configured item wrapper tag, forcing the :label' do
|
|
|
|
swap SimpleForm, :boolean_style => :nested, :item_wrapper_tag => :li do
|
|
|
|
with_input_for @user, :active, :radio_buttons
|
|
|
|
|
|
|
|
assert_select 'label.radio > input'
|
|
|
|
assert_no_select 'li'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio with nested style overrides given item wrapper tag, forcing the :label' do
|
|
|
|
swap SimpleForm, :boolean_style => :nested do
|
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_tag => :li
|
|
|
|
|
|
|
|
assert_select 'label.radio > input'
|
|
|
|
assert_no_select 'li'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'input radio with nested style accepts giving extra wrapper classes' do
|
|
|
|
swap SimpleForm, :boolean_style => :nested do
|
|
|
|
with_input_for @user, :active, :radio_buttons, :item_wrapper_class => "inline"
|
|
|
|
|
|
|
|
assert_select 'label.radio.inline > input'
|
|
|
|
end
|
|
|
|
end
|
2012-01-26 14:06:59 -05:00
|
|
|
end
|