forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebPageExecutingBaseTest.cs
More file actions
212 lines (185 loc) · 8.25 KB
/
Copy pathWebPageExecutingBaseTest.cs
File metadata and controls
212 lines (185 loc) · 8.25 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
// 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.IO;
using System.Text;
using System.Web.WebPages.Instrumentation;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.WebPages.Test
{
public class WebPageExecutingBaseTest
{
[Fact]
public void NormalizeLayoutPageUsesVirtualPathFactoryManagerToDetermineIfLayoutFileExists()
{
// Arrange
var layoutPagePath = "~/sitelayout.cshtml";
var layoutPage = Utils.CreatePage(null, layoutPagePath);
var page = Utils.CreatePage(null);
var objectFactory = new Mock<IVirtualPathFactory>();
objectFactory.Setup(c => c.Exists(It.Is<string>(p => p.Equals(layoutPagePath)))).Returns(true).Verifiable();
page.VirtualPathFactory = objectFactory.Object;
// Act
var path = page.NormalizeLayoutPagePath(layoutPage.VirtualPath);
// Assert
objectFactory.Verify();
Assert.Equal(path, layoutPage.VirtualPath);
}
[Fact]
public void NormalizeLayoutPageAcceptsRelativePathsToLayoutPage()
{
// Arrange
var page = Utils.CreatePage(null, "~/dir/default.cshtml");
var layoutPage = Utils.CreatePage(null, "~/layouts/sitelayout.cshtml");
var objectFactory = new HashVirtualPathFactory(page, layoutPage);
page.VirtualPathFactory = objectFactory;
// Act
var path = page.NormalizeLayoutPagePath(@"../layouts/sitelayout.cshtml");
// Assert
Assert.Equal(path, layoutPage.VirtualPath);
}
[Fact]
public void BeginContextSilentlyFailsIfInstrumentationIsNotAvailable()
{
// Arrange
bool called = false;
var pageMock = new Mock<WebPageExecutingBase>() { CallBase = true };
pageMock.Setup(p => p.Context).Returns(new Mock<HttpContextBase>().Object);
pageMock.Object.InstrumentationService.IsAvailable = false;
pageMock.Object.InstrumentationService.ExtractInstrumentationService = c =>
{
called = true;
return null;
};
// Act
pageMock.Object.BeginContext("~/dir/default.cshtml", 0, 1, true);
// Assert
Assert.False(called);
}
[Fact]
public void EndContextSilentlyFailsIfInstrumentationIsNotAvailable()
{
// Arrange
bool called = false;
var pageMock = new Mock<WebPageExecutingBase>() { CallBase = true };
pageMock.Setup(p => p.Context).Returns(new Mock<HttpContextBase>().Object);
pageMock.Object.InstrumentationService.IsAvailable = false;
pageMock.Object.InstrumentationService.ExtractInstrumentationService = c =>
{
called = true;
return null;
};
// Act
pageMock.Object.EndContext("~/dir/default.cshtml", 0, 1, true);
// Assert
Assert.False(called);
}
[Fact]
public void WriteAttributeToWritesAttributeNormallyIfNoValuesSpecified()
{
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" alt=\"", 42),
suffix: new PositionTagged<string>("\"", 24),
expected: " alt=\"\"");
}
[Fact]
public void WriteAttributeToWritesNothingIfSingleNullValueProvided()
{
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" alt=\"", 42),
suffix: new PositionTagged<string>("\"", 24),
values: new[] {
new AttributeValue(new PositionTagged<string>(String.Empty, 142), new PositionTagged<object>(null, 124), literal: true)
},
expected: "");
}
[Fact]
public void WriteAttributeToWritesNothingIfSingleFalseValueProvided()
{
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" alt=\"", 42),
suffix: new PositionTagged<string>("\"", 24),
values: new[] {
new AttributeValue(new PositionTagged<string>(String.Empty, 142), new PositionTagged<object>(false, 124), literal: true)
},
expected: "");
}
[Fact]
public void WriteAttributeToWritesGlobalPrefixIfSingleValueProvided()
{
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" alt=\"", 42),
suffix: new PositionTagged<string>("\"", 24),
values: new[] {
new AttributeValue(new PositionTagged<string>(" ", 142), new PositionTagged<object>("foo", 124), literal: true)
},
expected: " alt=\"foo\"");
}
[Fact]
public void WriteAttributeToWritesLocalPrefixForSecondValueProvided()
{
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" alt=\"", 42),
suffix: new PositionTagged<string>("\"", 24),
values: new[] {
new AttributeValue(new PositionTagged<string>(" ", 142), new PositionTagged<object>("foo", 124), literal: true),
new AttributeValue(new PositionTagged<string>("glorb", 142), new PositionTagged<object>("bar", 124), literal: true)
},
expected: " alt=\"fooglorbbar\"");
}
[Fact]
public void WriteAttributeToWritesGlobalPrefixOnlyIfSecondValueIsFirstNonNullOrFalse()
{
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" alt=\"", 42),
suffix: new PositionTagged<string>("\"", 24),
values: new[] {
new AttributeValue(new PositionTagged<string>(" ", 142), new PositionTagged<object>(null, 124), literal: true),
new AttributeValue(new PositionTagged<string>("glorb", 142), new PositionTagged<object>("bar", 124), literal: true)
},
expected: " alt=\"bar\"");
}
/// <remarks>
/// This is a regression test for Html.Raw behaving incorrectly in attributes - the code here is derived from that generated
/// by the Razor engine on input like the following:
///
/// cool="@Html.Raw("this is cool text")"
/// </remarks>
[Fact]
public void WriteAttributeWithRawHtmlString()
{
string alreadyEncoded = "Show Size 6½-8";
WriteAttributeTest(
name: "alt",
prefix: new PositionTagged<string>(" cool=\"", 33),
suffix: new PositionTagged<string>("\"", 70),
values: new[] {
AttributeValue.FromTuple(Tuple.Create(Tuple.Create("", 40), Tuple.Create<Object, Int32>(new HtmlString(alreadyEncoded), 40), false)),
},
expected: " cool=\"" + alreadyEncoded + "\"");
}
private void WriteAttributeTest(string name, PositionTagged<string> prefix, PositionTagged<string> suffix, string expected)
{
WriteAttributeTest(name, prefix, suffix, new AttributeValue[0], expected);
}
private void WriteAttributeTest(string name, PositionTagged<string> prefix, PositionTagged<string> suffix, AttributeValue[] values, string expected)
{
// Arrange
var pageMock = new Mock<WebPageExecutingBase>() { CallBase = true };
pageMock.Setup(p => p.Context).Returns(new Mock<HttpContextBase>().Object);
pageMock.Object.InstrumentationService.IsAvailable = false;
StringBuilder written = new StringBuilder();
StringWriter writer = new StringWriter(written);
// Act
pageMock.Object.WriteAttributeTo(writer, name, prefix, suffix, values);
// Assert
Assert.Equal(expected, written.ToString());
}
}
}