forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPathUtilTest.cs
More file actions
180 lines (151 loc) · 6.41 KB
/
Copy pathPathUtilTest.cs
File metadata and controls
180 lines (151 loc) · 6.41 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
// 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.Linq;
using System.Web.WebPages.TestUtils;
using Microsoft.Internal.Web.Utils;
using Microsoft.TestCommon;
namespace System.Web.WebPages.Test
{
public class PathUtilTest
{
[Fact]
public void IsSimpleNameTest()
{
Assert.True(PathUtil.IsSimpleName("Test.cshtml"));
Assert.True(PathUtil.IsSimpleName("Test.Hello.cshtml"));
Assert.False(PathUtil.IsSimpleName("~/myapp/Test/Hello.cshtml"));
Assert.False(PathUtil.IsSimpleName("../Test/Hello.cshtml"));
Assert.False(PathUtil.IsSimpleName("../../Test/Hello.cshtml"));
Assert.False(PathUtil.IsSimpleName("/Test/Hello.cshtml"));
}
[Fact]
public void GetExtensionForNullPathsReturnsNull()
{
// Arrange
string path = null;
// Act
string extension = PathUtil.GetExtension(path);
// Assert
Assert.Null(extension);
}
[Fact]
public void GetExtensionForEmptyPathsReturnsEmptyString()
{
// Arrange
string path = String.Empty;
// Act
string extension = PathUtil.GetExtension(path);
// Assert
Assert.Equal(0, extension.Length);
}
[Fact]
public void GetExtensionReturnsEmptyStringForPathsThatDoNotContainExtension()
{
// Arrange
string[] paths = new[] { "SomePath", "SomePath/", "SomePath/MorePath", "SomePath/MorePath/" };
// Act
var extensions = paths.Select(PathUtil.GetExtension);
// Assert
Assert.All(extensions, ext => Assert.Empty(ext));
}
[Fact]
public void GetExtensionReturnsEmptyStringForPathsContainingPathInfo()
{
// Arrange
string[] paths = new[] { "SomePath.cshtml/", "SomePath.html/path/info" };
// Act
var extensions = paths.Select(PathUtil.GetExtension);
// Assert
Assert.All(extensions, ext => Assert.Empty(ext));
}
[Fact]
public void GetExtensionReturnsEmptyStringForPathsTerminatingWithADot()
{
// Arrange
string[] paths = new[] { "SomePath.", "SomeDirectory/SomePath/SomePath.", "SomeDirectory/SomePath.foo." };
// Act
var extensions = paths.Select(PathUtil.GetExtension);
// Assert
Assert.All(extensions, ext => Assert.Empty(ext));
}
[Fact]
public void GetExtensionReturnsExtensionsForPathsTerminatingInExtension()
{
// Arrange
string path1 = "SomePath.cshtml";
string path2 = "SomeDir/SomePath.txt";
// Act
string ext1 = PathUtil.GetExtension(path1);
string ext2 = PathUtil.GetExtension(path2);
// Assert
Assert.Equal(".cshtml", ext1);
Assert.Equal(".txt", ext2);
}
[Fact]
public void GetExtensionDoesNotThrowForPathsWithInvalidCharacters()
{
// Arrange
// Repro from test case in Bug 93828
string path = "Insights/110786998958803%7C2.d24wA6Y3MiT2w8p3OT4yTw__.3600.1289415600-708897727%7CRLN-t1w9bXtKWZ_11osz15Rk_jY";
// Act
string extension = PathUtil.GetExtension(path);
// Assert
Assert.Equal(".1289415600-708897727%7CRLN-t1w9bXtKWZ_11osz15Rk_jY", extension);
}
[Fact]
public void IsWithinAppRootNestedTest()
{
AppDomainUtils.RunInSeparateAppDomain(() =>
{
var root = "/subfolder1/website1";
using (Utils.CreateHttpRuntime(root))
{
Assert.True(PathUtil.IsWithinAppRoot(root, "~/"));
Assert.True(PathUtil.IsWithinAppRoot(root, "~/default.cshtml"));
Assert.True(PathUtil.IsWithinAppRoot(root, "~/test/default.cshtml"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/subfolder1/website1"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/subfolder1/website1/"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/subfolder1/website1/default.cshtml"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/subfolder1/website1/test/default.cshtml"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/subfolder1"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/subfolder1/"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/subfolder1/website2"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/subfolder2"));
}
});
}
[Fact]
public void IsWithinAppRootTest()
{
AppDomainUtils.RunInSeparateAppDomain(() =>
{
var root = "/website1";
using (Utils.CreateHttpRuntime(root))
{
Assert.True(PathUtil.IsWithinAppRoot(root, "~/"));
Assert.True(PathUtil.IsWithinAppRoot(root, "~/default.cshtml"));
Assert.True(PathUtil.IsWithinAppRoot(root, "~/test/default.cshtml"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/website1"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/website1/"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/website1/default.cshtml"));
Assert.True(PathUtil.IsWithinAppRoot(root, "/website1/test/default.cshtml"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/website2"));
Assert.False(PathUtil.IsWithinAppRoot(root, "/subfolder1/"));
}
});
}
private class TestVirtualPathUtility : IVirtualPathUtility
{
public string Combine(string basePath, string relativePath)
{
return basePath + "/" + relativePath;
}
public string ToAbsolute(string virtualPath)
{
return virtualPath;
}
}
}
}