aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_options_helper_test.rb
blob: 78548864ff6d246c6e08a8d6269375bafbae67ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
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
457
458
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
require 'abstract_unit'
require 'tzinfo'

TZInfo::Timezone.cattr_reader :loaded_zones

uses_mocha "FormOptionsHelperTest" do
  class FormOptionsHelperTest < ActionView::TestCase
    tests ActionView::Helpers::FormOptionsHelper

    silence_warnings do
      Post        = Struct.new('Post', :title, :author_name, :body, :secret, :written_on, :category, :origin)
      Continent   = Struct.new('Continent', :continent_name, :countries)
      Country     = Struct.new('Country', :country_id, :country_name)
      Firm        = Struct.new('Firm', :time_zone)
      Album       = Struct.new('Album', :id, :title, :genre)
    end

    def setup
      @fake_timezones = %w(A B C D E).inject([]) do |zones, id|
        tz = TZInfo::Timezone.loaded_zones[id] = stub(:name => id, :to_s => id)
        ActiveSupport::TimeZone.stubs(:[]).with(id).returns(tz)
        zones << tz
      end
      ActiveSupport::TimeZone.stubs(:all).returns(@fake_timezones)
    end

    def test_collection_options
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      assert_dom_equal(
        "<option value=\"&lt;Abe&gt;\">&lt;Abe&gt; went home</option>\n<option value=\"Babe\">Babe went home</option>\n<option value=\"Cabe\">Cabe went home</option>",
        options_from_collection_for_select(@posts, "author_name", "title")
      )
    end


    def test_collection_options_with_preselected_value
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      assert_dom_equal(
        "<option value=\"&lt;Abe&gt;\">&lt;Abe&gt; went home</option>\n<option value=\"Babe\" selected=\"selected\">Babe went home</option>\n<option value=\"Cabe\">Cabe went home</option>",
        options_from_collection_for_select(@posts, "author_name", "title", "Babe")
      )
    end

    def test_collection_options_with_preselected_value_array
        @posts = [
          Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
          Post.new("Babe went home", "Babe", "To a little house", "shh!"),
          Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
        ]

        assert_dom_equal(
          "<option value=\"&lt;Abe&gt;\">&lt;Abe&gt; went home</option>\n<option value=\"Babe\" selected=\"selected\">Babe went home</option>\n<option value=\"Cabe\" selected=\"selected\">Cabe went home</option>",
          options_from_collection_for_select(@posts, "author_name", "title", [ "Babe", "Cabe" ])
        )
    end

    def test_array_options_for_select
      assert_dom_equal(
        "<option value=\"&lt;Denmark&gt;\">&lt;Denmark&gt;</option>\n<option value=\"USA\">USA</option>\n<option value=\"Sweden\">Sweden</option>",
        options_for_select([ "<Denmark>", "USA", "Sweden" ])
      )
    end

    def test_array_options_for_select_with_selection
      assert_dom_equal(
        "<option value=\"Denmark\">Denmark</option>\n<option value=\"&lt;USA&gt;\" selected=\"selected\">&lt;USA&gt;</option>\n<option value=\"Sweden\">Sweden</option>",
        options_for_select([ "Denmark", "<USA>", "Sweden" ], "<USA>")
      )
    end

    def test_array_options_for_select_with_selection_array
        assert_dom_equal(
          "<option value=\"Denmark\">Denmark</option>\n<option value=\"&lt;USA&gt;\" selected=\"selected\">&lt;USA&gt;</option>\n<option value=\"Sweden\" selected=\"selected\">Sweden</option>",
          options_for_select([ "Denmark", "<USA>", "Sweden" ], [ "<USA>", "Sweden" ])
        )
    end

    def test_array_options_for_string_include_in_other_string_bug_fix
        assert_dom_equal(
          "<option value=\"ruby\">ruby</option>\n<option value=\"rubyonrails\" selected=\"selected\">rubyonrails</option>",
          options_for_select([ "ruby", "rubyonrails" ], "rubyonrails")
        )
        assert_dom_equal(
          "<option value=\"ruby\" selected=\"selected\">ruby</option>\n<option value=\"rubyonrails\">rubyonrails</option>",
          options_for_select([ "ruby", "rubyonrails" ], "ruby")
        )
        assert_dom_equal(
          %(<option value="ruby" selected="selected">ruby</option>\n<option value="rubyonrails">rubyonrails</option>\n<option value=""></option>),
          options_for_select([ "ruby", "rubyonrails", nil ], "ruby")
        )
    end

    def test_hash_options_for_select
      assert_dom_equal(
        "<option value=\"&lt;Kroner&gt;\">&lt;DKR&gt;</option>\n<option value=\"Dollar\">$</option>",
        options_for_select("$" => "Dollar", "<DKR>" => "<Kroner>").split("\n").sort.join("\n")
      )
      assert_dom_equal(
        "<option value=\"&lt;Kroner&gt;\">&lt;DKR&gt;</option>\n<option value=\"Dollar\" selected=\"selected\">$</option>",
        options_for_select({ "$" => "Dollar", "<DKR>" => "<Kroner>" }, "Dollar").split("\n").sort.join("\n")
      )
      assert_dom_equal(
        "<option value=\"&lt;Kroner&gt;\" selected=\"selected\">&lt;DKR&gt;</option>\n<option value=\"Dollar\" selected=\"selected\">$</option>",
        options_for_select({ "$" => "Dollar", "<DKR>" => "<Kroner>" }, [ "Dollar", "<Kroner>" ]).split("\n").sort.join("\n")
      )
    end

    def test_ducktyped_options_for_select
      quack = Struct.new(:first, :last)
      assert_dom_equal(
        "<option value=\"&lt;Kroner&gt;\">&lt;DKR&gt;</option>\n<option value=\"Dollar\">$</option>",
        options_for_select([quack.new("<DKR>", "<Kroner>"), quack.new("$", "Dollar")])
      )
      assert_dom_equal(
        "<option value=\"&lt;Kroner&gt;\">&lt;DKR&gt;</option>\n<option value=\"Dollar\" selected=\"selected\">$</option>",
        options_for_select([quack.new("<DKR>", "<Kroner>"), quack.new("$", "Dollar")], "Dollar")
      )
      assert_dom_equal(
        "<option value=\"&lt;Kroner&gt;\" selected=\"selected\">&lt;DKR&gt;</option>\n<option value=\"Dollar\" selected=\"selected\">$</option>",
        options_for_select([quack.new("<DKR>", "<Kroner>"), quack.new("$", "Dollar")], ["Dollar", "<Kroner>"])
      )
    end

    def test_option_groups_from_collection_for_select
      @continents = [
        Continent.new("<Africa>", [Country.new("<sa>", "<South Africa>"), Country.new("so", "Somalia")] ),
        Continent.new("Europe", [Country.new("dk", "Denmark"), Country.new("ie", "Ireland")] )
      ]

      assert_dom_equal(
        "<optgroup label=\"&lt;Africa&gt;\"><option value=\"&lt;sa&gt;\">&lt;South Africa&gt;</option>\n<option value=\"so\">Somalia</option></optgroup><optgroup label=\"Europe\"><option value=\"dk\" selected=\"selected\">Denmark</option>\n<option value=\"ie\">Ireland</option></optgroup>",
        option_groups_from_collection_for_select(@continents, "countries", "continent_name", "country_id", "country_name", "dk")
      )
    end

    def test_time_zone_options_no_parms
      opts = time_zone_options_for_select
      assert_dom_equal "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\">D</option>\n" +
                   "<option value=\"E\">E</option>",
                   opts
    end

    def test_time_zone_options_with_selected
      opts = time_zone_options_for_select( "D" )
      assert_dom_equal "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>",
                   opts
    end

    def test_time_zone_options_with_unknown_selected
      opts = time_zone_options_for_select( "K" )
      assert_dom_equal "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\">D</option>\n" +
                   "<option value=\"E\">E</option>",
                   opts
    end

    def test_time_zone_options_with_priority_zones
      zones = [ ActiveSupport::TimeZone.new( "B" ), ActiveSupport::TimeZone.new( "E" ) ]
      opts = time_zone_options_for_select( nil, zones )
      assert_dom_equal "<option value=\"B\">B</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "<option value=\"\" disabled=\"disabled\">-------------</option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\">D</option>",
                   opts
    end

    def test_time_zone_options_with_selected_priority_zones
      zones = [ ActiveSupport::TimeZone.new( "B" ), ActiveSupport::TimeZone.new( "E" ) ]
      opts = time_zone_options_for_select( "E", zones )
      assert_dom_equal "<option value=\"B\">B</option>\n" +
                   "<option value=\"E\" selected=\"selected\">E</option>" +
                   "<option value=\"\" disabled=\"disabled\">-------------</option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\">D</option>",
                   opts
    end

    def test_time_zone_options_with_unselected_priority_zones
      zones = [ ActiveSupport::TimeZone.new( "B" ), ActiveSupport::TimeZone.new( "E" ) ]
      opts = time_zone_options_for_select( "C", zones )
      assert_dom_equal "<option value=\"B\">B</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "<option value=\"\" disabled=\"disabled\">-------------</option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"C\" selected=\"selected\">C</option>\n" +
                   "<option value=\"D\">D</option>",
                   opts
    end

    def test_select
      @post = Post.new
      @post.category = "<mus>"
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest))
      )
    end

    def test_select_under_fields_for
      @post = Post.new
      @post.category = "<mus>"

      fields_for :post, @post do |f|
        concat f.select(:category, %w( abe <mus> hest))
      end
    
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        output_buffer
      )
    end

    def test_select_under_fields_for_with_index
      @post = Post.new
      @post.category = "<mus>"

      fields_for :post, @post, :index => 108 do |f|
        concat f.select(:category, %w( abe <mus> hest))
      end

      assert_dom_equal(
        "<select id=\"post_108_category\" name=\"post[108][category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        output_buffer
      )
    end

    def test_select_under_fields_for_with_auto_index
      @post = Post.new
      @post.category = "<mus>"
      def @post.to_param; 108; end

      fields_for "post[]", @post do |f|
        concat f.select(:category, %w( abe <mus> hest))
      end

      assert_dom_equal(
        "<select id=\"post_108_category\" name=\"post[108][category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        output_buffer
      )
    end

    def test_select_with_blank
      @post = Post.new
      @post.category = "<mus>"
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"\"></option>\n<option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest), :include_blank => true)
      )
    end

    def test_select_with_blank_as_string
      @post = Post.new
      @post.category = "<mus>"
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"\">None</option>\n<option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest), :include_blank => 'None')
      )
    end

    def test_select_with_default_prompt
      @post = Post.new
      @post.category = ""
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"\">Please select</option>\n<option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest), :prompt => true)
      )
    end

    def test_select_no_prompt_when_select_has_value
      @post = Post.new
      @post.category = "<mus>"
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest), :prompt => true)
      )
    end

    def test_select_with_given_prompt
      @post = Post.new
      @post.category = ""
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"\">The prompt</option>\n<option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest), :prompt => 'The prompt')
      )
    end

    def test_select_with_prompt_and_blank
      @post = Post.new
      @post.category = ""
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"\">Please select</option>\n<option value=\"\"></option>\n<option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest), :prompt => true, :include_blank => true)
      )
    end

    def test_select_with_selected_value
      @post = Post.new
      @post.category = "<mus>"
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"abe\" selected=\"selected\">abe</option>\n<option value=\"&lt;mus&gt;\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest ), :selected => 'abe')
      )
    end
  
    def test_select_with_index_option
      @album = Album.new
      @album.id = 1
    
      expected = "<select id=\"album__genre\" name=\"album[][genre]\"><option value=\"rap\">rap</option>\n<option value=\"rock\">rock</option>\n<option value=\"country\">country</option></select>"    

      assert_dom_equal(
        expected, 
        select("album[]", "genre", %w[rap rock country], {}, { :index => nil })
      )
    end

    def test_select_with_selected_nil
      @post = Post.new
      @post.category = "<mus>"
      assert_dom_equal(
        "<select id=\"post_category\" name=\"post[category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
        select("post", "category", %w( abe <mus> hest ), :selected => nil)
      )
    end

    def test_collection_select
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      assert_dom_equal(
        "<select id=\"post_author_name\" name=\"post[author_name]\"><option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>",
        collection_select("post", "author_name", @posts, "author_name", "author_name")
      )
    end

    def test_collection_select_under_fields_for
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      fields_for :post, @post do |f|
        concat f.collection_select(:author_name, @posts, :author_name, :author_name)
      end
    
      assert_dom_equal(
        "<select id=\"post_author_name\" name=\"post[author_name]\"><option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>",
        output_buffer
      )
    end

    def test_collection_select_under_fields_for_with_index
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      fields_for :post, @post, :index => 815 do |f|
        concat f.collection_select(:author_name, @posts, :author_name, :author_name)
      end

      assert_dom_equal(
        "<select id=\"post_815_author_name\" name=\"post[815][author_name]\"><option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>",
        output_buffer
      )
    end

    def test_collection_select_under_fields_for_with_auto_index
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"
      def @post.to_param; 815; end

      fields_for "post[]", @post do |f|
        concat f.collection_select(:author_name, @posts, :author_name, :author_name)
      end

      assert_dom_equal(
        "<select id=\"post_815_author_name\" name=\"post[815][author_name]\"><option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>",
        output_buffer
      )
    end

    def test_collection_select_with_blank_and_style
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      assert_dom_equal(
        "<select id=\"post_author_name\" name=\"post[author_name]\" style=\"width: 200px\"><option value=\"\"></option>\n<option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>",
        collection_select("post", "author_name", @posts, "author_name", "author_name", { :include_blank => true }, "style" => "width: 200px")
      )
    end

    def test_collection_select_with_blank_as_string_and_style
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      assert_dom_equal(
        "<select id=\"post_author_name\" name=\"post[author_name]\" style=\"width: 200px\"><option value=\"\">No Selection</option>\n<option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>",
        collection_select("post", "author_name", @posts, "author_name", "author_name", { :include_blank => 'No Selection' }, "style" => "width: 200px")
      )
    end

    def test_collection_select_with_multiple_option_appends_array_brackets
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      expected = "<select id=\"post_author_name\" name=\"post[author_name][]\" multiple=\"multiple\"><option value=\"\"></option>\n<option value=\"&lt;Abe&gt;\">&lt;Abe&gt;</option>\n<option value=\"Babe\" selected=\"selected\">Babe</option>\n<option value=\"Cabe\">Cabe</option></select>"

      # Should suffix default name with [].
      assert_dom_equal expected, collection_select("post", "author_name", @posts, "author_name", "author_name", { :include_blank => true }, :multiple => true)

      # Shouldn't suffix custom name with [].
      assert_dom_equal expected, collection_select("post", "author_name", @posts, "author_name", "author_name", { :include_blank => true, :name => 'post[author_name][]' }, :multiple => true)
    end

    def test_collection_select_with_blank_and_selected
      @posts = [
        Post.new("<Abe> went home", "<Abe>", "To a little house", "shh!"),
        Post.new("Babe went home", "Babe", "To a little house", "shh!"),
        Post.new("Cabe went home", "Cabe", "To a little house", "shh!")
      ]

      @post = Post.new
      @post.author_name = "Babe"

      assert_dom_equal(
        %{<select id="post_author_name" name="post[author_name]"><option value=""></option>\n<option value="&lt;Abe&gt;" selected="selected">&lt;Abe&gt;</option>\n<option value="Babe">Babe</option>\n<option value="Cabe">Cabe</option></select>},
        collection_select("post", "author_name", @posts, "author_name", "author_name", {:include_blank => true, :selected => "<Abe>"})
      )
    end

    def test_time_zone_select
      @firm = Firm.new("D")
      html = time_zone_select( "firm", "time_zone" )
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
    end

    def test_time_zone_select_under_fields_for
      @firm = Firm.new("D")

      fields_for :firm, @firm do |f|
        concat f.time_zone_select(:time_zone)
      end
    
      assert_dom_equal(
        "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
        "<option value=\"A\">A</option>\n" +
        "<option value=\"B\">B</option>\n" +
        "<option value=\"C\">C</option>\n" +
        "<option value=\"D\" selected=\"selected\">D</option>\n" +
        "<option value=\"E\">E</option>" +
        "</select>",
        output_buffer
      )
    end

    def test_time_zone_select_under_fields_for_with_index
      @firm = Firm.new("D")

      fields_for :firm, @firm, :index => 305 do |f|
        concat f.time_zone_select(:time_zone)
      end

      assert_dom_equal(
        "<select id=\"firm_305_time_zone\" name=\"firm[305][time_zone]\">" +
        "<option value=\"A\">A</option>\n" +
        "<option value=\"B\">B</option>\n" +
        "<option value=\"C\">C</option>\n" +
        "<option value=\"D\" selected=\"selected\">D</option>\n" +
        "<option value=\"E\">E</option>" +
        "</select>",
        output_buffer
      )
    end

    def test_time_zone_select_under_fields_for_with_auto_index
      @firm = Firm.new("D")
      def @firm.to_param; 305; end

      fields_for "firm[]", @firm do |f|
        concat f.time_zone_select(:time_zone)
      end

      assert_dom_equal(
        "<select id=\"firm_305_time_zone\" name=\"firm[305][time_zone]\">" +
        "<option value=\"A\">A</option>\n" +
        "<option value=\"B\">B</option>\n" +
        "<option value=\"C\">C</option>\n" +
        "<option value=\"D\" selected=\"selected\">D</option>\n" +
        "<option value=\"E\">E</option>" +
        "</select>",
        output_buffer
      )
    end

    def test_time_zone_select_with_blank
      @firm = Firm.new("D")
      html = time_zone_select("firm", "time_zone", nil, :include_blank => true)
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                   "<option value=\"\"></option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
    end

    def test_time_zone_select_with_blank_as_string
      @firm = Firm.new("D")
      html = time_zone_select("firm", "time_zone", nil, :include_blank => 'No Zone')
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                   "<option value=\"\">No Zone</option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
    end

    def test_time_zone_select_with_style
      @firm = Firm.new("D")
      html = time_zone_select("firm", "time_zone", nil, {},
        "style" => "color: red")
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\" style=\"color: red\">" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
      assert_dom_equal html, time_zone_select("firm", "time_zone", nil, {},
        :style => "color: red")
    end

    def test_time_zone_select_with_blank_and_style
      @firm = Firm.new("D")
      html = time_zone_select("firm", "time_zone", nil,
        { :include_blank => true }, "style" => "color: red")
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\" style=\"color: red\">" +
                   "<option value=\"\"></option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
      assert_dom_equal html, time_zone_select("firm", "time_zone", nil,
        { :include_blank => true }, :style => "color: red")
    end

    def test_time_zone_select_with_blank_as_string_and_style
      @firm = Firm.new("D")
      html = time_zone_select("firm", "time_zone", nil,
        { :include_blank => 'No Zone' }, "style" => "color: red")
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\" style=\"color: red\">" +
                   "<option value=\"\">No Zone</option>\n" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
      assert_dom_equal html, time_zone_select("firm", "time_zone", nil,
        { :include_blank => 'No Zone' }, :style => "color: red")
    end

    def test_time_zone_select_with_priority_zones
      @firm = Firm.new("D")
      zones = [ ActiveSupport::TimeZone.new("A"), ActiveSupport::TimeZone.new("D") ]
      html = time_zone_select("firm", "time_zone", zones )
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>" +
                   "<option value=\"\" disabled=\"disabled\">-------------</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
    end

    def test_time_zone_select_with_priority_zones_as_regexp
      @firm = Firm.new("D")
      @fake_timezones.each_with_index do |tz, i|
        tz.stubs(:=~).returns(i.zero? || i == 3)
      end

      html = time_zone_select("firm", "time_zone", /A|D/)
      assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                   "<option value=\"A\">A</option>\n" +
                   "<option value=\"D\" selected=\"selected\">D</option>" +
                   "<option value=\"\" disabled=\"disabled\">-------------</option>\n" +
                   "<option value=\"B\">B</option>\n" +
                   "<option value=\"C\">C</option>\n" +
                   "<option value=\"E\">E</option>" +
                   "</select>",
                   html
    end

    def test_time_zone_select_with_default_time_zone_and_nil_value
       @firm = Firm.new()
       @firm.time_zone = nil
        html = time_zone_select( "firm", "time_zone", nil, :default => 'B' )
        assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                     "<option value=\"A\">A</option>\n" +
                     "<option value=\"B\" selected=\"selected\">B</option>\n" +
                     "<option value=\"C\">C</option>\n" +
                     "<option value=\"D\">D</option>\n" +
                     "<option value=\"E\">E</option>" +
                     "</select>",
                     html
    end

    def test_time_zone_select_with_default_time_zone_and_value
       @firm = Firm.new('D')
        html = time_zone_select( "firm", "time_zone", nil, :default => 'B' )
        assert_dom_equal "<select id=\"firm_time_zone\" name=\"firm[time_zone]\">" +
                     "<option value=\"A\">A</option>\n" +
                     "<option value=\"B\">B</option>\n" +
                     "<option value=\"C\">C</option>\n" +
                     "<option value=\"D\" selected=\"selected\">D</option>\n" +
                     "<option value=\"E\">E</option>" +
                     "</select>",
                     html
    end

  end
end