* 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>
183 lines
8.2 KiB
C#
183 lines
8.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using Umbraco.Cms.Core.Configuration.Models;
|
|
using Umbraco.Cms.Core.Models;
|
|
using Umbraco.Cms.Core.Models.PublishedContent;
|
|
using Umbraco.Cms.Core.Routing;
|
|
using Umbraco.Cms.Core.Services;
|
|
using Umbraco.Extensions;
|
|
using Umbraco.Tests.TestHelpers.Entities;
|
|
|
|
namespace Umbraco.Tests.Routing
|
|
{
|
|
[TestFixture]
|
|
public class GetContentUrlsTests : UrlRoutingTestBase
|
|
{
|
|
private GlobalSettings _globalSettings;
|
|
private WebRoutingSettings _webRoutingSettings;
|
|
private RequestHandlerSettings _requestHandlerSettings;
|
|
|
|
public override void SetUp()
|
|
{
|
|
base.SetUp();
|
|
|
|
_globalSettings = new GlobalSettings();
|
|
_webRoutingSettings = new WebRoutingSettings();
|
|
_requestHandlerSettings = new RequestHandlerSettings { AddTrailingSlash = true };
|
|
}
|
|
|
|
private ILocalizedTextService GetTextService()
|
|
{
|
|
var textService = Mock.Of<ILocalizedTextService>(
|
|
x => x.Localize("content/itemNotPublished",
|
|
It.IsAny<CultureInfo>(),
|
|
It.IsAny<IDictionary<string, string>>()) == "content/itemNotPublished");
|
|
return textService;
|
|
}
|
|
|
|
private ILocalizationService GetLangService(params string[] isoCodes)
|
|
{
|
|
var allLangs = isoCodes
|
|
.Select(CultureInfo.GetCultureInfo)
|
|
.Select(culture => new Language(_globalSettings, culture.Name)
|
|
{
|
|
CultureName = culture.DisplayName,
|
|
IsDefault = true,
|
|
IsMandatory = true
|
|
}).ToArray();
|
|
|
|
var langService = Mock.Of<ILocalizationService>(x => x.GetAllLanguages() == allLangs);
|
|
return langService;
|
|
}
|
|
|
|
[Test]
|
|
public async Task Content_Not_Published()
|
|
{
|
|
var contentType = MockedContentTypes.CreateBasicContentType();
|
|
var content = MockedContent.CreateBasicContent(contentType);
|
|
content.Id = 1046; // FIXME: we are using this ID only because it's built into the test XML published cache
|
|
content.Path = "-1,1046";
|
|
|
|
var umbContext = GetUmbracoContext("http://localhost:8000");
|
|
var publishedRouter = CreatePublishedRouter(
|
|
GetUmbracoContextAccessor(umbContext),
|
|
Factory,
|
|
contentFinders: new ContentFinderCollection(new[] { new ContentFinderByUrl(LoggerFactory.CreateLogger<ContentFinderByUrl>(), GetUmbracoContextAccessor(umbContext)) }));
|
|
var urls = (await content.GetContentUrlsAsync(publishedRouter,
|
|
umbContext,
|
|
GetLangService("en-US", "fr-FR"), GetTextService(), ServiceContext.ContentService,
|
|
VariationContextAccessor,
|
|
LoggerFactory.CreateLogger<IContent>(),
|
|
UriUtility,
|
|
PublishedUrlProvider)).ToList();
|
|
|
|
Assert.AreEqual(1, urls.Count);
|
|
Assert.AreEqual("content/itemNotPublished", urls[0].Text);
|
|
Assert.IsFalse(urls[0].IsUrl);
|
|
}
|
|
|
|
[Test]
|
|
public async Task Invariant_Root_Content_Published_No_Domains()
|
|
{
|
|
var contentType = MockedContentTypes.CreateBasicContentType();
|
|
var content = MockedContent.CreateBasicContent(contentType);
|
|
content.Id = 1046; // FIXME: we are using this ID only because it's built into the test XML published cache
|
|
content.Path = "-1,1046";
|
|
content.Published = true;
|
|
|
|
var umbContext = GetUmbracoContext("http://localhost:8000");
|
|
var umbracoContextAccessor = GetUmbracoContextAccessor(umbContext);
|
|
var urlProvider = new DefaultUrlProvider(
|
|
Microsoft.Extensions.Options.Options.Create(_requestHandlerSettings),
|
|
LoggerFactory.CreateLogger<DefaultUrlProvider>(),
|
|
new SiteDomainMapper(),
|
|
umbracoContextAccessor, UriUtility);
|
|
var publishedUrlProvider = new UrlProvider(
|
|
umbracoContextAccessor,
|
|
Microsoft.Extensions.Options.Options.Create(_webRoutingSettings),
|
|
new UrlProviderCollection(new []{urlProvider}),
|
|
new MediaUrlProviderCollection(Enumerable.Empty<IMediaUrlProvider>()),
|
|
Mock.Of<IVariationContextAccessor>()
|
|
);
|
|
|
|
var publishedRouter = CreatePublishedRouter(
|
|
umbracoContextAccessor,
|
|
Factory,
|
|
contentFinders:new ContentFinderCollection(new[]{new ContentFinderByUrl(LoggerFactory.CreateLogger<ContentFinderByUrl>(), umbracoContextAccessor) }));
|
|
var urls = (await content.GetContentUrlsAsync(publishedRouter,
|
|
umbContext,
|
|
GetLangService("en-US", "fr-FR"), GetTextService(), ServiceContext.ContentService,
|
|
VariationContextAccessor,
|
|
LoggerFactory.CreateLogger<IContent>(),
|
|
UriUtility,
|
|
publishedUrlProvider)).ToList();
|
|
|
|
Assert.AreEqual(1, urls.Count);
|
|
Assert.AreEqual("/home/", urls[0].Text);
|
|
Assert.AreEqual("en-US", urls[0].Culture);
|
|
Assert.IsTrue(urls[0].IsUrl);
|
|
}
|
|
|
|
[Test]
|
|
public async Task Invariant_Child_Content_Published_No_Domains()
|
|
{
|
|
var contentType = MockedContentTypes.CreateBasicContentType();
|
|
var parent = MockedContent.CreateBasicContent(contentType);
|
|
parent.Id = 1046; // FIXME: we are using this ID only because it's built into the test XML published cache
|
|
parent.Name = "home";
|
|
parent.Path = "-1,1046";
|
|
parent.Published = true;
|
|
var child = MockedContent.CreateBasicContent(contentType);
|
|
child.Name = "sub1";
|
|
child.Id = 1173; // FIXME: we are using this ID only because it's built into the test XML published cache
|
|
child.Path = "-1,1046,1173";
|
|
child.Published = true;
|
|
|
|
var umbContext = GetUmbracoContext("http://localhost:8000");
|
|
var umbracoContextAccessor = GetUmbracoContextAccessor(umbContext);
|
|
var urlProvider = new DefaultUrlProvider(
|
|
Microsoft.Extensions.Options.Options.Create(_requestHandlerSettings),
|
|
LoggerFactory.CreateLogger<DefaultUrlProvider>(),
|
|
new SiteDomainMapper(), umbracoContextAccessor, UriUtility);
|
|
var publishedUrlProvider = new UrlProvider(
|
|
umbracoContextAccessor,
|
|
Microsoft.Extensions.Options.Options.Create(_webRoutingSettings),
|
|
new UrlProviderCollection(new []{urlProvider}),
|
|
new MediaUrlProviderCollection(Enumerable.Empty<IMediaUrlProvider>()),
|
|
Mock.Of<IVariationContextAccessor>()
|
|
);
|
|
|
|
var publishedRouter = CreatePublishedRouter(
|
|
umbracoContextAccessor,
|
|
Factory,
|
|
contentFinders: new ContentFinderCollection(new[] { new ContentFinderByUrl(LoggerFactory.CreateLogger<ContentFinderByUrl>(), umbracoContextAccessor) }));
|
|
var urls = (await child.GetContentUrlsAsync(publishedRouter,
|
|
umbContext,
|
|
GetLangService("en-US", "fr-FR"), GetTextService(), ServiceContext.ContentService,
|
|
VariationContextAccessor,
|
|
LoggerFactory.CreateLogger<IContent>(),
|
|
UriUtility,
|
|
publishedUrlProvider
|
|
)).ToList();
|
|
|
|
Assert.AreEqual(1, urls.Count);
|
|
Assert.AreEqual("/home/sub1/", urls[0].Text);
|
|
Assert.AreEqual("en-US", urls[0].Culture);
|
|
Assert.IsTrue(urls[0].IsUrl);
|
|
}
|
|
|
|
// TODO: We need a lot of tests here, the above was just to get started with being able to unit test this method
|
|
// * variant URLs without domains assigned, what happens?
|
|
// * variant URLs with domains assigned, but also having more languages installed than there are domains/cultures assigned
|
|
// * variant URLs with an ancestor culture unpublished
|
|
// * invariant URLs with ancestors as variants
|
|
// * ... probably a lot more
|
|
|
|
}
|
|
}
|