forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValueExtensionsTest.cs
More file actions
182 lines (148 loc) · 7.12 KB
/
Copy pathValueExtensionsTest.cs
File metadata and controls
182 lines (148 loc) · 7.12 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
// 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.Web.Mvc.Test;
using Microsoft.TestCommon;
using Microsoft.Web.UnitTestUtil;
namespace System.Web.Mvc.Html.Test
{
public class ValueExtensionsTest
{
// Value
[Fact]
public void ValueWithNullNameThrows()
{
// Arrange
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(GetValueViewData());
// Act & Assert
Assert.ThrowsArgumentNull(
() => helper.Value(name: null),
"name"
);
}
[Fact]
public void ValueGetsValueFromViewData()
{
// Arrange
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(GetValueViewData());
// Act
MvcHtmlString html = helper.Value("foo");
// Assert
Assert.Equal("ViewDataFoo", html.ToHtmlString());
}
// ValueFor
[Fact]
public void ValueForWithNullExpressionThrows()
{
// Arrange
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(GetValueViewData());
// Act & Assert
Assert.ThrowsArgumentNull(
() => helper.ValueFor<FooBarModel, object>(expression: null),
"expression"
);
}
[Fact]
public void ValueForGetsExpressionValueFromViewDataModel()
{
// Arrange
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(GetValueViewData());
// Act
MvcHtmlString html = helper.ValueFor(m => m.foo);
// Assert
Assert.Equal("ViewItemFoo", html.ToHtmlString());
}
// All Value Helpers including ValueForModel
[Fact]
public void ValueHelpersWithErrorsGetValueFromModelState()
{
// Arrange
ViewDataDictionary<FooBarModel> viewDataWithErrors = new ViewDataDictionary<FooBarModel> { { "foo", "ViewDataFoo" } };
viewDataWithErrors.Model = new FooBarModel() { foo = "ViewItemFoo", bar = "ViewItemBar" };
viewDataWithErrors.TemplateInfo.HtmlFieldPrefix = "FieldPrefix";
ModelState modelStateFoo = new ModelState();
modelStateFoo.Value = HtmlHelperTest.GetValueProviderResult(new string[] { "AttemptedValueFoo" }, "AttemptedValueFoo");
viewDataWithErrors.ModelState["FieldPrefix.foo"] = modelStateFoo;
ModelState modelStateFooBar = new ModelState();
modelStateFooBar.Value = HtmlHelperTest.GetValueProviderResult(new string[] { "AttemptedValueFooBar" }, "AttemptedValueFooBar");
viewDataWithErrors.ModelState["FieldPrefix"] = modelStateFooBar;
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(viewDataWithErrors);
// Act & Assert
Assert.Equal("AttemptedValueFoo", helper.Value("foo").ToHtmlString());
Assert.Equal("AttemptedValueFoo", helper.ValueFor(m => m.foo).ToHtmlString());
Assert.Equal("AttemptedValueFooBar", helper.ValueForModel().ToHtmlString());
}
[Fact]
[ReplaceCulture]
public void ValueHelpersWithEmptyNameConvertModelValueUsingCurrentCulture()
{
// Arrange
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(GetValueViewData());
string expectedModelValue = "{ foo = ViewItemFoo, bar = 01/01/1900 00:00:00 }";
// Act & Assert
Assert.Equal(expectedModelValue, helper.Value(name: String.Empty).ToHtmlString());
Assert.Equal(expectedModelValue, helper.ValueFor(m => m).ToHtmlString());
Assert.Equal(expectedModelValue, helper.ValueForModel().ToHtmlString());
}
[Fact]
[ReplaceCulture]
public void ValueHelpersFormatValue()
{
// Arrange
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(GetValueViewData());
string expectedModelValue = "-{ foo = ViewItemFoo, bar = 01/01/1900 00:00:00 }-";
string expectedBarValue = "-01/01/1900 00:00:00-";
// Act & Assert
Assert.Equal(expectedModelValue, helper.ValueForModel("-{0}-").ToHtmlString());
Assert.Equal(expectedBarValue, helper.Value("bar", "-{0}-").ToHtmlString());
Assert.Equal(expectedBarValue, helper.ValueFor(m => m.bar, "-{0}-").ToHtmlString());
}
[Fact]
public void ValueHelpersEncodeValue()
{
// Arrange
ViewDataDictionary<FooBarModel> viewData = new ViewDataDictionary<FooBarModel> { { "foo", @"ViewDataFoo <"">" } };
viewData.Model = new FooBarModel { foo = @"ViewItemFoo <"">" };
ModelState modelStateFoo = new ModelState();
modelStateFoo.Value = HtmlHelperTest.GetValueProviderResult(new string[] { @"AttemptedValueBar <"">" }, @"AttemptedValueBar <"">");
viewData.ModelState["bar"] = modelStateFoo;
HtmlHelper<FooBarModel> helper = MvcHelper.GetHtmlHelper(viewData);
// Act & Assert
Assert.Equal("<{ foo = ViewItemFoo <">, bar = (null) }", helper.ValueForModel("<{0}").ToHtmlString());
Assert.Equal("<ViewDataFoo <">", helper.Value("foo", "<{0}").ToHtmlString());
Assert.Equal("<ViewItemFoo <">", helper.ValueFor(m => m.foo, "<{0}").ToHtmlString());
Assert.Equal("AttemptedValueBar <">", helper.ValueFor(m => m.bar).ToHtmlString());
}
[Theory]
[PropertyData("AttributeEncodedData", PropertyType = typeof(EncodedDataSets))]
public void ValueHelpers_AttributeEncode_Value(string text, bool htmlEncode, string encodedText)
{
// Arrange
var viewData = new ViewDataDictionary<string>(text);
viewData.ModelMetadata.HtmlEncode = htmlEncode;
var helper = MvcHelper.GetHtmlHelper(viewData);
// Act
var valueResult = helper.Value("").ToHtmlString();
var valueForResult = helper.ValueFor(m => m).ToHtmlString();
var valueForModelResult = helper.ValueForModel().ToHtmlString();
// Assert
Assert.Equal(encodedText, valueResult);
Assert.Equal(encodedText, valueForResult);
Assert.Equal(encodedText, valueForModelResult);
}
private sealed class FooBarModel
{
public string foo { get; set; }
public object bar { get; set; }
public override string ToString()
{
return String.Format("{{ foo = {0}, bar = {1} }}", foo ?? "(null)", bar ?? "(null)");
}
}
private static ViewDataDictionary<FooBarModel> GetValueViewData()
{
ViewDataDictionary<FooBarModel> viewData = new ViewDataDictionary<FooBarModel> { { "foo", "ViewDataFoo" } };
viewData.Model = new FooBarModel { foo = "ViewItemFoo", bar = new DateTime(1900, 1, 1, 0, 0, 0) };
return viewData;
}
}
}