forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLabelExtensionsTest.cs
More file actions
575 lines (461 loc) · 20.3 KB
/
Copy pathLabelExtensionsTest.cs
File metadata and controls
575 lines (461 loc) · 20.3 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
// 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.Generic;
using System.Linq.Expressions;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Mvc.Html.Test
{
public class LabelExtensionsTest
{
Mock<ModelMetadataProvider> metadataProvider;
Mock<ModelMetadata> metadata;
ViewDataDictionary viewData;
Mock<ViewContext> viewContext;
Mock<IViewDataContainer> viewDataContainer;
HtmlHelper<object> html;
public LabelExtensionsTest()
{
metadataProvider = new Mock<ModelMetadataProvider>();
metadata = new Mock<ModelMetadata>(metadataProvider.Object, null, null, typeof(object), null);
viewData = new ViewDataDictionary();
viewContext = new Mock<ViewContext>();
viewContext.Setup(c => c.ViewData).Returns(viewData);
viewDataContainer = new Mock<IViewDataContainer>();
viewDataContainer.Setup(c => c.ViewData).Returns(viewData);
html = new HtmlHelper<object>(viewContext.Object, viewDataContainer.Object);
metadataProvider.Setup(p => p.GetMetadataForProperties(It.IsAny<object>(), It.IsAny<Type>()))
.Returns(new ModelMetadata[0]);
metadataProvider.Setup(p => p.GetMetadataForProperty(It.IsAny<Func<object>>(), It.IsAny<Type>(), It.IsAny<string>()))
.Returns(metadata.Object);
metadataProvider.Setup(p => p.GetMetadataForType(It.IsAny<Func<object>>(), It.IsAny<Type>()))
.Returns(metadata.Object);
}
// Label tests
[Fact]
public void LabelNullExpressionThrows()
{
// Act & Assert
Assert.ThrowsArgumentNull(
() => html.Label(null),
"expression");
}
[Fact]
public void LabelViewDataNotFound()
{
// Act
MvcHtmlString result = html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""PropertyName"">PropertyName</label>", result.ToHtmlString());
}
[Fact]
public void LabelViewDataNull()
{
// Act
viewData["PropertyName"] = null;
MvcHtmlString result = html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""PropertyName"">PropertyName</label>", result.ToHtmlString());
}
class Model
{
public string PropertyName { get; set; }
}
[Fact]
public void LabelViewDataFromPropertyGetsActualPropertyType()
{
// Arrange
Model model = new Model { PropertyName = "propertyValue" };
HtmlHelper<Model> html = new HtmlHelper<Model>(viewContext.Object, viewDataContainer.Object);
viewData.Model = model;
metadataProvider.Setup(p => p.GetMetadataForProperty(It.IsAny<Func<object>>(), typeof(Model), "PropertyName"))
.Returns(metadata.Object)
.Verifiable();
// Act
html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
metadataProvider.Verify();
}
[Fact]
public void LabelUsesTemplateInfoPrefix()
{
// Arrange
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
// Act
MvcHtmlString result = html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""Prefix_PropertyName"">PropertyName</label>", result.ToHtmlString());
}
[Fact]
public void LabelUsesLabelTextBeforeMetadata()
{
// Arrange
metadata = new Mock<ModelMetadata>(metadataProvider.Object, null, null, typeof(object), "Custom property name from metadata");
metadataProvider.Setup(p => p.GetMetadataForType(It.IsAny<Func<object>>(), It.IsAny<Type>()))
.Returns(metadata.Object);
//Act
MvcHtmlString result = html.Label("PropertyName", "Label Text", null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""PropertyName"">Label Text</label>", result.ToHtmlString());
}
[Theory]
[PropertyData("HtmlEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void Label_HtmlEncodes_LabelText(string text, string expectedText)
{
// Arrange & Act
var result =
html.Label("PropertyName", text, htmlAttributes: null, metadataProvider: metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""PropertyName"">" + expectedText + "</label>", result.ToHtmlString());
}
[Fact]
public void LabelUsesMetadataForDisplayTextWhenLabelTextIsNull()
{
// Arrange
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
// Act
MvcHtmlString result = html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""PropertyName"">Custom display name from metadata</label>", result.ToHtmlString());
}
[Fact]
public void LabelUsesMetadataForPropertyNameWhenDisplayNameIsNull()
{
// Arrange
metadata = new Mock<ModelMetadata>(metadataProvider.Object, null, null, typeof(object), "Custom property name from metadata");
metadataProvider.Setup(p => p.GetMetadataForType(It.IsAny<Func<object>>(), It.IsAny<Type>()))
.Returns(metadata.Object);
// Act
MvcHtmlString result = html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""PropertyName"">Custom property name from metadata</label>", result.ToHtmlString());
}
[Fact]
public void LabelEmptyDisplayNameReturnsEmptyLabelText()
{
// Arrange
metadata.Setup(m => m.DisplayName).Returns(String.Empty);
// Act
MvcHtmlString result = html.Label("PropertyName", null, null, metadataProvider.Object);
// Assert
Assert.Equal(String.Empty, result.ToHtmlString());
}
[Fact]
public void LabelWithAnonymousValues()
{
// Act
MvcHtmlString result = html.Label("PropertyName", null, new { @for = "attrFor" }, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""attrFor"">PropertyName</label>", result.ToHtmlString());
}
[Fact]
public void LabelWithAnonymousValuesAndLabelText()
{
// Act
MvcHtmlString result = html.Label("PropertyName", "Label Text", new { @for = "attrFor" }, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""attrFor"">Label Text</label>", result.ToHtmlString());
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void LabelWithAnonymousValues_AttributeEncodes_AddedHtmlAttributes(string text, string expectedText)
{
// Arrange & Act
var result = html.Label("PropertyName", "text", new { attribute = text }, metadataProvider.Object);
// Assert
Assert.Equal(
@"<label attribute=""" + expectedText + @""" for=""PropertyName"">text</label>",
result.ToHtmlString());
}
[Fact]
public void LabelWithTypedAttributes()
{
// Arrange
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>
{
{ "foo", "bar" },
{ "quux", "baz" }
};
// Act
MvcHtmlString result = html.Label("PropertyName", null, htmlAttributes, metadataProvider.Object);
// Assert
Assert.Equal(@"<label foo=""bar"" for=""PropertyName"" quux=""baz"">PropertyName</label>", result.ToHtmlString());
}
[Fact]
public void LabelWithTypedAttributesAndLabelText()
{
// Arrange
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>
{
{ "foo", "bar" },
{ "quux", "baz" }
};
// Act
MvcHtmlString result = html.Label("PropertyName", "Label Text", htmlAttributes, metadataProvider.Object);
// Assert
Assert.Equal(@"<label foo=""bar"" for=""PropertyName"" quux=""baz"">Label Text</label>", result.ToHtmlString());
}
// LabelFor tests
[Fact]
public void LabelForNullExpressionThrows()
{
// Act & Assert
Assert.ThrowsArgumentNull(
() => html.LabelFor((Expression<Func<Object, Object>>)null),
"expression");
}
[Fact]
public void LabelForNonMemberExpressionThrows()
{
// Act & Assert
Assert.Throws<InvalidOperationException>(
() => html.LabelFor(model => new { foo = "Bar" }, null, null, metadataProvider.Object),
"Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.");
}
[Fact]
public void LabelForViewDataNotFound()
{
// Arrange
string unknownKey = "this is a dummy parameter value";
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""unknownKey"">unknownKey</label>", result.ToHtmlString());
}
[Fact]
public void LabelForUsesTemplateInfoPrefix()
{
// Arrange
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
string unknownKey = "this is a dummy parameter value";
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""Prefix_unknownKey"">unknownKey</label>", result.ToHtmlString());
}
[Fact]
public void LabelForUsesLabelTextBeforeModelMetadata()
{
// Arrange
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
string unknownKey = "this is a dummy parameter value";
//Act
MvcHtmlString result = html.LabelFor(model => unknownKey, "Label Text", null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""unknownKey"">Label Text</label>", result.ToHtmlString());
}
[Theory]
[PropertyData("HtmlEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void LabelFor_HtmlEncodes_LabelText(string text, string expectedText)
{
// Arrange
var dummy = "this is a dummy parameter value";
// Arrange & Act
var result =
html.LabelFor(m => dummy, text, htmlAttributes: null, metadataProvider: metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""dummy"">" + expectedText + "</label>", result.ToHtmlString());
}
[Fact]
public void LabelForUsesModelMetadata()
{
// Arrange
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
string unknownKey = "this is a dummy parameter value";
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""unknownKey"">Custom display name from metadata</label>", result.ToHtmlString());
}
[Fact]
public void LabelForEmptyDisplayNameReturnsEmptyLabelText()
{
// Arrange
metadata.Setup(m => m.DisplayName).Returns(String.Empty);
string unknownKey = "this is a dummy parameter value";
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, null, null, metadataProvider.Object);
// Assert
Assert.Equal(String.Empty, result.ToHtmlString());
}
[Fact]
public void LabelForWithAnonymousValues()
{
//Arrange
string unknownKey = "this is a dummy parameter value";
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, null, new { @for = "attrFor" }, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""attrFor"">unknownKey</label>", result.ToHtmlString());
}
[Theory]
[PropertyData("AttributeEncodedData_NoHtmlEncode", PropertyType = typeof(EncodedDataSets))]
public void LabeForlWithAnonymousValues_AttributeEncodes_AddedHtmlAttributes(string text, string expectedText)
{
// Arrange
var dummy = "this is a dummy parameter value";
// Act
var result =
html.LabelFor(m => dummy, "text", new { attribute = text }, metadataProvider.Object);
// Assert
Assert.Equal(
@"<label attribute=""" + expectedText + @""" for=""dummy"">text</label>",
result.ToHtmlString());
}
[Fact]
public void LabelForWithAnonymousValuesAndLabelText()
{
//Arrange
string unknownKey = "this is a dummy parameter value";
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, "Label Text", new { @for = "attrFor" }, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""attrFor"">Label Text</label>", result.ToHtmlString());
}
[Fact]
public void LabelForWithTypedAttributes()
{
//Arrange
string unknownKey = "this is a dummy parameter value";
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>
{
{ "foo", "bar" },
{ "quux", "baz" }
};
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, null, htmlAttributes, metadataProvider.Object);
// Assert
Assert.Equal(@"<label foo=""bar"" for=""unknownKey"" quux=""baz"">unknownKey</label>", result.ToHtmlString());
}
[Fact]
public void LabelForWithTypedAttributesAndLabelText()
{
//Arrange
string unknownKey = "this is a dummy parameter value";
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>
{
{ "foo", "bar" },
{ "quux", "baz" }
};
// Act
MvcHtmlString result = html.LabelFor(model => unknownKey, "Label Text", htmlAttributes, metadataProvider.Object);
// Assert
Assert.Equal(@"<label foo=""bar"" for=""unknownKey"" quux=""baz"">Label Text</label>", result.ToHtmlString());
}
[Fact]
public void LabelForWithNestedClass()
{ // Dev10 Bug #936323
// Arrange
HtmlHelper<NestedProduct> html = new HtmlHelper<NestedProduct>(viewContext.Object, viewDataContainer.Object);
// Act
MvcHtmlString result = html.LabelFor(nested => nested.product.Id, null, null, metadataProvider.Object);
//Assert
Assert.Equal(@"<label for=""product_Id"">Id</label>", result.ToHtmlString());
}
[Fact]
public void LabelForWithArrayExpression()
{ // Dev10 Bug #905780
// Arrange
HtmlHelper<Cart> html = new HtmlHelper<Cart>(viewContext.Object, viewDataContainer.Object);
// Act
MvcHtmlString result = html.LabelFor(cart => cart.Products[0].Id, null, null, metadataProvider.Object);
// Assert
Assert.Equal(@"<label for=""Products_0__Id"">Id</label>", result.ToHtmlString());
}
private class Product
{
public int Id { get; set; }
}
private class Cart
{
public Product[] Products { get; set; }
}
private class NestedProduct
{
public Product product = new Product();
}
// LabelForModel tests
[Fact]
public void LabelForModelUsesLabelTextBeforeModelMetadata()
{
// Arrange
viewData.ModelMetadata = metadata.Object;
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
// Act
MvcHtmlString result = html.LabelForModel("Label Text");
// Assert
Assert.Equal(@"<label for=""Prefix"">Label Text</label>", result.ToHtmlString());
}
[Fact]
public void LabelForModelUsesModelMetadata()
{
// Arrange
viewData.ModelMetadata = metadata.Object;
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
// Act
MvcHtmlString result = html.LabelForModel();
// Assert
Assert.Equal(@"<label for=""Prefix"">Custom display name from metadata</label>", result.ToHtmlString());
}
[Fact]
public void LabelForModelWithAnonymousValues()
{
//Arrange
viewData.ModelMetadata = metadata.Object;
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
// Act
MvcHtmlString result = html.LabelForModel(new { @for = "attrFor" });
// Assert
Assert.Equal(@"<label for=""attrFor"">Custom display name from metadata</label>", result.ToHtmlString());
}
[Fact]
public void LabelForModelWithAnonymousValuesAndLabelText()
{
//Arrange
viewData.ModelMetadata = metadata.Object;
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
// Act
MvcHtmlString result = html.LabelForModel("Label Text", new { @for = "attrFor" });
// Assert
Assert.Equal(@"<label for=""attrFor"">Label Text</label>", result.ToHtmlString());
}
[Fact]
public void LabelForModelWithTypedAttributes()
{
//Arrange
viewData.ModelMetadata = metadata.Object;
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>
{
{ "foo", "bar" },
{ "quux", "baz" }
};
// Act
MvcHtmlString result = html.LabelForModel(htmlAttributes);
// Assert
Assert.Equal(@"<label foo=""bar"" for=""Prefix"" quux=""baz"">Custom display name from metadata</label>", result.ToHtmlString());
}
[Fact]
public void LabelForModelWithTypedAttributesAndLabelText()
{
//Arrange
viewData.ModelMetadata = metadata.Object;
viewData.TemplateInfo.HtmlFieldPrefix = "Prefix";
metadata.Setup(m => m.DisplayName).Returns("Custom display name from metadata");
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>
{
{ "foo", "bar" },
{ "quux", "baz" }
};
// Act
MvcHtmlString result = html.LabelForModel("Label Text", htmlAttributes);
// Assert
Assert.Equal(@"<label foo=""bar"" for=""Prefix"" quux=""baz"">Label Text</label>", result.ToHtmlString());
}
}
}