form_helper_test.rb 67.0 KB
Newer Older
1
require 'abstract_unit'
2
require 'controller/fake_models'
3

4 5
class FormHelperTest < ActionView::TestCase
  tests ActionView::Helpers::FormHelper
D
Initial  
David Heinemeier Hansson 已提交
6

W
wycats 已提交
7 8 9 10
  def form_for(*)
    @output_buffer = super
  end

D
Initial  
David Heinemeier Hansson 已提交
11
  def setup
12
    super
13 14 15 16 17 18 19 20 21 22

    # Create "label" locale for testing I18n label helpers
    I18n.backend.store_translations 'label', {
      :activemodel => {
        :attributes => {
          :post => {
            :cost => "Total cost"
          }
        }
      },
23 24
      :helpers => {
        :label => {
25 26 27 28 29 30 31
          :post => {
            :body => "Write entire text here"
          }
        }
      }
    }

32 33 34 35
    # Create "submit" locale for testing I18n submit helpers
    I18n.backend.store_translations 'submit', {
      :helpers => {
        :submit => {
36 37
          :create => 'Create %{model}',
          :update => 'Confirm %{model} changes',
38 39
          :submit => 'Save changes',
          :another_post => {
40
            :update => 'Update your %{model}'
41
          }
42 43 44 45
        }
      }
    }

46
    @post = Post.new
47
    @comment = Comment.new
48 49
    def @post.errors()
      Class.new{
50
        def [](field); field == "author_name" ? ["can't be empty"] : [] end
51
        def empty?() false end
52
        def count() 1 end
53 54
        def full_messages() [ "Author name can't be empty" ] end
      }.new
55
    end
56
    def @post.id; 123; end
57
    def @post.id_before_type_cast; 123; end
58
    def @post.to_param; '123'; end
59

60
    @post.persisted   = true
D
Initial  
David Heinemeier Hansson 已提交
61 62 63 64 65
    @post.title       = "Hello World"
    @post.author_name = ""
    @post.body        = "Back to the hill and over it again!"
    @post.secret      = 1
    @post.written_on  = Date.new(2004, 6, 15)
66
  end
67

68 69 70 71 72 73
  def url_for(object)
    @url_for_options = object
    if object.is_a?(Hash)
      "http://www.example.com"
    else
      super
74
    end
D
Initial  
David Heinemeier Hansson 已提交
75 76
  end

77 78 79 80 81 82 83
  def test_label
    assert_dom_equal('<label for="post_title">Title</label>', label("post", "title"))
    assert_dom_equal('<label for="post_title">The title goes here</label>', label("post", "title", "The title goes here"))
    assert_dom_equal(
      '<label class="title_label" for="post_title">Title</label>',
      label("post", "title", nil, :class => 'title_label')
    )
84
    assert_dom_equal('<label for="post_secret">Secret?</label>', label("post", "secret?"))
85
  end
86

87 88
  def test_label_with_symbols
    assert_dom_equal('<label for="post_title">Title</label>', label(:post, :title))
89
    assert_dom_equal('<label for="post_secret">Secret?</label>', label(:post, :secret?))
90 91
  end

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
  def test_label_with_locales_strings
    old_locale, I18n.locale = I18n.locale, :label
    assert_dom_equal('<label for="post_body">Write entire text here</label>', label("post", "body"))
  ensure
    I18n.locale = old_locale
  end

  def test_label_with_human_attribute_name
    old_locale, I18n.locale = I18n.locale, :label
    assert_dom_equal('<label for="post_cost">Total cost</label>', label(:post, :cost))
  ensure
    I18n.locale = old_locale
  end

  def test_label_with_locales_symbols
    old_locale, I18n.locale = I18n.locale, :label
    assert_dom_equal('<label for="post_body">Write entire text here</label>', label(:post, :body))
  ensure
    I18n.locale = old_locale
  end

113 114 115 116 117 118 119 120
  def test_label_with_for_attribute_as_symbol
    assert_dom_equal('<label for="my_for">Title</label>', label(:post, :title, nil, :for => "my_for"))
  end

  def test_label_with_for_attribute_as_string
    assert_dom_equal('<label for="my_for">Title</label>', label(:post, :title, nil, "for" => "my_for"))
  end

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
  def test_label_with_id_attribute_as_symbol
    assert_dom_equal('<label for="post_title" id="my_id">Title</label>', label(:post, :title, nil, :id => "my_id"))
  end

  def test_label_with_id_attribute_as_string
    assert_dom_equal('<label for="post_title" id="my_id">Title</label>', label(:post, :title, nil, "id" => "my_id"))
  end

  def test_label_with_for_and_id_attributes_as_symbol
    assert_dom_equal('<label for="my_for" id="my_id">Title</label>', label(:post, :title, nil, :for => "my_for", :id => "my_id"))
  end

  def test_label_with_for_and_id_attributes_as_string
    assert_dom_equal('<label for="my_for" id="my_id">Title</label>', label(:post, :title, nil, "for" => "my_for", "id" => "my_id"))
  end

137 138 139 140 141
  def test_label_for_radio_buttons_with_value
    assert_dom_equal('<label for="post_title_great_title">The title goes here</label>', label("post", "title", "The title goes here", :value => "great_title"))
    assert_dom_equal('<label for="post_title_great_title">The title goes here</label>', label("post", "title", "The title goes here", :value => "great title"))
  end

S
Stephen Celis 已提交
142 143 144 145
  def test_label_with_block
    assert_dom_equal('<label for="post_title">The title, please:</label>', label(:post, :title) { "The title, please:" })
  end

D
Initial  
David Heinemeier Hansson 已提交
146
  def test_text_field
147
    assert_dom_equal(
D
Initial  
David Heinemeier Hansson 已提交
148 149
      '<input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />', text_field("post", "title")
    )
150
    assert_dom_equal(
D
Initial  
David Heinemeier Hansson 已提交
151 152
      '<input id="post_title" name="post[title]" size="30" type="password" value="Hello World" />', password_field("post", "title")
    )
153
    assert_dom_equal(
154
      '<input id="person_name" name="person[name]" size="30" type="password" />', password_field("person", "name")
D
Initial  
David Heinemeier Hansson 已提交
155 156 157 158 159
    )
  end

  def test_text_field_with_escapes
    @post.title = "<b>Hello World</b>"
160
    assert_dom_equal(
D
Initial  
David Heinemeier Hansson 已提交
161 162 163 164
      '<input id="post_title" name="post[title]" size="30" type="text" value="&lt;b&gt;Hello World&lt;/b&gt;" />', text_field("post", "title")
    )
  end

165 166 167 168 169 170 171 172
  def test_text_field_with_html_entities
    @post.title = "The HTML Entity for & is &amp;"
    assert_dom_equal(
      '<input id="post_title" name="post[title]" size="30" type="text" value="The HTML Entity for &amp; is &amp;amp;" />',
      text_field("post", "title")
    )
  end

D
Initial  
David Heinemeier Hansson 已提交
173
  def test_text_field_with_options
174
    expected = '<input id="post_title" name="post[title]" size="35" type="text" value="Hello World" />'
175 176
    assert_dom_equal expected, text_field("post", "title", "size" => 35)
    assert_dom_equal expected, text_field("post", "title", :size => 35)
D
Initial  
David Heinemeier Hansson 已提交
177
  end
178

D
Initial  
David Heinemeier Hansson 已提交
179
  def test_text_field_assuming_size
180
    expected = '<input id="post_title" maxlength="35" name="post[title]" size="35" type="text" value="Hello World" />'
181 182
    assert_dom_equal expected, text_field("post", "title", "maxlength" => 35)
    assert_dom_equal expected, text_field("post", "title", :maxlength => 35)
D
Initial  
David Heinemeier Hansson 已提交
183
  end
184

185 186 187 188 189 190
  def test_text_field_removing_size
    expected = '<input id="post_title" maxlength="35" name="post[title]" type="text" value="Hello World" />'
    assert_dom_equal expected, text_field("post", "title", "maxlength" => 35, "size" => nil)
    assert_dom_equal expected, text_field("post", "title", :maxlength => 35, :size => nil)
  end

191 192 193 194 195 196 197
  def test_text_field_doesnt_change_param_values
    object_name = 'post[]'
    expected = '<input id="post_123_title" name="post[123][title]" size="30" type="text" value="Hello World" />'
    assert_equal expected, text_field(object_name, "title")
    assert_equal object_name, "post[]"
  end

198 199 200
  def test_hidden_field
    assert_dom_equal '<input id="post_title" name="post[title]" type="hidden" value="Hello World" />',
      hidden_field("post", "title")
201 202
      assert_dom_equal '<input id="post_secret" name="post[secret]" type="hidden" value="1" />',
        hidden_field("post", "secret?")
203 204 205 206 207 208 209 210 211 212 213 214 215
  end

  def test_hidden_field_with_escapes
    @post.title = "<b>Hello World</b>"
    assert_dom_equal '<input id="post_title" name="post[title]" type="hidden" value="&lt;b&gt;Hello World&lt;/b&gt;" />',
      hidden_field("post", "title")
  end

  def test_text_field_with_options
    assert_dom_equal '<input id="post_title" name="post[title]" type="hidden" value="Something Else" />',
      hidden_field("post", "title", :value => "Something Else")
  end

216 217 218 219 220
  def test_text_field_with_custom_type
    assert_dom_equal '<input id="user_email" size="30" name="user[email]" type="email" />',
      text_field("user", "email", :type => "email")
  end

D
Initial  
David Heinemeier Hansson 已提交
221
  def test_check_box
222
    assert_dom_equal(
223
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
D
Initial  
David Heinemeier Hansson 已提交
224 225 226
      check_box("post", "secret")
    )
    @post.secret = 0
227
    assert_dom_equal(
228
      '<input name="post[secret]" type="hidden" value="0" /><input id="post_secret" name="post[secret]" type="checkbox" value="1" />',
229
      check_box("post", "secret")
D
Initial  
David Heinemeier Hansson 已提交
230
    )
231
    assert_dom_equal(
232
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
233 234
      check_box("post", "secret" ,{"checked"=>"checked"})
    )
D
Initial  
David Heinemeier Hansson 已提交
235
    @post.secret = true
236
    assert_dom_equal(
237
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
D
Initial  
David Heinemeier Hansson 已提交
238 239
      check_box("post", "secret")
    )
240
    assert_dom_equal(
241
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
242 243
      check_box("post", "secret?")
    )
244 245 246

    @post.secret = ['0']
    assert_dom_equal(
247
      '<input name="post[secret]" type="hidden" value="0" /><input id="post_secret" name="post[secret]" type="checkbox" value="1" />',
248 249 250 251
      check_box("post", "secret")
    )
    @post.secret = ['1']
    assert_dom_equal(
252
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
253 254
      check_box("post", "secret")
    )
D
Initial  
David Heinemeier Hansson 已提交
255
  end
256

257 258
  def test_check_box_with_explicit_checked_and_unchecked_values
    @post.secret = "on"
259
    assert_dom_equal(
260
      '<input name="post[secret]" type="hidden" value="off" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="on" />',
261 262 263
      check_box("post", "secret", {}, "on", "off")
    )
  end
264

265 266 267 268 269 270 271 272 273 274 275 276 277
  def test_check_box_with_multiple_behavior
    @post.comment_ids = [2,3]
    assert_dom_equal(
      '<input name="post[comment_ids][]" type="hidden" value="0" /><input id="post_comment_ids_1" name="post[comment_ids][]" type="checkbox" value="1" />',
      check_box("post", "comment_ids", { :multiple => true }, 1)
    )
    assert_dom_equal(
      '<input name="post[comment_ids][]" type="hidden" value="0" /><input checked="checked" id="post_comment_ids_3" name="post[comment_ids][]" type="checkbox" value="3" />',
      check_box("post", "comment_ids", { :multiple => true }, 3)
    )
  end


278 279
  def test_checkbox_disabled_still_submits_checked_value
    assert_dom_equal(
280
      '<input name="post[secret]" type="hidden" value="1" /><input checked="checked" disabled="disabled" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
281 282 283 284
      check_box("post", "secret", { :disabled => :true })
    )
  end

285
  def test_radio_button
286
    assert_dom_equal('<input checked="checked" id="post_title_hello_world" name="post[title]" type="radio" value="Hello World" />',
287
      radio_button("post", "title", "Hello World")
288
    )
289
    assert_dom_equal('<input id="post_title_goodbye_world" name="post[title]" type="radio" value="Goodbye World" />',
290
      radio_button("post", "title", "Goodbye World")
291
    )
292 293 294
    assert_dom_equal('<input id="item_subobject_title_inside_world" name="item[subobject][title]" type="radio" value="inside world"/>',
      radio_button("item[subobject]", "title", "inside world")
    )
295
  end
296

297 298 299 300 301
  def test_radio_button_is_checked_with_integers
    assert_dom_equal('<input checked="checked" id="post_secret_1" name="post[secret]" type="radio" value="1" />',
      radio_button("post", "secret", "1")
   )
  end
302

N
Neeraj Singh 已提交
303 304 305 306 307
  def test_radio_button_with_negative_integer_value
    assert_dom_equal('<input id="post_secret_-1" name="post[secret]" type="radio" value="-1" />',
      radio_button("post", "secret", "-1"))
  end

308 309 310 311 312
  def test_radio_button_respects_passed_in_id
     assert_dom_equal('<input checked="checked" id="foo" name="post[secret]" type="radio" value="1" />',
       radio_button("post", "secret", "1", :id=>"foo")
    )
  end
313

314 315 316 317 318 319 320 321 322 323
  def test_radio_button_with_booleans
    assert_dom_equal('<input id="post_secret_true" name="post[secret]" type="radio" value="true" />',
      radio_button("post", "secret", true)
    )

    assert_dom_equal('<input id="post_secret_false" name="post[secret]" type="radio" value="false" />',
      radio_button("post", "secret", false)
    )
  end

D
Initial  
David Heinemeier Hansson 已提交
324
  def test_text_area
325
    assert_dom_equal(
326
      '<textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea>',
D
Initial  
David Heinemeier Hansson 已提交
327 328 329
      text_area("post", "body")
    )
  end
330

D
Initial  
David Heinemeier Hansson 已提交
331 332
  def test_text_area_with_escapes
    @post.body        = "Back to <i>the</i> hill and over it again!"
333
    assert_dom_equal(
334
      '<textarea cols="40" id="post_body" name="post[body]" rows="20">Back to &lt;i&gt;the&lt;/i&gt; hill and over it again!</textarea>',
D
Initial  
David Heinemeier Hansson 已提交
335 336 337
      text_area("post", "body")
    )
  end
338

339 340 341 342 343 344
  def test_text_area_with_alternate_value
    assert_dom_equal(
      '<textarea cols="40" id="post_body" name="post[body]" rows="20">Testing alternate values.</textarea>',
      text_area("post", "body", :value => 'Testing alternate values.')
    )
  end
345

346 347 348 349 350 351 352 353
  def test_text_area_with_html_entities
    @post.body        = "The HTML Entity for & is &amp;"
    assert_dom_equal(
      '<textarea cols="40" id="post_body" name="post[body]" rows="20">The HTML Entity for &amp; is &amp;amp;</textarea>',
      text_area("post", "body")
    )
  end

354 355 356 357 358 359
  def test_text_area_with_size_option
    assert_dom_equal(
      '<textarea cols="183" id="post_body" name="post[body]" rows="820">Back to the hill and over it again!</textarea>',
      text_area("post", "body", :size => "183x820")
    )
  end
360

361
  def test_search_field
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
    expected = %{<input id="contact_notes_query" size="30" name="contact[notes_query]" type="search" />}
    assert_dom_equal(expected, search_field("contact", "notes_query"))
  end

  def test_telephone_field
    expected = %{<input id="user_cell" size="30" name="user[cell]" type="tel" />}
    assert_dom_equal(expected, telephone_field("user", "cell"))
  end

  def test_url_field
    expected = %{<input id="user_homepage" size="30" name="user[homepage]" type="url" />}
    assert_dom_equal(expected, url_field("user", "homepage"))
  end

  def test_email_field
    expected = %{<input id="user_address" size="30" name="user[address]" type="email" />}
    assert_dom_equal(expected, email_field("user", "address"))
  end

  def test_number_field
    expected = %{<input name="order[quantity]" size="30" max="9" id="order_quantity" type="number" min="1" />}
    assert_dom_equal(expected, number_field("order", "quantity", :in => 1...10))
  end

  def test_range_input
    expected = %{<input name="hifi[volume]" step="0.1" size="30" max="11" id="hifi_volume" type="range" min="0" />}
    assert_dom_equal(expected, range_field("hifi", "volume", :in => 0..11, :step => 0.1))
  end

D
Initial  
David Heinemeier Hansson 已提交
391
  def test_explicit_name
392
    assert_dom_equal(
D
Initial  
David Heinemeier Hansson 已提交
393
      '<input id="post_title" name="dont guess" size="30" type="text" value="Hello World" />', text_field("post", "title", "name" => "dont guess")
394
    )
395
    assert_dom_equal(
396
      '<textarea cols="40" id="post_body" name="really!" rows="20">Back to the hill and over it again!</textarea>',
D
Initial  
David Heinemeier Hansson 已提交
397 398
      text_area("post", "body", "name" => "really!")
    )
399
    assert_dom_equal(
400
      '<input name="i mean it" type="hidden" value="0" /><input checked="checked" id="post_secret" name="i mean it" type="checkbox" value="1" />',
D
Initial  
David Heinemeier Hansson 已提交
401 402
      check_box("post", "secret", "name" => "i mean it")
    )
403
    assert_dom_equal text_field("post", "title", "name" => "dont guess"),
404
                 text_field("post", "title", :name => "dont guess")
405
    assert_dom_equal text_area("post", "body", "name" => "really!"),
406
                 text_area("post", "body", :name => "really!")
407
    assert_dom_equal check_box("post", "secret", "name" => "i mean it"),
408
                 check_box("post", "secret", :name => "i mean it")
D
Initial  
David Heinemeier Hansson 已提交
409
  end
410

D
Initial  
David Heinemeier Hansson 已提交
411
  def test_explicit_id
412
    assert_dom_equal(
D
Initial  
David Heinemeier Hansson 已提交
413
      '<input id="dont guess" name="post[title]" size="30" type="text" value="Hello World" />', text_field("post", "title", "id" => "dont guess")
414
    )
415
    assert_dom_equal(
416
      '<textarea cols="40" id="really!" name="post[body]" rows="20">Back to the hill and over it again!</textarea>',
D
Initial  
David Heinemeier Hansson 已提交
417 418
      text_area("post", "body", "id" => "really!")
    )
419
    assert_dom_equal(
420
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="i mean it" name="post[secret]" type="checkbox" value="1" />',
D
Initial  
David Heinemeier Hansson 已提交
421 422
      check_box("post", "secret", "id" => "i mean it")
    )
423
    assert_dom_equal text_field("post", "title", "id" => "dont guess"),
424
                 text_field("post", "title", :id => "dont guess")
425
    assert_dom_equal text_area("post", "body", "id" => "really!"),
426
                 text_area("post", "body", :id => "really!")
427
    assert_dom_equal check_box("post", "secret", "id" => "i mean it"),
428
                 check_box("post", "secret", :id => "i mean it")
D
Initial  
David Heinemeier Hansson 已提交
429
  end
430

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
  def test_nil_id
    assert_dom_equal(
      '<input name="post[title]" size="30" type="text" value="Hello World" />', text_field("post", "title", "id" => nil)
    )
    assert_dom_equal(
      '<textarea cols="40" name="post[body]" rows="20">Back to the hill and over it again!</textarea>',
      text_area("post", "body", "id" => nil)
    )
    assert_dom_equal(
      '<input name="post[secret]" type="hidden" value="0" /><input checked="checked" name="post[secret]" type="checkbox" value="1" />',
      check_box("post", "secret", "id" => nil)
    )
    assert_dom_equal(
      '<input type="radio" name="post[secret]" value="0" />',
      radio_button("post", "secret", "0", "id" => nil)
    )
    assert_dom_equal(
      '<select name="post[secret]"></select>',
      select("post", "secret", [], {}, "id" => nil)
    )
    assert_dom_equal text_field("post", "title", "id" => nil),
                 text_field("post", "title", :id => nil)
    assert_dom_equal text_area("post", "body", "id" => nil),
                 text_area("post", "body", :id => nil)
    assert_dom_equal check_box("post", "secret", "id" => nil),
                 check_box("post", "secret", :id => nil)
457 458
    assert_dom_equal radio_button("post", "secret", "0", "id" => nil),
                 radio_button("post", "secret", "0", :id => nil)
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
  end

  def test_index
    assert_dom_equal(
      '<input name="post[5][title]" size="30" id="post_5_title" type="text" value="Hello World" />',
      text_field("post", "title", "index" => 5)
    )
    assert_dom_equal(
      '<textarea cols="40" name="post[5][body]" id="post_5_body" rows="20">Back to the hill and over it again!</textarea>',
      text_area("post", "body", "index" => 5)
    )
    assert_dom_equal(
      '<input name="post[5][secret]" type="hidden" value="0" /><input checked="checked" name="post[5][secret]" type="checkbox" value="1" id="post_5_secret" />',
      check_box("post", "secret", "index" => 5)
    )
    assert_dom_equal(
      text_field("post", "title", "index" => 5),
      text_field("post", "title", "index" => 5)
    )
    assert_dom_equal(
      text_area("post", "body", "index" => 5),
      text_area("post", "body", "index" => 5)
    )
    assert_dom_equal(
      check_box("post", "secret", "index" => 5),
      check_box("post", "secret", "index" => 5)
    )
  end

  def test_index_with_nil_id
    assert_dom_equal(
      '<input name="post[5][title]" size="30" type="text" value="Hello World" />',
      text_field("post", "title", "index" => 5, 'id' => nil)
    )
    assert_dom_equal(
      '<textarea cols="40" name="post[5][body]" rows="20">Back to the hill and over it again!</textarea>',
      text_area("post", "body", "index" => 5, 'id' => nil)
    )
    assert_dom_equal(
      '<input name="post[5][secret]" type="hidden" value="0" /><input checked="checked" name="post[5][secret]" type="checkbox" value="1" />',
      check_box("post", "secret", "index" => 5, 'id' => nil)
    )
    assert_dom_equal(
      text_field("post", "title", "index" => 5, 'id' => nil),
      text_field("post", "title", :index => 5, :id => nil)
    )
    assert_dom_equal(
      text_area("post", "body", "index" => 5, 'id' => nil),
      text_area("post", "body", :index => 5, :id => nil)
    )
    assert_dom_equal(
      check_box("post", "secret", "index" => 5, 'id' => nil),
      check_box("post", "secret", :index => 5, :id => nil)
    )
  end

515 516
  def test_auto_index
    pid = @post.id
517 518 519 520
    assert_dom_equal(
      "<label for=\"post_#{pid}_title\">Title</label>",
      label("post[]", "title")
    )
521
    assert_dom_equal(
522 523
      "<input id=\"post_#{pid}_title\" name=\"post[#{pid}][title]\" size=\"30\" type=\"text\" value=\"Hello World\" />", text_field("post[]","title")
    )
524
    assert_dom_equal(
525
      "<textarea cols=\"40\" id=\"post_#{pid}_body\" name=\"post[#{pid}][body]\" rows=\"20\">Back to the hill and over it again!</textarea>",
526 527
      text_area("post[]", "body")
    )
528
    assert_dom_equal(
529
      "<input name=\"post[#{pid}][secret]\" type=\"hidden\" value=\"0\" /><input checked=\"checked\" id=\"post_#{pid}_secret\" name=\"post[#{pid}][secret]\" type=\"checkbox\" value=\"1\" />",
530 531
      check_box("post[]", "secret")
    )
532
   assert_dom_equal(
533
"<input checked=\"checked\" id=\"post_#{pid}_title_hello_world\" name=\"post[#{pid}][title]\" type=\"radio\" value=\"Hello World\" />",
534 535
      radio_button("post[]", "title", "Hello World")
    )
536
    assert_dom_equal("<input id=\"post_#{pid}_title_goodbye_world\" name=\"post[#{pid}][title]\" type=\"radio\" value=\"Goodbye World\" />",
537 538 539
      radio_button("post[]", "title", "Goodbye World")
    )
  end
540

541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
  def test_auto_index_with_nil_id
    pid = @post.id
    assert_dom_equal(
      "<input name=\"post[#{pid}][title]\" size=\"30\" type=\"text\" value=\"Hello World\" />",
      text_field("post[]","title", :id => nil)
    )
    assert_dom_equal(
      "<textarea cols=\"40\" name=\"post[#{pid}][body]\" rows=\"20\">Back to the hill and over it again!</textarea>",
      text_area("post[]", "body", :id => nil)
    )
    assert_dom_equal(
      "<input name=\"post[#{pid}][secret]\" type=\"hidden\" value=\"0\" /><input checked=\"checked\" name=\"post[#{pid}][secret]\" type=\"checkbox\" value=\"1\" />",
      check_box("post[]", "secret", :id => nil)
    )
   assert_dom_equal(
"<input checked=\"checked\" name=\"post[#{pid}][title]\" type=\"radio\" value=\"Hello World\" />",
      radio_button("post[]", "title", "Hello World", :id => nil)
    )
    assert_dom_equal("<input name=\"post[#{pid}][title]\" type=\"radio\" value=\"Goodbye World\" />",
      radio_button("post[]", "title", "Goodbye World", :id => nil)
    )
  end

564
  def test_form_for
565 566
    assert_deprecated do
      form_for(:post, @post, :html => { :id => 'create-post' }) do |f|
S
Stephen Celis 已提交
567
        concat f.label(:title) { "The Title" }
568 569 570 571 572
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
        concat f.submit('Create post')
      end
573 574
    end

575
    expected =
576
      "<form action='http://www.example.com' id='create-post' method='post'>" +
S
Stephen Celis 已提交
577
      "<label for='post_title'>The Title</label>" +
578 579
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
580
      "<input name='post[secret]' type='hidden' value='0' />" +
581
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />" +
582
      "<input name='commit' id='post_submit' type='submit' value='Create post' />" +
583 584
      "</form>"

585
    assert_dom_equal expected, output_buffer
586 587
  end

588
  def test_form_for_with_symbol_object_name
589
    form_for(@post, :as => "other_name", :html => { :id => 'create-post' }) do |f|
590
      concat f.label(:title)
591 592 593
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
594 595 596 597 598 599 600 601 602 603
      concat f.submit('Create post')
    end

    expected =
      "<form class='other_name_edit' method='post' action='/posts/123' id='create-post'>" +
      "<div style='margin:0;padding:0;display:inline'><input name='_method' value='put' type='hidden' /></div>" +
      "<label for='other_name_title'>Title</label>" +
      "<input name='other_name[title]' size='30' id='other_name_title' value='Hello World' type='text' />" +
      "<textarea name='other_name[body]' id='other_name_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='other_name[secret]' value='0' type='hidden' />" +
S
Stephen Celis 已提交
604
      "<input name='other_name[secret]' checked='checked' id='other_name_secret' value='1' type='checkbox' />" +
605 606 607 608 609 610 611 612 613 614 615 616
      "<input name='commit' id='other_name_submit' value='Create post' type='submit' /></form>"

    assert_dom_equal expected, output_buffer
  end

  def test_form_for_with_method
    assert_deprecated do
      form_for(:post, @post, :html => { :id => 'create-post', :method => :put }) do |f|
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
617 618
    end

619
    expected =
620
      "<form action='http://www.example.com' id='create-post' method='post'>" +
621
      "<div style='margin:0;padding:0;display:inline'><input name='_method' type='hidden' value='put' /></div>" +
622 623
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
624
      "<input name='post[secret]' type='hidden' value='0' />" +
625
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />" +
626 627
      "</form>"

628
    assert_dom_equal expected, output_buffer
629 630
  end

631
  def test_form_for_with_remote
632 633 634 635 636 637
    assert_deprecated do
      form_for(:post, @post, :remote => true, :html => { :id => 'create-post', :method => :put }) do |f|
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
638 639 640 641 642 643 644 645 646 647 648 649 650 651
    end

    expected =
      "<form action='http://www.example.com' id='create-post' method='post' data-remote='true'>" +
      "<div style='margin:0;padding:0;display:inline'><input name='_method' type='hidden' value='put' /></div>" +
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='post[secret]' type='hidden' value='0' />" +
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />" +
      "</form>"

    assert_dom_equal expected, output_buffer
  end

652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
  def test_form_for_with_remote_without_html
    assert_deprecated do
      form_for(:post, @post, :remote => true) do |f|
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
    end

    expected =
      "<form action='http://www.example.com' method='post' data-remote='true'>" +
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='post[secret]' type='hidden' value='0' />" +
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />" +
      "</form>"

    assert_dom_equal expected, output_buffer
  end

672
  def test_form_for_without_object
673 674 675 676
    form_for(:post, :html => { :id => 'create-post' }) do |f|
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
677 678
    end

679
    expected =
680
      "<form action='http://www.example.com' id='create-post' method='post'>" +
681 682 683
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='post[secret]' type='hidden' value='0' />" +
684
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />" +
685 686
      "</form>"

687
    assert_dom_equal expected, output_buffer
688
  end
689

690
  def test_form_for_with_index
691 692 693 694 695 696 697
    assert_deprecated do
      form_for("post[]", @post) do |f|
        concat f.label(:title)
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
698
    end
699

700
    expected =
701
      "<form action='http://www.example.com' method='post'>" +
702
      "<label for='post_123_title'>Title</label>" +
703 704
      "<input name='post[123][title]' size='30' type='text' id='post_123_title' value='Hello World' />" +
      "<textarea name='post[123][body]' id='post_123_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
705
      "<input name='post[123][secret]' type='hidden' value='0' />" +
706
      "<input name='post[123][secret]' checked='checked' type='checkbox' id='post_123_secret' value='1' />" +
707
      "</form>"
708

709
    assert_dom_equal expected, output_buffer
710 711
  end

712
  def test_form_for_with_nil_index_option_override
713 714 715 716 717 718
    assert_deprecated do
      form_for("post[]", @post, :index => nil) do |f|
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
719 720 721 722 723 724 725
    end

    expected =
      "<form action='http://www.example.com' method='post'>" +
      "<input name='post[][title]' size='30' type='text' id='post__title' value='Hello World' />" +
      "<textarea name='post[][body]' id='post__body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='post[][secret]' type='hidden' value='0' />" +
726
      "<input name='post[][secret]' checked='checked' type='checkbox' id='post__secret' value='1' />" +
727 728
      "</form>"

729
    assert_dom_equal expected, output_buffer
730 731
  end

732 733 734
  def test_submit_with_object_as_new_record_and_locale_strings
    old_locale, I18n.locale = I18n.locale, :submit

735
    @post.persisted = false
736 737 738 739
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.submit
      end
740 741 742 743 744 745 746 747 748 749 750 751 752
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='commit' id='post_submit' type='submit' value='Create Post' />" +
               "</form>"
    assert_dom_equal expected, output_buffer
  ensure
    I18n.locale = old_locale
  end

  def test_submit_with_object_as_existing_record_and_locale_strings
    old_locale, I18n.locale = I18n.locale, :submit

753 754 755 756
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.submit
      end
757 758 759 760 761 762 763 764 765 766 767 768 769
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='commit' id='post_submit' type='submit' value='Confirm Post changes' />" +
               "</form>"
    assert_dom_equal expected, output_buffer
  ensure
    I18n.locale = old_locale
  end

  def test_submit_without_object_and_locale_strings
    old_locale, I18n.locale = I18n.locale, :submit

770 771
    form_for(:post) do |f|
      concat f.submit :class => "extra"
772 773 774
    end

    expected = "<form action='http://www.example.com' method='post'>" +
775
               "<input name='commit' class='extra' id='post_submit' type='submit' value='Save changes' />" +
776 777 778 779 780 781
               "</form>"
    assert_dom_equal expected, output_buffer
  ensure
    I18n.locale = old_locale
  end

782 783 784
  def test_submit_with_object_and_nested_lookup
    old_locale, I18n.locale = I18n.locale, :submit

785 786 787 788
    assert_deprecated do
      form_for(:another_post, @post) do |f|
        concat f.submit
      end
789 790 791 792 793 794 795 796 797 798
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='commit' id='another_post_submit' type='submit' value='Update your Post' />" +
               "</form>"
    assert_dom_equal expected, output_buffer
  ensure
    I18n.locale = old_locale
  end

799
  def test_nested_fields_for
800 801 802 803 804 805
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.fields_for(:comment, @post) { |c|
          concat c.text_field(:title)
        }
      end
806 807 808 809 810 811
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[comment][title]' size='30' type='text' id='post_comment_title' value='Hello World' />" +
               "</form>"

812
    assert_dom_equal expected, output_buffer
813
  end
814

815
  def test_nested_fields_for_with_nested_collections
816 817 818 819 820 821 822
    assert_deprecated do
      form_for('post[]', @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for('comment[]', @comment) { |c|
          concat c.text_field(:name)
        }
      end
823 824 825 826 827 828 829 830 831 832
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[123][title]' size='30' type='text' id='post_123_title' value='Hello World' />" +
               "<input name='post[123][comment][][name]' size='30' type='text' id='post_123_comment__name' value='new comment' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

833
  def test_nested_fields_for_with_index_and_parent_fields
834 835 836 837 838 839 840
    assert_deprecated do
      form_for('post', @post, :index => 1) do |c|
        concat c.text_field(:title)
        concat c.fields_for('comment', @comment, :index => 1) { |r|
          concat r.text_field(:name)
        }
      end
841 842 843 844 845 846 847 848 849 850
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[1][title]' size='30' type='text' id='post_1_title' value='Hello World' />" +
               "<input name='post[1][comment][1][name]' size='30' type='text' id='post_1_comment_1_name' value='new comment' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

851
  def test_form_for_with_index_and_nested_fields_for
852 853 854 855 856 857
    assert_deprecated do
      output_buffer = form_for(:post, @post, :index => 1) do |f|
        concat f.fields_for(:comment, @post) { |c|
          concat c.text_field(:title)
        }
      end
858 859 860 861 862 863 864 865 866 867
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[1][comment][title]' size='30' type='text' id='post_1_comment_title' value='Hello World' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_index_on_both
868 869 870 871 872 873
    assert_deprecated do
      form_for(:post, @post, :index => 1) do |f|
        concat f.fields_for(:comment, @post, :index => 5) { |c|
          concat c.text_field(:title)
        }
      end
874 875 876 877 878 879 880 881 882 883
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[1][comment][5][title]' size='30' type='text' id='post_1_comment_5_title' value='Hello World' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_auto_index
884 885 886 887 888 889
    assert_deprecated do
      form_for("post[]", @post) do |f|
        concat f.fields_for(:comment, @post) { |c|
          concat c.text_field(:title)
        }
      end
890 891 892 893 894 895 896 897 898
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[123][comment][title]' size='30' type='text' id='post_123_comment_title' value='Hello World' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

899
  def test_nested_fields_for_with_index_radio_button
900 901 902 903 904 905
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.fields_for(:comment, @post, :index => 5) { |c|
          concat c.radio_button(:title, "hello")
        }
      end
906 907 908 909 910 911 912 913 914
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[comment][5][title]' type='radio' id='post_comment_5_title_hello' value='hello' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

915
  def test_nested_fields_for_with_auto_index_on_both
916 917 918 919 920 921
    assert_deprecated do
      form_for("post[]", @post) do |f|
        concat f.fields_for("comment[]", @post) { |c|
          concat c.text_field(:title)
        }
      end
922 923 924 925 926 927 928 929 930 931
    end

    expected = "<form action='http://www.example.com' method='post'>" +
               "<input name='post[123][comment][123][title]' size='30' type='text' id='post_123_comment_123_title' value='Hello World' />" +
               "</form>"

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_index_and_auto_index
932 933 934 935 936 937
    assert_deprecated do
      output_buffer = form_for("post[]", @post) do |f|
        concat f.fields_for(:comment, @post, :index => 5) { |c|
          concat c.text_field(:title)
        }
      end
938

939 940 941 942 943
      output_buffer << form_for(:post, @post, :index => 1) do |f|
        concat f.fields_for("comment[]", @post) { |c|
          concat c.text_field(:title)
        }
      end
944

945 946 947 948 949 950
      expected = "<form action='http://www.example.com' method='post'>" +
                 "<input name='post[123][comment][5][title]' size='30' type='text' id='post_123_comment_5_title' value='Hello World' />" +
                 "</form>" +
                 "<form action='http://www.example.com' method='post'>" +
                 "<input name='post[1][comment][123][title]' size='30' type='text' id='post_1_comment_123_title' value='Hello World' />" +
                 "</form>"
951

952 953
      assert_dom_equal expected, output_buffer
    end
954 955
  end

956 957 958
  def test_nested_fields_for_with_a_new_record_on_a_nested_attributes_one_to_one_association
    @post.author = Author.new

959 960 961 962 963 964 965
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for(:author) { |af|
          concat af.text_field(:name)
        }
      end
966 967 968 969 970 971 972 973 974 975
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
               '<input id="post_author_attributes_name" name="post[author_attributes][name]" size="30" type="text" value="new author" />' +
               '</form>'

    assert_dom_equal expected, output_buffer
  end

976
  def test_nested_fields_for_with_explicitly_passed_object_on_a_nested_attributes_one_to_one_association
977 978 979 980 981 982
    assert_deprecated do
      form_for(:post, @post) do |f|
        f.fields_for(:author, Author.new(123)) do |af|
          assert_not_nil af.object
          assert_equal 123, af.object.id
        end
983 984 985 986
      end
    end
  end

987 988 989
  def test_nested_fields_for_with_an_existing_record_on_a_nested_attributes_one_to_one_association
    @post.author = Author.new(321)

990 991 992 993 994 995 996
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for(:author) { |af|
          concat af.text_field(:name)
        }
      end
997 998
    end

999 1000 1001 1002 1003 1004 1005 1006
    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
               '<input id="post_author_attributes_name" name="post[author_attributes][name]" size="30" type="text" value="author #321" />' +
               '<input id="post_author_attributes_id" name="post[author_attributes][id]" type="hidden" value="321" />' +
               '</form>'

    assert_dom_equal expected, output_buffer
  end
1007

1008 1009 1010
  def test_nested_fields_for_with_existing_records_on_a_nested_attributes_one_to_one_association_with_explicit_hidden_field_placement
    @post.author = Author.new(321)

1011 1012 1013 1014 1015 1016 1017 1018
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for(:author) { |af|
          concat af.hidden_field(:id)
          concat af.text_field(:name)
        }
      end
1019
    end
1020

1021 1022
    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
1023
               '<input id="post_author_attributes_id" name="post[author_attributes][id]" type="hidden" value="321" />' +
1024 1025 1026 1027 1028 1029 1030 1031 1032
               '<input id="post_author_attributes_name" name="post[author_attributes][name]" size="30" type="text" value="author #321" />' +
               '</form>'

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_existing_records_on_a_nested_attributes_collection_association
    @post.comments = Array.new(2) { |id| Comment.new(id + 1) }

1033 1034 1035 1036 1037 1038 1039 1040
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        @post.comments.each do |comment|
          concat f.fields_for(:comments, comment) { |cf|
            concat cf.text_field(:name)
          }
        end
1041 1042 1043
      end
    end

1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #1" />' +
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="1" />' +
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="comment #2" />' +
               '<input id="post_comments_attributes_1_id" name="post[comments_attributes][1][id]" type="hidden" value="2" />' +
               '</form>'

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_existing_records_on_a_nested_attributes_collection_association_with_explicit_hidden_field_placement
    @post.comments = Array.new(2) { |id| Comment.new(id + 1) }

1058 1059 1060 1061 1062 1063 1064 1065 1066
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        @post.comments.each do |comment|
          concat f.fields_for(:comments, comment) { |cf|
            concat cf.hidden_field(:id)
            concat cf.text_field(:name)
          }
        end
1067 1068
      end
    end
1069

1070 1071
    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
1072 1073 1074 1075
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="1" />' +
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #1" />' +
               '<input id="post_comments_attributes_1_id" name="post[comments_attributes][1][id]" type="hidden" value="2" />' +
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="comment #2" />' +
1076 1077 1078 1079 1080 1081 1082 1083
               '</form>'

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_new_records_on_a_nested_attributes_collection_association
    @post.comments = [Comment.new, Comment.new]

1084 1085 1086 1087 1088 1089 1090 1091
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        @post.comments.each do |comment|
          concat f.fields_for(:comments, comment) { |cf|
            concat cf.text_field(:name)
          }
        end
1092 1093 1094 1095 1096
      end
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
1097 1098
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="new comment" />' +
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="new comment" />' +
1099 1100 1101 1102 1103 1104 1105 1106
               '</form>'

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_existing_and_new_records_on_a_nested_attributes_collection_association
    @post.comments = [Comment.new(321), Comment.new]

1107 1108 1109 1110 1111 1112 1113 1114
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        @post.comments.each do |comment|
          concat f.fields_for(:comments, comment) { |cf|
            concat cf.text_field(:name)
          }
        end
1115 1116 1117 1118 1119
      end
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
1120
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #321" />' +
1121
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="321" />' +
1122
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="new comment" />' +
1123 1124 1125 1126 1127
               '</form>'

    assert_dom_equal expected, output_buffer
  end

1128
  def test_nested_fields_for_with_an_empty_supplied_attributes_collection
1129 1130 1131 1132 1133 1134
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        f.fields_for(:comments, []) do |cf|
          concat cf.text_field(:name)
        end
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
      end
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
               '</form>'

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_existing_records_on_a_supplied_nested_attributes_collection
    @post.comments = Array.new(2) { |id| Comment.new(id + 1) }

1148 1149 1150 1151 1152 1153 1154
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for(:comments, @post.comments) { |cf|
          concat cf.text_field(:name)
        }
      end
1155 1156
    end

1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #1" />' +
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="1" />' +
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="comment #2" />' +
               '<input id="post_comments_attributes_1_id" name="post[comments_attributes][1][id]" type="hidden" value="2" />' +
               '</form>'

    assert_dom_equal expected, output_buffer
  end

  def test_nested_fields_for_with_existing_records_on_a_supplied_nested_attributes_collection_different_from_record_one
    comments = Array.new(2) { |id| Comment.new(id + 1) }
    @post.comments = []

1172 1173 1174 1175 1176 1177 1178
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for(:comments, comments) { |cf|
          concat cf.text_field(:name)
        }
      end
1179 1180
    end

1181 1182 1183
    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #1" />' +
1184
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="1" />' +
1185
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="comment #2" />' +
1186
               '<input id="post_comments_attributes_1_id" name="post[comments_attributes][1][id]" type="hidden" value="2" />' +
1187 1188 1189 1190 1191
               '</form>'

    assert_dom_equal expected, output_buffer
  end

1192 1193 1194 1195
  def test_nested_fields_for_on_a_nested_attributes_collection_association_yields_only_builder
    @post.comments = [Comment.new(321), Comment.new]
    yielded_comments = []

1196 1197 1198 1199 1200 1201 1202 1203
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.fields_for(:comments) { |cf|
          concat cf.text_field(:name)
          yielded_comments << cf.object
        }
      end
1204 1205 1206 1207
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input name="post[title]" size="30" type="text" id="post_title" value="Hello World" />' +
1208
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #321" />' +
1209
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="321" />' +
1210
               '<input id="post_comments_attributes_1_name" name="post[comments_attributes][1][name]" size="30" type="text" value="new comment" />' +
1211 1212 1213 1214 1215 1216
               '</form>'

    assert_dom_equal expected, output_buffer
    assert_equal yielded_comments, @post.comments
  end

1217 1218 1219
  def test_nested_fields_for_with_child_index_option_override_on_a_nested_attributes_collection_association
    @post.comments = []

1220 1221 1222 1223 1224 1225
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.fields_for(:comments, Comment.new(321), :child_index => 'abc') { |cf|
          concat cf.text_field(:name)
        }
      end
1226 1227 1228 1229
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input id="post_comments_attributes_abc_name" name="post[comments_attributes][abc][name]" size="30" type="text" value="comment #321" />' +
1230
               '<input id="post_comments_attributes_abc_id" name="post[comments_attributes][abc][id]" type="hidden" value="321" />' +
1231 1232 1233 1234 1235
               '</form>'

    assert_dom_equal expected, output_buffer
  end

1236 1237 1238 1239 1240 1241
  def test_nested_fields_uses_unique_indices_for_different_collection_associations
    @post.comments = [Comment.new(321)]
    @post.tags = [Tag.new(123), Tag.new(456)]
    @post.comments[0].relevances = []
    @post.tags[0].relevances = []
    @post.tags[1].relevances = []
1242 1243 1244 1245 1246 1247 1248 1249

    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.fields_for(:comments, @post.comments[0]) { |cf|
          concat cf.text_field(:name)
          concat cf.fields_for(:relevances, CommentRelevance.new(314)) { |crf|
            concat crf.text_field(:value)
          }
W
wycats 已提交
1250
        }
1251 1252 1253 1254 1255
        concat f.fields_for(:tags, @post.tags[0]) { |tf|
          concat tf.text_field(:value)
          concat tf.fields_for(:relevances, TagRelevance.new(3141)) { |trf|
            concat trf.text_field(:value)
          }
W
wycats 已提交
1256
        }
1257 1258 1259 1260 1261
        concat f.fields_for('tags', @post.tags[1]) { |tf|
          concat tf.text_field(:value)
          concat tf.fields_for(:relevances, TagRelevance.new(31415)) { |trf|
            concat trf.text_field(:value)
          }
W
wycats 已提交
1262
        }
1263
      end
1264 1265 1266 1267 1268
    end

    expected = '<form action="http://www.example.com" method="post">' +
               '<input id="post_comments_attributes_0_name" name="post[comments_attributes][0][name]" size="30" type="text" value="comment #321" />' +
               '<input id="post_comments_attributes_0_relevances_attributes_0_value" name="post[comments_attributes][0][relevances_attributes][0][value]" size="30" type="text" value="commentrelevance #314" />' +
1269 1270
               '<input id="post_comments_attributes_0_relevances_attributes_0_id" name="post[comments_attributes][0][relevances_attributes][0][id]" type="hidden" value="314" />' +
               '<input id="post_comments_attributes_0_id" name="post[comments_attributes][0][id]" type="hidden" value="321" />' +
1271 1272
               '<input id="post_tags_attributes_0_value" name="post[tags_attributes][0][value]" size="30" type="text" value="tag #123" />' +
               '<input id="post_tags_attributes_0_relevances_attributes_0_value" name="post[tags_attributes][0][relevances_attributes][0][value]" size="30" type="text" value="tagrelevance #3141" />' +
1273 1274
               '<input id="post_tags_attributes_0_relevances_attributes_0_id" name="post[tags_attributes][0][relevances_attributes][0][id]" type="hidden" value="3141" />' +
               '<input id="post_tags_attributes_0_id" name="post[tags_attributes][0][id]" type="hidden" value="123" />' +
1275 1276
               '<input id="post_tags_attributes_1_value" name="post[tags_attributes][1][value]" size="30" type="text" value="tag #456" />' +
               '<input id="post_tags_attributes_1_relevances_attributes_0_value" name="post[tags_attributes][1][relevances_attributes][0][value]" size="30" type="text" value="tagrelevance #31415" />' +
1277 1278
               '<input id="post_tags_attributes_1_relevances_attributes_0_id" name="post[tags_attributes][1][relevances_attributes][0][id]" type="hidden" value="31415" />' +
               '<input id="post_tags_attributes_1_id" name="post[tags_attributes][1][id]" type="hidden" value="456" />' +
1279 1280 1281 1282 1283
               '</form>'

    assert_dom_equal expected, output_buffer
  end

1284
  def test_fields_for
W
wycats 已提交
1285
    output_buffer = fields_for(:post, @post) do |f|
1286 1287 1288
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1289 1290
    end

1291
    expected =
1292 1293
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
1294 1295
      "<input name='post[secret]' type='hidden' value='0' />" +
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />"
1296

1297
    assert_dom_equal expected, output_buffer
1298 1299 1300
  end

  def test_fields_for_with_index
W
wycats 已提交
1301
    output_buffer = fields_for("post[]", @post) do |f|
1302 1303 1304
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1305 1306 1307 1308 1309
    end

    expected =
      "<input name='post[123][title]' size='30' type='text' id='post_123_title' value='Hello World' />" +
      "<textarea name='post[123][body]' id='post_123_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
1310 1311
      "<input name='post[123][secret]' type='hidden' value='0' />" +
      "<input name='post[123][secret]' checked='checked' type='checkbox' id='post_123_secret' value='1' />"
1312

1313
    assert_dom_equal expected, output_buffer
1314 1315 1316
  end

  def test_fields_for_with_nil_index_option_override
W
wycats 已提交
1317
    output_buffer = fields_for("post[]", @post, :index => nil) do |f|
1318 1319 1320
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1321 1322 1323 1324 1325
    end

    expected =
      "<input name='post[][title]' size='30' type='text' id='post__title' value='Hello World' />" +
      "<textarea name='post[][body]' id='post__body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
1326 1327
      "<input name='post[][secret]' type='hidden' value='0' />" +
      "<input name='post[][secret]' checked='checked' type='checkbox' id='post__secret' value='1' />"
1328

1329
    assert_dom_equal expected, output_buffer
1330 1331 1332
  end

  def test_fields_for_with_index_option_override
W
wycats 已提交
1333
    output_buffer = fields_for("post[]", @post, :index => "abc") do |f|
1334 1335 1336
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1337 1338 1339 1340 1341
    end

    expected =
      "<input name='post[abc][title]' size='30' type='text' id='post_abc_title' value='Hello World' />" +
      "<textarea name='post[abc][body]' id='post_abc_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
1342 1343
      "<input name='post[abc][secret]' type='hidden' value='0' />" +
      "<input name='post[abc][secret]' checked='checked' type='checkbox' id='post_abc_secret' value='1' />"
1344

1345
    assert_dom_equal expected, output_buffer
1346
  end
1347 1348

  def test_fields_for_without_object
W
wycats 已提交
1349
    output_buffer = fields_for(:post) do |f|
1350 1351 1352
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1353 1354
    end

1355
    expected =
1356 1357
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
1358 1359
      "<input name='post[secret]' type='hidden' value='0' />" +
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />"
1360

1361
    assert_dom_equal expected, output_buffer
1362 1363 1364
  end

  def test_fields_for_with_only_object
W
wycats 已提交
1365
    output_buffer = fields_for(@post) do |f|
1366 1367 1368
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1369 1370
    end

1371
    expected =
1372 1373
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
1374 1375
      "<input name='post[secret]' type='hidden' value='0' />" +
      "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />"
1376

1377
    assert_dom_equal expected, output_buffer
1378 1379
  end

1380
  def test_fields_for_object_with_bracketed_name
W
wycats 已提交
1381
    output_buffer = fields_for("author[post]", @post) do |f|
1382 1383
      concat f.label(:title)
      concat f.text_field(:title)
1384 1385
    end

1386 1387
    assert_dom_equal "<label for=\"author_post_title\">Title</label>" +
    "<input name='author[post][title]' size='30' type='text' id='author_post_title' value='Hello World' />",
1388
      output_buffer
1389 1390
  end

1391
  def test_fields_for_object_with_bracketed_name_and_index
W
wycats 已提交
1392
    output_buffer = fields_for("author[post]", @post, :index => 1) do |f|
1393 1394
      concat f.label(:title)
      concat f.text_field(:title)
1395 1396 1397 1398
    end

    assert_dom_equal "<label for=\"author_post_1_title\">Title</label>" +
      "<input name='author[post][1][title]' size='30' type='text' id='author_post_1_title' value='Hello World' />",
1399
      output_buffer
1400 1401
  end

1402 1403 1404
  def test_form_builder_does_not_have_form_for_method
    assert ! ActionView::Helpers::FormBuilder.instance_methods.include?('form_for')
  end
1405

1406
  def test_form_for_and_fields_for
1407 1408 1409 1410
    assert_deprecated do
      form_for(:post, @post, :html => { :id => 'create-post' }) do |post_form|
        concat post_form.text_field(:title)
        concat post_form.text_area(:body)
1411

1412 1413 1414 1415
        concat fields_for(:parent_post, @post) { |parent_fields|
          concat parent_fields.check_box(:secret)
        }
      end
1416 1417
    end

1418
    expected =
1419
      "<form action='http://www.example.com' id='create-post' method='post'>" +
1420 1421 1422
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='parent_post[secret]' type='hidden' value='0' />" +
1423
      "<input name='parent_post[secret]' checked='checked' type='checkbox' id='parent_post_secret' value='1' />" +
1424 1425
      "</form>"

1426
    assert_dom_equal expected, output_buffer
1427
  end
1428

1429
  def test_form_for_and_fields_for_with_object
1430 1431 1432 1433
    assert_deprecated do
      form_for(:post, @post, :html => { :id => 'create-post' }) do |post_form|
        concat post_form.text_field(:title)
        concat post_form.text_area(:body)
1434

1435 1436 1437 1438
        concat post_form.fields_for(@comment) { |comment_fields|
          concat comment_fields.text_field(:name)
        }
      end
1439 1440
    end

1441
    expected =
1442 1443 1444 1445 1446 1447
      "<form action='http://www.example.com' id='create-post' method='post'>" +
      "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
      "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
      "<input name='post[comment][name]' type='text' id='post_comment_name' value='new comment' size='30' />" +
      "</form>"

1448
    assert_dom_equal expected, output_buffer
1449 1450
  end

1451
  class LabelledFormBuilder < ActionView::Helpers::FormBuilder
1452
    (field_helpers - %w(hidden_field)).each do |selector|
1453
      class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
1454
        def #{selector}(field, *args, &proc)
1455
          ("<label for='\#{field}'>\#{field.to_s.humanize}:</label> " + super + "<br/>").html_safe
1456
        end
1457
      RUBY_EVAL
1458 1459
    end
  end
1460

1461
  def test_form_for_with_labelled_builder
1462 1463 1464 1465 1466 1467
    assert_deprecated do
      form_for(:post, @post, :builder => LabelledFormBuilder) do |f|
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
1468 1469
    end

1470
    expected =
1471 1472 1473
      "<form action='http://www.example.com' method='post'>" +
      "<label for='title'>Title:</label> <input name='post[title]' size='30' type='text' id='post_title' value='Hello World' /><br/>" +
      "<label for='body'>Body:</label> <textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea><br/>" +
1474
      "<label for='secret'>Secret:</label> <input name='post[secret]' type='hidden' value='0' /><input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' /><br/>" +
1475 1476
      "</form>"

1477
    assert_dom_equal expected, output_buffer
1478
  end
1479 1480

  def test_default_form_builder
1481 1482
    old_default_form_builder, ActionView::Base.default_form_builder =
      ActionView::Base.default_form_builder, LabelledFormBuilder
1483

1484 1485 1486 1487 1488 1489
    assert_deprecated do
      form_for(:post, @post) do |f|
        concat f.text_field(:title)
        concat f.text_area(:body)
        concat f.check_box(:secret)
      end
1490 1491
    end

1492
    expected =
1493 1494 1495
      "<form action='http://www.example.com' method='post'>" +
      "<label for='title'>Title:</label> <input name='post[title]' size='30' type='text' id='post_title' value='Hello World' /><br/>" +
      "<label for='body'>Body:</label> <textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea><br/>" +
1496
      "<label for='secret'>Secret:</label> <input name='post[secret]' type='hidden' value='0' /><input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' /><br/>" +
1497 1498
      "</form>"

1499
    assert_dom_equal expected, output_buffer
1500
  ensure
1501
    ActionView::Base.default_form_builder = old_default_form_builder
1502
  end
1503

1504
  def test_fields_for_with_labelled_builder
W
wycats 已提交
1505
    output_buffer = fields_for(:post, @post, :builder => LabelledFormBuilder) do |f|
1506 1507 1508
      concat f.text_field(:title)
      concat f.text_area(:body)
      concat f.check_box(:secret)
1509
    end
1510 1511

    expected =
1512 1513
      "<label for='title'>Title:</label> <input name='post[title]' size='30' type='text' id='post_title' value='Hello World' /><br/>" +
      "<label for='body'>Body:</label> <textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea><br/>" +
1514
      "<label for='secret'>Secret:</label> <input name='post[secret]' type='hidden' value='0' /><input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' /><br/>"
1515

1516
    assert_dom_equal expected, output_buffer
1517
  end
1518

1519 1520 1521
  def test_form_for_with_labelled_builder_with_nested_fields_for_without_options_hash
    klass = nil

1522 1523 1524 1525 1526 1527
    assert_deprecated do
      form_for(:post, @post, :builder => LabelledFormBuilder) do |f|
        f.fields_for(:comments, Comment.new) do |nested_fields|
          klass = nested_fields.class
          ''
        end
1528 1529 1530 1531 1532 1533 1534 1535 1536
      end
    end

    assert_equal LabelledFormBuilder, klass
  end

  def test_form_for_with_labelled_builder_with_nested_fields_for_with_options_hash
    klass = nil

1537 1538 1539 1540 1541 1542
    assert_deprecated do
      form_for(:post, @post, :builder => LabelledFormBuilder) do |f|
        f.fields_for(:comments, Comment.new, :index => 'foo') do |nested_fields|
          klass = nested_fields.class
          ''
        end
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
      end
    end

    assert_equal LabelledFormBuilder, klass
  end

  class LabelledFormBuilderSubclass < LabelledFormBuilder; end

  def test_form_for_with_labelled_builder_with_nested_fields_for_with_custom_builder
    klass = nil

1554 1555 1556 1557 1558 1559
    assert_deprecated do
      form_for(:post, @post, :builder => LabelledFormBuilder) do |f|
        f.fields_for(:comments, Comment.new, :builder => LabelledFormBuilderSubclass) do |nested_fields|
          klass = nested_fields.class
          ''
        end
1560 1561 1562 1563 1564 1565
      end
    end

    assert_equal LabelledFormBuilderSubclass, klass
  end

1566
  def test_form_for_with_html_options_adds_options_to_form_tag
1567 1568 1569
    assert_deprecated do
      form_for(:post, @post, :html => {:id => 'some_form', :class => 'some_class'}) do |f| end
    end
1570
    expected = "<form action=\"http://www.example.com\" class=\"some_class\" id=\"some_form\" method=\"post\"></form>"
1571

1572
    assert_dom_equal expected, output_buffer
1573
  end
1574

1575
  def test_form_for_with_string_url_option
1576 1577 1578
    assert_deprecated do
      form_for(:post, @post, :url => 'http://www.otherdomain.com') do |f| end
    end
1579

1580
    assert_equal '<form action="http://www.otherdomain.com" method="post"></form>', output_buffer
1581 1582 1583
  end

  def test_form_for_with_hash_url_option
1584 1585 1586
    assert_deprecated do
      form_for(:post, @post, :url => {:controller => 'controller', :action => 'action'}) do |f| end
    end
1587

1588 1589
    assert_equal 'controller', @url_for_options[:controller]
    assert_equal 'action', @url_for_options[:action]
1590
  end
1591

1592
  def test_form_for_with_record_url_option
1593 1594 1595
    assert_deprecated do
      form_for(:post, @post, :url => @post) do |f| end
    end
1596 1597

    expected = "<form action=\"/posts/123\" method=\"post\"></form>"
1598
    assert_equal expected, output_buffer
1599 1600 1601 1602 1603
  end

  def test_form_for_with_existing_object
    form_for(@post) do |f| end

1604
    expected = "<form action=\"/posts/123\" class=\"edit_post\" id=\"edit_post_123\" method=\"post\"><div style=\"margin:0;padding:0;display:inline\"><input name=\"_method\" type=\"hidden\" value=\"put\" /></div></form>"
1605
    assert_equal expected, output_buffer
1606 1607 1608 1609
  end

  def test_form_for_with_new_object
    post = Post.new
1610
    post.persisted = false
1611 1612 1613 1614 1615
    def post.id() nil end

    form_for(post) do |f| end

    expected = "<form action=\"/posts\" class=\"new_post\" id=\"new_post\" method=\"post\"></form>"
1616
    assert_equal expected, output_buffer
1617 1618
  end

1619 1620 1621 1622
  def test_form_for_with_existing_object_in_list
    @comment.save
    form_for([@post, @comment]) {}

1623
    expected = %(<form action="#{comment_path(@post, @comment)}" class="edit_comment" id="edit_comment_1" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="put" /></div></form>)
1624
    assert_dom_equal expected, output_buffer
1625 1626 1627 1628 1629 1630
  end

  def test_form_for_with_new_object_in_list
    form_for([@post, @comment]) {}

    expected = %(<form action="#{comments_path(@post)}" class="new_comment" id="new_comment" method="post"></form>)
1631
    assert_dom_equal expected, output_buffer
1632 1633
  end

1634 1635 1636
  def test_form_for_with_existing_object_and_namespace_in_list
    @comment.save
    form_for([:admin, @post, @comment]) {}
1637

1638
    expected = %(<form action="#{admin_comment_path(@post, @comment)}" class="edit_comment" id="edit_comment_1" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="put" /></div></form>)
1639
    assert_dom_equal expected, output_buffer
1640
  end
1641

1642 1643
  def test_form_for_with_new_object_and_namespace_in_list
    form_for([:admin, @post, @comment]) {}
1644

1645
    expected = %(<form action="#{admin_comments_path(@post)}" class="new_comment" id="new_comment" method="post"></form>)
1646
    assert_dom_equal expected, output_buffer
1647 1648
  end

1649 1650 1651
  def test_form_for_with_existing_object_and_custom_url
    form_for(@post, :url => "/super_posts") do |f| end

1652
    expected = "<form action=\"/super_posts\" class=\"edit_post\" id=\"edit_post_123\" method=\"post\"><div style=\"margin:0;padding:0;display:inline\"><input name=\"_method\" type=\"hidden\" value=\"put\" /></div></form>"
1653
    assert_equal expected, output_buffer
1654
  end
1655

1656 1657 1658 1659 1660
  def test_fields_for_returns_block_result
    output = fields_for(Post.new) { |f| "fields" }
    assert_equal "fields", output
  end

1661
  protected
1662 1663 1664
    def comments_path(post)
      "/posts/#{post.id}/comments"
    end
1665
    alias_method :post_comments_path, :comments_path
1666 1667 1668 1669

    def comment_path(post, comment)
      "/posts/#{post.id}/comments/#{comment.id}"
    end
1670
    alias_method :post_comment_path, :comment_path
1671

1672 1673 1674 1675
    def admin_comments_path(post)
      "/admin/posts/#{post.id}/comments"
    end
    alias_method :admin_post_comments_path, :admin_comments_path
1676

1677 1678 1679 1680
    def admin_comment_path(post, comment)
      "/admin/posts/#{post.id}/comments/#{comment.id}"
    end
    alias_method :admin_post_comment_path, :admin_comment_path
1681

1682 1683
    def posts_path
      "/posts"
1684 1685
    end

1686 1687
    def post_path(post)
      "/posts/#{post.id}"
1688
    end
1689 1690 1691

    def protect_against_forgery?
      false
1692
    end
1693
end