forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectExtensionsTest.cs
More file actions
3508 lines (3014 loc) · 150 KB
/
Copy pathSelectExtensionsTest.cs
File metadata and controls
3508 lines (3014 loc) · 150 KB
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
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Web.Mvc.Test;
using System.Web.WebPages.Scope;
using Microsoft.TestCommon;
using Microsoft.Web.UnitTestUtil;
namespace System.Web.Mvc.Html.Test
{
[Xunit.Collection("Uses ScopeStorage or ViewEngines.Engines")]
public class SelectExtensionsTest : IDisposable
{
private static readonly ViewDataDictionary<FooModel> _listBoxViewData = new ViewDataDictionary<FooModel> { { "foo", new[] { "Bravo" } } };
private static readonly ViewDataDictionary<FooModel> _dropDownListViewData = new ViewDataDictionary<FooModel> { { "foo", "Bravo" } };
private static readonly ViewDataDictionary<FooContainerModel> _nestedDropDownListViewData = new ViewDataDictionary<FooContainerModel> { { "foo", "Bravo" } };
private static readonly ViewDataDictionary<NonIEnumerableModel> _nonIEnumerableViewData = new ViewDataDictionary<NonIEnumerableModel> { { "foo", 1 } };
private static readonly ViewDataDictionary<EnumModel> _enumDropDownListViewData = new ViewDataDictionary<EnumModel>
{
{ "WithDisplay", EnumWithDisplay.Two },
{ "WithDuplicates", EnumWithDuplicates.Second },
{ "WithFlags", EnumWithFlags.Second },
};
private static readonly SelectList _selectList = new SelectList(
new[]
{
new { Text = "UFO", Value = "ufo", Category = "" }, /* Empty Group */
new { Text = "Volvo", Value = "volvo", Category = "Swedish Cars" },
new { Text = "Mercedes-Benz", Value = "mercedes-benz", Category = "German Cars" },
new { Text = "Saab", Value = "saab", Category = "Swedish Cars" },
new { Text = "Audi", Value = "audi", Category = "German Cars" },
new { Text = "Other", Value = "other", Category = (string) null }, /* Another Empty Group */
new { Text = "Unknown", Value = "unknown", Category = " " } /* Unnamed Group */
}, "Value", "Text", "Category", (object) "audi");
private static readonly MultiSelectList _multiSelectList = new MultiSelectList(
new[]
{
new { Text = "UFO", Value = "ufo", Category = "" }, /* Empty Group */
new { Text = "Volvo", Value = "volvo", Category = "Swedish Cars" },
new { Text = "Mercedes-Benz", Value = "mercedes-benz", Category = "German Cars" },
new { Text = "Saab", Value = "saab", Category = "Swedish Cars" },
new { Text = "Audi", Value = "audi", Category = "German Cars" },
new { Text = "Other", Value = "other", Category = (string) null }, /* Another Empty Group */
new { Text = "Unknown", Value = "unknown", Category = " " } /* Unnamed Group */
}, "Value", "Text", "Category", new[] { "audi", "volvo" });
private static ViewDataDictionary GetViewDataWithSelectList()
{
ViewDataDictionary viewData = new ViewDataDictionary();
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleAnonymousObjects(), "Letter", "FullWord", "C");
viewData["foo"] = selectList;
viewData["foo.bar"] = selectList;
return viewData;
}
private static List<SelectListItem> GroupedItems_WithDisabled
{
get
{
List<SelectListItem> items = new List<SelectListItem>();
SelectListGroup disabledGroup = new SelectListGroup { Disabled = true, Name = "DisabledGroup" };
items.Add(new SelectListItem() { Text = "Alice", Value = "a" });
items.Add(new SelectListItem() { Text = "Bob", Value = "b", Group = disabledGroup });
items.Add(new SelectListItem() { Text = "Charlie", Value = "c", Group = disabledGroup });
items.Add(new SelectListItem() { Text = "David", Value = "d", Disabled = true });
return items;
}
}
// DropDownList
private static List<SelectListItem> GroupedItems
{
get
{
List<SelectListItem> items = new List<SelectListItem>();
SelectListGroup swedish = new SelectListGroup { Name = "Swedish Cars" };
SelectListGroup german = new SelectListGroup { Name = "German Cars" };
SelectListGroup unnamed = new SelectListGroup();
items.Add(new SelectListItem() { Text = "other1", Value = "other1" });
items.Add(new SelectListItem() { Text = "other2", Value = "other2" });
items.Add(new SelectListItem() { Group = swedish, Text = "Volvo", Value = "volvo" });
items.Add(new SelectListItem() { Text = "other3", Value = "other3" });
items.Add(new SelectListItem() { Group = unnamed, Text = "other4", Value = "other4" });
items.Add(new SelectListItem() { Group = unnamed, Text = "other5", Value = "other5" });
items.Add(new SelectListItem() { Group = german, Text = "Mercedes-Benz", Value = "mercedes-benz" });
items.Add(new SelectListItem() { Group = swedish, Text = "Saab", Value = "saab", Selected = true });
items.Add(new SelectListItem() { Group = german, Text = "Audi", Value = "audi", Disabled = true });
items.Add(new SelectListItem() { Text = "other6", Value = "other6" });
return items;
}
}
[Fact]
void DropDownList_WithGroups()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper();
const string expectedDropDownListHtml = @"<select id=""List"" name=""List""><option value=""other1"">other1</option>
<option value=""other2"">other2</option>
<optgroup label=""Swedish Cars"">
<option value=""volvo"">Volvo</option>
<option selected=""selected"" value=""saab"">Saab</option>
</optgroup>
<option value=""other3"">other3</option>
<optgroup>
<option value=""other4"">other4</option>
<option value=""other5"">other5</option>
</optgroup>
<optgroup label=""German Cars"">
<option value=""mercedes-benz"">Mercedes-Benz</option>
<option disabled=""disabled"" value=""audi"">Audi</option>
</optgroup>
<option value=""other6"">other6</option>
</select>";
// Act
MvcHtmlString html = helper.DropDownList("List", GroupedItems);
// Assert
Assert.Equal(expectedDropDownListHtml, html.ToHtmlString());
}
[Fact]
void DropDownList_WithGroups_WithDisabled()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper();
const string expectedDropDownListHtml = @"<select id=""List"" name=""List""><option value=""a"">Alice</option>
<optgroup disabled=""disabled"" label=""DisabledGroup"">
<option value=""b"">Bob</option>
<option value=""c"">Charlie</option>
</optgroup>
<option disabled=""disabled"" value=""d"">David</option>
</select>";
// Act
MvcHtmlString html = helper.DropDownList("List", GroupedItems_WithDisabled);
// Assert
Assert.Equal(expectedDropDownListHtml, html.ToHtmlString());
}
[Fact]
void DropDownList_SelectList_WithGroups()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper();
const string expectedDropDownListHtml = @"<select id=""List"" name=""List""><option value=""ufo"">UFO</option>
<optgroup label=""Swedish Cars"">
<option value=""volvo"">Volvo</option>
<option value=""saab"">Saab</option>
</optgroup>
<optgroup label=""German Cars"">
<option value=""mercedes-benz"">Mercedes-Benz</option>
<option selected=""selected"" value=""audi"">Audi</option>
</optgroup>
<option value=""other"">Other</option>
<optgroup label="" "">
<option value=""unknown"">Unknown</option>
</optgroup>
</select>";
// Act
MvcHtmlString html = helper.DropDownList("List", _selectList);
// Assert
Assert.Equal(expectedDropDownListHtml, html.ToHtmlString());
}
[Fact]
public void DropDownListUsesExplicitValueIfNotProvidedInViewData()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleAnonymousObjects(), "Letter", "FullWord", "C");
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, (string)null /* optionLabel */);
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option value=\"A\">Alpha</option>" + Environment.NewLine
+ "<option value=\"B\">Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"C\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListUsesExplicitValueIfNotProvidedInViewData_Unobtrusive()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
helper.ViewContext.ClientValidationEnabled = true;
helper.ViewContext.UnobtrusiveJavaScriptEnabled = true;
helper.ViewContext.FormContext = new FormContext();
helper.ClientValidationRuleFactory = (name, metadata) => new[] { new ModelClientValidationRule { ValidationType = "type", ErrorMessage = "error" } };
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleAnonymousObjects(), "Letter", "FullWord", "C");
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, (string)null /* optionLabel */);
// Assert
Assert.Equal(
"<select data-val=\"true\" data-val-type=\"error\" id=\"foo\" name=\"foo\"><option value=\"A\">Alpha</option>" + Environment.NewLine
+ "<option value=\"B\">Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"C\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListUsesViewDataDefaultValue()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(_dropDownListViewData);
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings(), "Charlie");
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, (string)null /* optionLabel */);
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option selected=\"selected\">Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListUsesViewDataDefaultValueNoOptionLabel()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(_dropDownListViewData);
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings(), "Charlie");
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList);
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option selected=\"selected\">Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithAttributesDictionary()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, null /* optionLabel */, HtmlHelperTest.AttributesDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazValue\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithEmptyNameThrows()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
// Act & Assert
Assert.ThrowsArgumentNullOrEmpty(
delegate { helper.DropDownList(String.Empty, (SelectList)null /* selectList */, (string)null /* optionLabel */); },
"name");
}
[Fact]
public void DropDownListWithErrors()
{
// Arrange
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings(), new[] { "Charlie" });
ViewDataDictionary viewData = GetViewDataWithErrors();
HtmlHelper helper = MvcHelper.GetHtmlHelper(viewData);
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, null /* optionLabel */, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" class=\"input-validation-error\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option selected=\"selected\">Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithErrorsAndCustomClass()
{
// Arrange
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
ViewDataDictionary viewData = GetViewDataWithErrors();
HtmlHelper helper = MvcHelper.GetHtmlHelper(viewData);
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, null /* optionLabel */, new { @class = "foo-class" });
// Assert
Assert.Equal(
"<select class=\"input-validation-error foo-class\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option selected=\"selected\">Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithNullNameThrows()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
// Act & Assert
Assert.ThrowsArgumentNullOrEmpty(
delegate { helper.DropDownList(null /* name */, (SelectList)null /* selectList */, (string)null /* optionLabel */); },
"name");
}
[Fact]
public void DropDownListWithNullSelectListUsesViewData()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper();
helper.ViewData["foo"] = new MultiSelectList(MultiSelectListTest.GetSampleStrings(), new[] { "Charlie" });
// Act
MvcHtmlString html = helper.DropDownList("foo");
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionary()
{
// Arrange
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
ViewDataDictionary viewData = new ViewDataDictionary();
HtmlHelper helper = MvcHelper.GetHtmlHelper(viewData);
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, null /* optionLabel */, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionaryWithUnderscores()
{
// Arrange
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
ViewDataDictionary viewData = new ViewDataDictionary();
HtmlHelper helper = MvcHelper.GetHtmlHelper(viewData);
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, null /* optionLabel */, HtmlHelperTest.AttributesObjectUnderscoresDictionary);
// Assert
Assert.Equal(
"<select foo-baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionaryAndSelectList()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, null /* optionLabel */, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionaryAndSelectListNoOptionLabel()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionaryWithUnderscoresAndSelectListNoOptionLabel()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, HtmlHelperTest.AttributesObjectUnderscoresDictionary);
// Assert
Assert.Equal(
"<select foo-baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionaryAndEmptyOptionLabel()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, String.Empty /* optionLabel */, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option value=\"\"></option>" + Environment.NewLine
+ "<option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithObjectDictionaryAndTitle()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, "[Select Something]", HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"foo\" name=\"foo\"><option value=\"\">[Select Something]</option>" + Environment.NewLine
+ "<option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListUsesViewDataSelectList()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(GetViewDataWithSelectList());
// Act
MvcHtmlString html = helper.DropDownList("foo", (string)null /* optionLabel */);
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option value=\"A\">Alpha</option>" + Environment.NewLine
+ "<option value=\"B\">Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"C\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListUsesModelState()
{
// Arrange
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
ViewDataDictionary viewData = GetViewDataWithErrors();
viewData["foo"] = selectList;
HtmlHelper helper = MvcHelper.GetHtmlHelper(viewData);
// Act
MvcHtmlString html = helper.DropDownList("foo");
// Assert
Assert.Equal(
"<select class=\"input-validation-error\" id=\"foo\" name=\"foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option selected=\"selected\">Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListUsesViewDataSelectListNoOptionLabel()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(GetViewDataWithSelectList());
// Act
MvcHtmlString html = helper.DropDownList("foo");
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option value=\"A\">Alpha</option>" + Environment.NewLine
+ "<option value=\"B\">Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"C\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithDotReplacementForId()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(GetViewDataWithSelectList());
// Act
MvcHtmlString html = helper.DropDownList("foo.bar");
// Assert
Assert.Equal(
"<select id=\"foo_bar\" name=\"foo.bar\"><option value=\"A\">Alpha</option>" + Environment.NewLine
+ "<option value=\"B\">Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"C\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithIEnumerableSelectListItem()
{
// Arrange
ViewDataDictionary vdd = new ViewDataDictionary { { "foo", MultiSelectListTest.GetSampleIEnumerableObjects() } };
HtmlHelper helper = MvcHelper.GetHtmlHelper(vdd);
// Act
MvcHtmlString html = helper.DropDownList("foo");
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option value=\"123456789\">John</option>" + Environment.NewLine
+ "<option value=\"987654321\">Jane</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"111111111\">Joe</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithIEnumerableSelectListItemSelectsDefaultFromViewData()
{
// Arrange
ViewDataDictionary vdd = new ViewDataDictionary { { "foo", "123456789" } };
HtmlHelper helper = MvcHelper.GetHtmlHelper(vdd);
// Act
MvcHtmlString html = helper.DropDownList("foo", MultiSelectListTest.GetSampleIEnumerableObjects());
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option selected=\"selected\" value=\"123456789\">John</option>" + Environment.NewLine
+ "<option value=\"987654321\">Jane</option>" + Environment.NewLine
+ "<option value=\"111111111\">Joe</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithIEnumerableOfSelectListItemMatchesEnumName()
{
// Arrange
ViewDataDictionary<EnumWithDisplay> vdd = new ViewDataDictionary<EnumWithDisplay>
{
{ "foo", EnumWithDisplay.Three }
};
HtmlHelper<EnumWithDisplay> helper = MvcHelper.GetHtmlHelper(vdd);
// Act
MvcHtmlString html =
helper.DropDownList("foo", GetSelectListWithNamedValuesForEnumWithDisplay(includeEmpty: false));
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\">" +
"<option value=\"Zero\">Zero</option>" + Environment.NewLine +
"<option value=\"One\">One</option>" + Environment.NewLine +
"<option value=\"Two\">Two</option>" + Environment.NewLine +
"<option selected=\"selected\" value=\"Three\">Three</option>" + Environment.NewLine +
"</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithIEnumerableOfSelectListItemMatchesEnumValue()
{
// Arrange
ViewDataDictionary<EnumWithDisplay> vdd = new ViewDataDictionary<EnumWithDisplay>
{
{ "foo", EnumWithDisplay.Three }
};
HtmlHelper<EnumWithDisplay> helper = MvcHelper.GetHtmlHelper(vdd);
// Act
MvcHtmlString html =
helper.DropDownList("foo", GetSelectListWithNumericValuesForEnumWithDisplay(includeEmpty: false));
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\">" +
"<option value=\"0\">Zero</option>" + Environment.NewLine +
"<option value=\"1\">One</option>" + Environment.NewLine +
"<option value=\"2\">Two</option>" + Environment.NewLine +
"<option selected=\"selected\" value=\"3\">Three</option>" + Environment.NewLine +
"</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithListOfSelectListItemSelectsDefaultFromViewData()
{
// Arrange
ViewDataDictionary vdd = new ViewDataDictionary { { "foo", "123456789" } };
HtmlHelper helper = MvcHelper.GetHtmlHelper(vdd);
// Act
MvcHtmlString html = helper.DropDownList("foo", MultiSelectListTest.GetSampleListObjects());
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option selected=\"selected\" value=\"123456789\">John</option>" + Environment.NewLine
+ "<option value=\"987654321\">Jane</option>" + Environment.NewLine
+ "<option value=\"111111111\">Joe</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithListOfSelectListItem()
{
// Arrange
ViewDataDictionary vdd = new ViewDataDictionary { { "foo", MultiSelectListTest.GetSampleListObjects() } };
HtmlHelper helper = MvcHelper.GetHtmlHelper(vdd);
// Act
MvcHtmlString html = helper.DropDownList("foo");
// Assert
Assert.Equal(
"<select id=\"foo\" name=\"foo\"><option value=\"123456789\">John</option>" + Environment.NewLine
+ "<option value=\"987654321\">Jane</option>" + Environment.NewLine
+ "<option selected=\"selected\" value=\"111111111\">Joe</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithNullViewDataValueThrows()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
// Act
Assert.Throws<InvalidOperationException>(
delegate { helper.DropDownList("foo", (string)null /* optionLabel */); },
"There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'foo'.");
}
[Fact]
public void DropDownListWithWrongViewDataTypeValueThrows()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary { { "foo", 123 } });
// Act
Assert.Throws<InvalidOperationException>(
delegate { helper.DropDownList("foo", (string)null /* optionLabel */); },
"The ViewData item that has the key 'foo' is of type 'System.Int32' but must be of type 'IEnumerable<SelectListItem>'.");
}
[Fact]
public void DropDownListWithPrefix()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
helper.ViewContext.ViewData.TemplateInfo.HtmlFieldPrefix = "MyPrefix";
// Act
MvcHtmlString html = helper.DropDownList("foo", selectList, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"MyPrefix_foo\" name=\"MyPrefix.foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithPrefixAndEmptyName()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper(new ViewDataDictionary());
SelectList selectList = new SelectList(MultiSelectListTest.GetSampleStrings());
helper.ViewContext.ViewData.TemplateInfo.HtmlFieldPrefix = "MyPrefix";
// Act
MvcHtmlString html = helper.DropDownList("", selectList, HtmlHelperTest.AttributesObjectDictionary);
// Assert
Assert.Equal(
"<select baz=\"BazObjValue\" id=\"MyPrefix\" name=\"MyPrefix\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option>Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Fact]
public void DropDownListWithPrefixAndNullSelectListUsesViewData()
{
// Arrange
HtmlHelper helper = MvcHelper.GetHtmlHelper();
helper.ViewData["foo"] = new MultiSelectList(MultiSelectListTest.GetSampleStrings(), new[] { "Charlie" });
helper.ViewContext.ViewData.TemplateInfo.HtmlFieldPrefix = "MyPrefix";
// Act
MvcHtmlString html = helper.DropDownList("foo");
// Assert
Assert.Equal(
"<select id=\"MyPrefix_foo\" name=\"MyPrefix.foo\"><option>Alpha</option>" + Environment.NewLine
+ "<option>Bravo</option>" + Environment.NewLine
+ "<option selected=\"selected\">Charlie</option>" + Environment.NewLine
+ "</select>",
html.ToHtmlString());
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_AttributeEncodes_AddedHtmlAttributes(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Text = "text", },
};
var helper = MvcHelper.GetHtmlHelper();
// Act
var result =
helper.DropDownList(name: "name", selectList: selectList, htmlAttributes: new { attribute = text, })
.ToHtmlString();
// Assert
Assert.Equal(
"<select attribute=\"" +
encodedText +
"\" id=\"name\" name=\"name\"><option>text</option>" +
Environment.NewLine +
"</select>",
result);
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_AttributeEncodes_Name(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Text = "text", },
};
var helper = MvcHelper.GetHtmlHelper();
// Act
// htmlAttributes included only to avoid special-cased renaming done for id attribute.
var result =
helper.DropDownList(name: text, selectList: selectList, htmlAttributes: new { id = "id", })
.ToHtmlString();
// Assert
Assert.Equal(
"<select id=\"id\" name=\"" +
encodedText +
"\"><option>text</option>" +
Environment.NewLine +
"</select>",
result);
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_AttributeEncodes_OptGroupLabel(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Group = new SelectListGroup { Name = text, }, Text = "text", },
};
var helper = MvcHelper.GetHtmlHelper();
// Act
var result = helper.DropDownList(name: "name", selectList: selectList).ToHtmlString();
// Assert
Assert.Equal(
"<select id=\"name\" name=\"name\"><optgroup label=\"" +
encodedText +
"\">" +
Environment.NewLine +
"<option>text</option>" +
Environment.NewLine +
"</optgroup>" +
Environment.NewLine +
"</select>",
result);
}
[Theory]
[PropertyData("HtmlEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_HtmlEncodes_OptionLabel(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Text = "text", },
};
var helper = MvcHelper.GetHtmlHelper();
// Act
var result = helper.DropDownList(name: "name", selectList: selectList, optionLabel: text).ToHtmlString();
// Assert
Assert.Equal(
"<select id=\"name\" name=\"name\"><option value=\"\">" +
encodedText +
"</option>" +
Environment.NewLine +
"<option>text</option>" +
Environment.NewLine +
"</select>",
result);
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_AttributeEncodes_Prefix(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Text = "text", },
};
var viewData = new ViewDataDictionary<string>(model: null);
viewData.TemplateInfo.HtmlFieldPrefix = text;
var helper = MvcHelper.GetHtmlHelper(viewData);
// Act
// htmlAttributes included only to avoid special-cased renaming done for id attribute.
var result =
helper.DropDownList(name: String.Empty, selectList: selectList, htmlAttributes: new { id = "id", })
.ToHtmlString();
// Assert
Assert.Equal(
"<select id=\"id\" name=\"" +
encodedText +
"\"><option>text</option>" +
Environment.NewLine +
"</select>",
result);
}
[Theory]
[PropertyData("HtmlEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_HtmlEncodes_Text(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Text = text, },
};
var helper = MvcHelper.GetHtmlHelper();
// Act
var result = helper.DropDownList(name: "name", selectList: selectList).ToHtmlString();
// Assert
Assert.Equal(
"<select id=\"name\" name=\"name\"><option>" +
encodedText +
"</option>" +
Environment.NewLine +
"</select>",
result);
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void DropDownList_AttributeEncodes_Value(string text, string encodedText)
{
// Arrange
var selectList = new List<SelectListItem>
{
new SelectListItem { Text = "text", Value = text },
};
var helper = MvcHelper.GetHtmlHelper();
// Act
var result = helper.DropDownList(name: "name", selectList: selectList).ToHtmlString();
// Assert
Assert.Equal(
"<select id=\"name\" name=\"name\"><option value=\"" +
encodedText +
"\">text</option>" +
Environment.NewLine +
"</select>",
result);
}
// DropDownListFor
[Fact]
void DropDownListFor_WithGroups()
{
// Arrange
ViewDataDictionary<FooModel> dict = new ViewDataDictionary<FooModel>();
dict.Add("foo", "volvo");
HtmlHelper<FooModel> helper = MvcHelper.GetHtmlHelper(dict);
const string expectedListBox = @"<select id=""foo"" name=""foo""><option value="""">Cars</option>
<option value=""other1"">other1</option>
<option value=""other2"">other2</option>
<optgroup label=""Swedish Cars"">
<option selected=""selected"" value=""volvo"">Volvo</option>
<option value=""saab"">Saab</option>
</optgroup>
<option value=""other3"">other3</option>
<optgroup>
<option value=""other4"">other4</option>
<option value=""other5"">other5</option>
</optgroup>
<optgroup label=""German Cars"">
<option value=""mercedes-benz"">Mercedes-Benz</option>
<option disabled=""disabled"" value=""audi"">Audi</option>
</optgroup>
<option value=""other6"">other6</option>
</select>";
// Act
MvcHtmlString html = helper.DropDownListFor(m => m.foo, GroupedItems, optionLabel: "Cars");
// Assert
Assert.Equal(expectedListBox, html.ToHtmlString());