提交 f8696b88 编写于 作者: M Mark Edmondson

Fix unique DOM IDs for collection inputs

上级 3c6cfdf7
* Ensure unique DOM IDs for collection inputs with float values.
Fixes #34974
*Mark Edmondson*
## Rails 6.0.0.beta1 (January 18, 2019) ##
* Remove deprecated `image_alt` helper.
......
......@@ -138,7 +138,7 @@ def sanitized_method_name
end
def sanitized_value(value)
value.to_s.gsub(/\s/, "_").gsub(/[^-[[:word:]]]/, "").mb_chars.downcase.to_s
value.to_s.gsub(/[\s\.]/, "_").gsub(/[^-[[:word:]]]/, "").mb_chars.downcase.to_s
end
def select_content_tag(option_tags, options, html_options)
......
......@@ -48,8 +48,16 @@ def with_collection_check_boxes(*args, &block)
test "collection radio should sanitize collection values for labels correctly" do
with_collection_radio_buttons :user, :name, ["$0.99", "$1.99"], :to_s, :to_s
assert_select "label[for=user_name_099]", "$0.99"
assert_select "label[for=user_name_199]", "$1.99"
assert_select "label[for=user_name_0_99]", "$0.99"
assert_select "label[for=user_name_1_99]", "$1.99"
end
test "collection radio correctly builds unique DOM IDs for float values" do
with_collection_radio_buttons :user, :name, [1.0, 10], :to_s, :to_s
assert_select "label[for=user_name_1_0]", "1.0"
assert_select "label[for=user_name_10]", "10"
assert_select 'input#user_name_1_0[type=radio][value="1.0"]'
assert_select 'input#user_name_10[type=radio][value="10"]'
end
test "collection radio accepts checked item" do
......@@ -302,8 +310,16 @@ def with_collection_check_boxes(*args, &block)
test "collection check box should sanitize collection values for labels correctly" do
with_collection_check_boxes :user, :name, ["$0.99", "$1.99"], :to_s, :to_s
assert_select "label[for=user_name_099]", "$0.99"
assert_select "label[for=user_name_199]", "$1.99"
assert_select "label[for=user_name_0_99]", "$0.99"
assert_select "label[for=user_name_1_99]", "$1.99"
end
test "collection check boxes correctly builds unique DOM IDs for float values" do
with_collection_check_boxes :user, :name, [1.0, 10], :to_s, :to_s
assert_select "label[for=user_name_1_0]", "1.0"
assert_select "label[for=user_name_10]", "10"
assert_select 'input#user_name_1_0[type=checkbox][value="1.0"]'
assert_select 'input#user_name_10[type=checkbox][value="10"]'
end
test "collection check boxes generates labels for non-English values correctly" do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册