* Run code cleanup * Dotnet format benchmarks project * Fix up Test.Common * Run dotnet format + manual cleanup * Run code cleanup for unit tests * Run dotnet format * Fix up errors * Manual cleanup of Unit test project * Update tests/Umbraco.Tests.Benchmarks/HexStringBenchmarks.cs Co-authored-by: Mole <nikolajlauridsen@protonmail.ch> * Update tests/Umbraco.Tests.Integration/Testing/TestDbMeta.cs Co-authored-by: Mole <nikolajlauridsen@protonmail.ch> * Update tests/Umbraco.Tests.Benchmarks/TypeFinderBenchmarks.cs Co-authored-by: Mole <nikolajlauridsen@protonmail.ch> * Update tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTest.cs Co-authored-by: Mole <nikolajlauridsen@protonmail.ch> * Update tests/Umbraco.Tests.Integration/Umbraco.Core/Events/EventAggregatorTests.cs Co-authored-by: Mole <nikolajlauridsen@protonmail.ch> * Fix according to review * Fix after merge * Fix errors Co-authored-by: Nikolaj Geisle <niko737@edu.ucl.dk> Co-authored-by: Mole <nikolajlauridsen@protonmail.ch> Co-authored-by: Zeegaan <nge@umbraco.dk>
152 lines
5.8 KiB
C#
152 lines
5.8 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.Cms.Core;
|
|
using Umbraco.Extensions;
|
|
using static Umbraco.Cms.Core.Constants.Web.Routing;
|
|
|
|
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);
|
|
|
|
var route = endpoints.DataSources.First();
|
|
var endpoint = (RouteEndpoint)route.Endpoints[0];
|
|
|
|
var controllerName = ControllerExtensions.GetControllerName<Testing1Controller>();
|
|
var 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);
|
|
|
|
var route = endpoints.DataSources.First();
|
|
var endpoint = (RouteEndpoint)route.Endpoints[0];
|
|
|
|
var controllerName = ControllerExtensions.GetControllerName<Testing1Controller>();
|
|
var controllerNamePattern = controllerName.ToLowerInvariant();
|
|
var 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
|
|
{
|
|
}
|
|
}
|