You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
eglib
external
Lucene.Net.Light
Newtonsoft.Json
aspnetwebstack
packages
src
test
Microsoft.TestCommon
Microsoft.Web.Helpers.Test
Microsoft.Web.Http.Data.Test
Microsoft.Web.Mvc.Test
Microsoft.Web.WebPages.OAuth.Test
SPA.Test
System.Json.Test.Integration
System.Json.Test.Unit
System.Net.Http.Formatting.Test.Integration
System.Net.Http.Formatting.Test.Unit
System.Web.Helpers.Test
System.Web.Http.Integration.Test
System.Web.Http.SelfHost.Test
System.Web.Http.Test
System.Web.Http.WebHost.Test
System.Web.Mvc.Test
System.Web.Razor.Test
System.Web.WebPages.Administration.Test
System.Web.WebPages.Deployment.Test
System.Web.WebPages.Razor.Test
System.Web.WebPages.Test
ApplicationParts
ApplicationPartRegistryTest.cs
ApplicationPartTest.cs
MimeMappingTest.cs
ResourceHandlerTest.cs
TestResourceAssembly.cs
Extensions
Helpers
Html
Instrumentation
Mvc
Properties
ScopeStorage
TestFiles
Utils
Validation
WebPage
App.config
PreApplicationStartCodeTest.cs
System.Web.WebPages.Test.csproj
packages.config
WebMatrix.Data.Test
WebMatrix.WebData.Test
Settings.StyleCop
tools
.gitattributes
.gitignore
License.txt
README.md
Runtime.msbuild
Runtime.sln
Runtime.xunit
Settings.StyleCop
build.cmd
binary-reference-assemblies
bockbuild
boringssl
buildtools
cecil
cecil-legacy
corefx
corert
ikdasm
ikvm
linker
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
ikvm-native
libgc
llvm
m4
man
mcs
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
153 lines
5.9 KiB
C#
153 lines
5.9 KiB
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|||
|
using System.Web.WebPages.ApplicationParts;
|
|||
|
using Moq;
|
|||
|
using Xunit;
|
|||
|
using Assert = Microsoft.TestCommon.AssertEx;
|
|||
|
|
|||
|
namespace System.Web.WebPages.Test.ApplicationModule
|
|||
|
{
|
|||
|
public class ApplicationPartRegistryTest
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void ApplicationModuleGeneratesRootRelativePaths()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
var path1 = "foo/bar";
|
|||
|
var path2 = "~/xyz/pqr";
|
|||
|
var root1 = "~/myappmodule";
|
|||
|
var root2 = "~/myappmodule2/";
|
|||
|
|
|||
|
// Act
|
|||
|
var actualPath11 = ApplicationPartRegistry.GetRootRelativeVirtualPath(root1, path1);
|
|||
|
var actualPath12 = ApplicationPartRegistry.GetRootRelativeVirtualPath(root1, path2);
|
|||
|
var actualPath21 = ApplicationPartRegistry.GetRootRelativeVirtualPath(root2, path1);
|
|||
|
var actualPath22 = ApplicationPartRegistry.GetRootRelativeVirtualPath(root2, path2);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Equal(actualPath11, root1 + "/" + path1);
|
|||
|
Assert.Equal(actualPath12, root1 + path2.TrimStart('~'));
|
|||
|
Assert.Equal(actualPath21, root2 + path1);
|
|||
|
Assert.Equal(actualPath22, root2 + path2.TrimStart('~', '/'));
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void ApplicationPartRegistryLooksUpPartsByName()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
var part = new ApplicationPart(BuildAssembly(), "~/mymodule");
|
|||
|
var dictionary = new DictionaryBasedVirtualPathFactory();
|
|||
|
var registry = new ApplicationPartRegistry(dictionary);
|
|||
|
Func<object> myFunc = () => "foo";
|
|||
|
|
|||
|
// Act
|
|||
|
registry.Register(part, myFunc);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Equal(registry["my-assembly"], part);
|
|||
|
Assert.Equal(registry["MY-aSSembly"], part);
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void ApplicationPartRegistryLooksUpPartsByAssembly()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
var assembly = BuildAssembly();
|
|||
|
var part = new ApplicationPart(assembly, "~/mymodule");
|
|||
|
var dictionary = new DictionaryBasedVirtualPathFactory();
|
|||
|
var registry = new ApplicationPartRegistry(dictionary);
|
|||
|
Func<object> myFunc = () => "foo";
|
|||
|
|
|||
|
// Act
|
|||
|
registry.Register(part, myFunc);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Equal(registry[assembly], part);
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void RegisterThrowsIfAssemblyAlreadyRegistered()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
var part = new ApplicationPart(BuildAssembly(), "~/mymodule");
|
|||
|
var dictionary = new DictionaryBasedVirtualPathFactory();
|
|||
|
var registry = new ApplicationPartRegistry(dictionary);
|
|||
|
Func<object> myFunc = () => "foo";
|
|||
|
|
|||
|
// Act
|
|||
|
registry.Register(part, myFunc);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Throws<InvalidOperationException>(() => registry.Register(part, myFunc),
|
|||
|
String.Format("The assembly \"{0}\" is already registered.", part.Assembly.ToString()));
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void RegisterThrowsIfPathAlreadyRegistered()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
var part = new ApplicationPart(BuildAssembly(), "~/mymodule");
|
|||
|
var dictionary = new DictionaryBasedVirtualPathFactory();
|
|||
|
var registry = new ApplicationPartRegistry(dictionary);
|
|||
|
Func<object> myFunc = () => "foo";
|
|||
|
|
|||
|
// Act
|
|||
|
registry.Register(part, myFunc);
|
|||
|
|
|||
|
// Assert
|
|||
|
var newPart = new ApplicationPart(BuildAssembly("different-assembly"), "~/mymodule");
|
|||
|
Assert.Throws<InvalidOperationException>(() => registry.Register(newPart, myFunc),
|
|||
|
"An application module is already registered for virtual path \"~/mymodule/\".");
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void RegisterCreatesRoutesForValidPages()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
var part = new ApplicationPart(BuildAssembly(), "~/mymodule");
|
|||
|
var dictionary = new DictionaryBasedVirtualPathFactory();
|
|||
|
var registry = new ApplicationPartRegistry(dictionary);
|
|||
|
Func<object> myFunc = () => "foo";
|
|||
|
|
|||
|
// Act
|
|||
|
registry.Register(part, myFunc);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.True(dictionary.Exists("~/mymodule/Page1"));
|
|||
|
Assert.Equal(dictionary.CreateInstance("~/mymodule/Page1"), "foo");
|
|||
|
Assert.False(dictionary.Exists("~/mymodule/Page2"));
|
|||
|
Assert.False(dictionary.Exists("~/mymodule/Page3"));
|
|||
|
}
|
|||
|
|
|||
|
private static IResourceAssembly BuildAssembly(string name = "my-assembly")
|
|||
|
{
|
|||
|
Mock<TestResourceAssembly> assembly = new Mock<TestResourceAssembly>();
|
|||
|
assembly.SetupGet(c => c.Name).Returns(name);
|
|||
|
assembly.Setup(c => c.GetHashCode()).Returns(name.GetHashCode());
|
|||
|
assembly.Setup(c => c.Equals(It.IsAny<TestResourceAssembly>())).Returns((TestResourceAssembly c) => c.Name == name);
|
|||
|
|
|||
|
assembly.Setup(c => c.GetTypes()).Returns(new[]
|
|||
|
{
|
|||
|
BuildPageType(inherits: true, virtualPath: "~/Page1"),
|
|||
|
BuildPageType(inherits: true, virtualPath: null),
|
|||
|
BuildPageType(inherits: false, virtualPath: "~/Page3"),
|
|||
|
});
|
|||
|
|
|||
|
return assembly.Object;
|
|||
|
}
|
|||
|
|
|||
|
private static Type BuildPageType(bool inherits, string virtualPath)
|
|||
|
{
|
|||
|
Mock<Type> type = new Mock<Type>();
|
|||
|
type.Setup(c => c.IsSubclassOf(typeof(WebPageRenderingBase))).Returns(inherits);
|
|||
|
|
|||
|
if (virtualPath != null)
|
|||
|
{
|
|||
|
type.Setup(c => c.GetCustomAttributes(typeof(PageVirtualPathAttribute), false))
|
|||
|
.Returns(new[] { new PageVirtualPathAttribute(virtualPath) });
|
|||
|
}
|
|||
|
return type.Object;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|