* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
141 lines
6.1 KiB
C#
141 lines
6.1 KiB
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using System.Linq;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using NUnit.Framework;
|
|
using Umbraco.Extensions;
|
|
using static Umbraco.Cms.Core.Constants.Web.Routing;
|
|
using Constants = Umbraco.Cms.Core.Constants;
|
|
|
|
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Web.Common.Routing
|
|
{
|
|
[TestFixture]
|
|
public class EndpointRouteBuilderExtensionsTests
|
|
{
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, "test", null, true)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, "test", "GetStuff", true)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, null, null, true)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, null, "GetStuff", true)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, "test", null, false)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, "test", "GetStuff", false)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, null, null, false)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, null, "GetStuff", false)]
|
|
[TestCase("umbraco", null, "test", null, true)]
|
|
[TestCase("umbraco", null, "test", "GetStuff", true)]
|
|
[TestCase("umbraco", null, null, null, true)]
|
|
[TestCase("umbraco", null, null, "GetStuff", true)]
|
|
[TestCase("umbraco", null, "test", null, false)]
|
|
[TestCase("umbraco", null, "test", "GetStuff", false)]
|
|
[TestCase("umbraco", null, null, null, false)]
|
|
[TestCase("umbraco", null, null, "GetStuff", false)]
|
|
public void MapUmbracoRoute(string umbracoPath, string area, string prefix, string defaultAction, bool includeControllerName)
|
|
{
|
|
var endpoints = new TestRouteBuilder();
|
|
endpoints.MapUmbracoRoute<Testing1Controller>(umbracoPath, area, prefix, defaultAction, includeControllerName);
|
|
|
|
EndpointDataSource route = endpoints.DataSources.First();
|
|
var endpoint = (RouteEndpoint)route.Endpoints[0];
|
|
|
|
string controllerName = ControllerExtensions.GetControllerName<Testing1Controller>();
|
|
string controllerNamePattern = controllerName.ToLowerInvariant();
|
|
|
|
if (includeControllerName)
|
|
{
|
|
if (prefix.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/{controllerNamePattern}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
else
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/{prefix}/{controllerNamePattern}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (prefix.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
else
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/{prefix}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
}
|
|
|
|
if (!area.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual(area, endpoint.RoutePattern.Defaults[AreaToken]);
|
|
}
|
|
|
|
if (!defaultAction.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual(defaultAction, endpoint.RoutePattern.Defaults["action"]);
|
|
}
|
|
|
|
Assert.AreEqual(controllerName, endpoint.RoutePattern.Defaults[ControllerToken]);
|
|
}
|
|
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, true, null)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, true, "GetStuff")]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, false, null)]
|
|
[TestCase("umbraco", Constants.Web.Mvc.BackOfficeApiArea, false, "GetStuff")]
|
|
[TestCase("umbraco", null, true, null)]
|
|
[TestCase("umbraco", null, true, "GetStuff")]
|
|
[TestCase("umbraco", null, false, null)]
|
|
[TestCase("umbraco", null, false, "GetStuff")]
|
|
public void MapUmbracoApiRoute(string umbracoPath, string area, bool isBackOffice, string defaultAction)
|
|
{
|
|
var endpoints = new TestRouteBuilder();
|
|
endpoints.MapUmbracoApiRoute<Testing1Controller>(umbracoPath, area, isBackOffice, defaultAction);
|
|
|
|
EndpointDataSource route = endpoints.DataSources.First();
|
|
var endpoint = (RouteEndpoint)route.Endpoints[0];
|
|
|
|
string controllerName = ControllerExtensions.GetControllerName<Testing1Controller>();
|
|
string controllerNamePattern = controllerName.ToLowerInvariant();
|
|
string areaPattern = area?.ToLowerInvariant();
|
|
|
|
if (isBackOffice)
|
|
{
|
|
if (area.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/backoffice/api/{controllerNamePattern}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
else
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/backoffice/{areaPattern}/{controllerNamePattern}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (area.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/api/{controllerNamePattern}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
else
|
|
{
|
|
Assert.AreEqual($"{umbracoPath}/{areaPattern}/{controllerNamePattern}/{{action}}/{{id?}}", endpoint.RoutePattern.RawText);
|
|
}
|
|
}
|
|
|
|
if (!area.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual(area, endpoint.RoutePattern.Defaults[AreaToken]);
|
|
}
|
|
|
|
if (!defaultAction.IsNullOrWhiteSpace())
|
|
{
|
|
Assert.AreEqual(defaultAction, endpoint.RoutePattern.Defaults["action"]);
|
|
}
|
|
|
|
Assert.AreEqual(controllerName, endpoint.RoutePattern.Defaults[ControllerToken]);
|
|
}
|
|
|
|
private class Testing1Controller : ControllerBase
|
|
{
|
|
}
|
|
}
|
|
}
|