Files
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
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
Properties
Routing
HostedUrlHelperTest.cs
HttpControllerHandlerTest.cs
RouteCollectionExtensionsTest.cs
SuppressFormsAuthRedirectModuleTest.cs
System.Web.Http.WebHost.Test.csproj
packages.config
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
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
cecil
cecil-legacy
corefx
corert
ikdasm
ikvm
linker
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
ikvm-native
libgc
llvm
m4
man
mcs
mk
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
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

140 lines
6.2 KiB
C#

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Net.Http;
using System.Web.Http.Controllers;
using System.Web.Mvc;
using System.Web.Routing;
using Moq;
using Xunit;
using Xunit.Extensions;
using UrlHelper = System.Web.Http.Routing.UrlHelper;
namespace System.Web.Http.WebHost.Routing
{
public class HostedUrlHelperTest
{
[Theory]
[InlineData(WhichRoute.ApiRoute1)]
[InlineData(WhichRoute.ApiRoute2)]
[InlineData(WhichRoute.WebRoute1)]
public void UrlHelper_GeneratesApiUrl_ForMatchingData(WhichRoute whichRoute)
{
// Mixed mode app with Web API generating URLs to other APIs
var url = GetUrlHelperForMixedApp(whichRoute);
string generatedUrl = url.Route("apiroute2", new { controller = "something", action = "someaction", id = 789 });
Assert.Equal("$APP$/SOMEAPP/api/something/someaction", generatedUrl);
}
[Theory]
[InlineData(WhichRoute.ApiRoute1)]
[InlineData(WhichRoute.ApiRoute2)]
[InlineData(WhichRoute.WebRoute1)]
public void UrlHelper_SkipsApiRoutesAndMatchesMvcUrl_ForMatchingData(WhichRoute whichRoute)
{
// Mixed mode app with MVC generating URLs to other MVC URLs
RouteCollection routes;
RequestContext requestContext;
var url = GetUrlHelperForMixedApp(whichRoute, out routes, out requestContext);
// Note: This is generating a URL the "hard" way because it's simulating what a regular MVC
// app would do when generating a URL. If we went through the Web API functionality it wouldn't
// be testing what would really happen in a mixed app.
VirtualPathData virtualPathData = routes.GetVirtualPath(requestContext, new RouteValueDictionary(new { controller = "something", action = "someaction", id = 789 }));
Assert.NotNull(virtualPathData);
string generatedUrl = virtualPathData.VirtualPath;
Assert.Equal("$APP$/SOMEAPP/something/someaction/789", generatedUrl);
}
[Theory]
[InlineData(WhichRoute.ApiRoute1)]
[InlineData(WhichRoute.ApiRoute2)]
[InlineData(WhichRoute.WebRoute1)]
public void UrlHelper_MvcAppGeneratesApiRoute_WithSpecialHttpRouteKey(WhichRoute whichRoute)
{
// Mixed mode app with MVC generating URLs to Web APIs
RouteCollection routes;
RequestContext requestContext;
var url = GetUrlHelperForMixedApp(whichRoute, out routes, out requestContext);
// Note: This is generating a URL the "hard" way because it's simulating what a regular MVC
// app would do when generating a URL. If we went through the Web API functionality it wouldn't
// be testing what would really happen in a mixed app.
VirtualPathData virtualPathData = routes.GetVirtualPath(requestContext, new RouteValueDictionary(new { controller = "something", action = "someotheraction", id = 789, httproute = true }));
Assert.NotNull(virtualPathData);
string generatedUrl = virtualPathData.VirtualPath;
Assert.Equal("$APP$/SOMEAPP/api/something/someotheraction", generatedUrl);
}
private static UrlHelper GetUrlHelperForMixedApp(WhichRoute whichRoute)
{
RouteCollection routes;
RequestContext requestContext;
return GetUrlHelperForMixedApp(whichRoute, out routes, out requestContext);
}
private static UrlHelper GetUrlHelperForMixedApp(WhichRoute whichRoute, out RouteCollection routes, out RequestContext requestContext)
{
routes = new RouteCollection();
HttpControllerContext cc = new HttpControllerContext();
cc.Request = new HttpRequestMessage();
var mockHttpContext = new Mock<HttpContextBase>();
var mockHttpRequest = new Mock<HttpRequestBase>();
mockHttpRequest.SetupGet<string>(x => x.ApplicationPath).Returns("/SOMEAPP/");
var mockHttpResponse = new Mock<HttpResponseBase>();
mockHttpResponse.Setup<string>(x => x.ApplyAppPathModifier(It.IsAny<string>())).Returns<string>(x => "$APP$" + x);
mockHttpContext.SetupGet<HttpRequestBase>(x => x.Request).Returns(mockHttpRequest.Object);
mockHttpContext.SetupGet<HttpResponseBase>(x => x.Response).Returns(mockHttpResponse.Object);
cc.Request.Properties["MS_HttpContext"] = mockHttpContext.Object;
// Set up routes
var hostedRoutes = new HostedHttpRouteCollection(routes);
Route apiRoute1 = routes.MapHttpRoute("apiroute1", "api/{controller}/{id}", new { action = "someaction" });
Route apiRoute2 = routes.MapHttpRoute("apiroute2", "api/{controller}/{action}", new { id = 789 });
Route webRoute1 = routes.MapRoute("webroute1", "{controller}/{action}/{id}");
cc.Configuration = new HttpConfiguration(hostedRoutes);
RouteData routeData = new RouteData();
routeData.Values.Add("controller", "people");
routeData.Values.Add("id", "123");
// Specify which route we came in on (e.g. what request matching the incoming URL) because
// it can affect the generated URL due to the ambient route data.
switch (whichRoute)
{
case WhichRoute.ApiRoute1:
routeData.Route = apiRoute1;
break;
case WhichRoute.ApiRoute2:
routeData.Route = apiRoute2;
break;
case WhichRoute.WebRoute1:
routeData.Route = webRoute1;
break;
default:
throw new ArgumentException("Invalid route specified.", "whichRoute");
}
cc.RouteData = new HostedHttpRouteData(routeData);
requestContext = new RequestContext(mockHttpContext.Object, routeData);
return cc.Url;
}
public enum WhichRoute
{
ApiRoute1,
ApiRoute2,
WebRoute1,
}
}
}