2020-12-23 11:35:49 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
2018-06-29 19:52:40 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Linq;
|
2020-09-16 13:08:27 +02:00
|
|
|
using Microsoft.Extensions.Logging;
|
2020-10-06 21:23:15 +02:00
|
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
2018-06-29 19:52:40 +02:00
|
|
|
using NUnit.Framework;
|
2021-02-09 10:22:42 +01:00
|
|
|
using Umbraco.Cms.Core;
|
|
|
|
|
using Umbraco.Cms.Core.Logging;
|
|
|
|
|
using Umbraco.Cms.Core.Models;
|
2021-02-12 13:36:50 +01:00
|
|
|
using Umbraco.Cms.Core.Persistence.Repositories;
|
2021-02-09 10:22:42 +01:00
|
|
|
using Umbraco.Cms.Core.Services;
|
2021-02-12 13:36:50 +01:00
|
|
|
using Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement;
|
2023-09-12 14:16:27 +02:00
|
|
|
using Umbraco.Cms.Tests.Common.Attributes;
|
2021-02-10 14:45:44 +01:00
|
|
|
using Umbraco.Cms.Tests.Common.Builders;
|
|
|
|
|
using Umbraco.Cms.Tests.Common.TestHelpers.Stubs;
|
|
|
|
|
using Umbraco.Cms.Tests.Common.Testing;
|
2021-02-11 08:30:27 +01:00
|
|
|
using Umbraco.Cms.Tests.Integration.Testing;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services;
|
2022-04-26 10:22:37 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[TestFixture]
|
|
|
|
|
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
2025-03-21 18:02:31 +01:00
|
|
|
internal sealed class ContentServicePerformanceTest : UmbracoIntegrationTest
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
[SetUp]
|
|
|
|
|
public void SetUpData() => CreateTestData();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
protected DocumentRepository DocumentRepository => (DocumentRepository)GetRequiredService<IDocumentRepository>();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
protected IFileService FileService => GetRequiredService<IFileService>();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
protected IContentTypeService ContentTypeService => GetRequiredService<IContentTypeService>();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
protected IContentService ContentService => GetRequiredService<IContentService>();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
protected IContentType ContentType { get; set; }
|
2019-10-23 19:08:03 +11:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
|
|
|
|
public void Profiler() => Assert.IsInstanceOf<TestProfiler>(GetRequiredService<IProfiler>());
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
private static IProfilingLogger GetTestProfilingLogger()
|
|
|
|
|
{
|
|
|
|
|
var profiler = new TestProfiler();
|
|
|
|
|
return new ProfilingLogger(new NullLogger<ProfilingLogger>(), profiler);
|
|
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Retrieving_All_Content_In_Site()
|
|
|
|
|
{
|
|
|
|
|
// NOTE: Doing this the old 1 by 1 way and based on the results of the ContentServicePerformanceTest.Retrieving_All_Content_In_Site
|
|
|
|
|
// the old way takes 143795ms, the new above way takes:
|
|
|
|
|
// 14249ms
|
|
|
|
|
//
|
|
|
|
|
// ... NOPE, made some new changes, it is now....
|
|
|
|
|
// 5290ms !!!!!!
|
|
|
|
|
//
|
|
|
|
|
// that is a 96% savings of processing and sql calls!
|
|
|
|
|
//
|
|
|
|
|
// ... NOPE, made even more nice changes, it is now...
|
|
|
|
|
// 4452ms !!!!!!!
|
|
|
|
|
var template = TemplateBuilder.CreateTextPageTemplate();
|
|
|
|
|
FileService.SaveTemplate(template);
|
|
|
|
|
|
|
|
|
|
var contentType1 = ContentTypeBuilder.CreateTextPageContentType("test1", "test1", template.Id);
|
|
|
|
|
var contentType2 = ContentTypeBuilder.CreateTextPageContentType("test2", "test2", template.Id);
|
|
|
|
|
var contentType3 = ContentTypeBuilder.CreateTextPageContentType("test3", "test3", template.Id);
|
|
|
|
|
ContentTypeService.Save(new[] { contentType1, contentType2, contentType3 });
|
|
|
|
|
contentType1.AllowedContentTypes = new[]
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2023-08-17 12:28:16 +02:00
|
|
|
new ContentTypeSort(contentType2.Key, 0, contentType2.Alias),
|
|
|
|
|
new ContentTypeSort(contentType3.Key, 1, contentType3.Alias)
|
2022-06-21 08:09:38 +02:00
|
|
|
};
|
|
|
|
|
contentType2.AllowedContentTypes = new[]
|
|
|
|
|
{
|
2023-08-17 12:28:16 +02:00
|
|
|
new ContentTypeSort(contentType1.Key, 0, contentType1.Alias),
|
|
|
|
|
new ContentTypeSort(contentType3.Key, 1, contentType3.Alias)
|
2022-06-21 08:09:38 +02:00
|
|
|
};
|
|
|
|
|
contentType3.AllowedContentTypes = new[]
|
|
|
|
|
{
|
2023-08-17 12:28:16 +02:00
|
|
|
new ContentTypeSort(contentType1.Key, 0, contentType1.Alias),
|
|
|
|
|
new ContentTypeSort(contentType2.Key, 1, contentType2.Alias)
|
2022-06-21 08:09:38 +02:00
|
|
|
};
|
|
|
|
|
ContentTypeService.Save(new[] { contentType1, contentType2, contentType3 });
|
|
|
|
|
|
|
|
|
|
var roots = ContentBuilder.CreateTextpageContent(contentType1, -1, 10);
|
|
|
|
|
ContentService.Save(roots);
|
|
|
|
|
foreach (var root in roots)
|
|
|
|
|
{
|
|
|
|
|
var item1 = ContentBuilder.CreateTextpageContent(contentType1, root.Id, 10);
|
|
|
|
|
var item2 = ContentBuilder.CreateTextpageContent(contentType2, root.Id, 10);
|
|
|
|
|
var item3 = ContentBuilder.CreateTextpageContent(contentType3, root.Id, 10);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
ContentService.Save(item1.Concat(item2).Concat(item3));
|
|
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
var total = new List<IContent>();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
using (GetTestProfilingLogger().TraceDuration<ContentServicePerformanceTest>("Getting all content in site"))
|
|
|
|
|
{
|
|
|
|
|
TestProfiler.Enable();
|
|
|
|
|
total.AddRange(ContentService.GetRootContent());
|
|
|
|
|
foreach (var content in total.ToArray())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
total.AddRange(ContentService.GetPagedDescendants(content.Id, 0, int.MaxValue, out var _));
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
|
|
|
|
|
TestProfiler.Disable();
|
|
|
|
|
StaticApplicationLogging.Logger.LogInformation("Returned {Total} items", total.Count);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Creating_100_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
var contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
var pages = ContentBuilder.CreateTextpageContent(contentType, -1, 100);
|
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
var watch = Stopwatch.StartNew();
|
2023-08-16 23:37:10 +02:00
|
|
|
ContentService.Save(pages, -1);
|
2022-06-21 08:09:38 +02:00
|
|
|
watch.Stop();
|
|
|
|
|
var elapsed = watch.ElapsedMilliseconds;
|
|
|
|
|
|
|
|
|
|
Debug.Print("100 content items saved in {0} ms", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.That(pages.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Creating_1000_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
var contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
var pages = ContentBuilder.CreateTextpageContent(contentType, -1, 1000);
|
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
var watch = Stopwatch.StartNew();
|
2023-08-16 23:37:10 +02:00
|
|
|
ContentService.Save(pages, -1);
|
2022-06-21 08:09:38 +02:00
|
|
|
watch.Stop();
|
|
|
|
|
var elapsed = watch.ElapsedMilliseconds;
|
|
|
|
|
|
|
|
|
|
Debug.Print("100 content items saved in {0} ms", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.That(pages.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Getting_100_Uncached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
var contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
var pages = ContentBuilder.CreateTextpageContent(contentType, -1, 100);
|
2023-08-16 23:37:10 +02:00
|
|
|
ContentService.Save(pages, -1);
|
2022-06-21 08:09:38 +02:00
|
|
|
|
|
|
|
|
var provider = ScopeProvider;
|
|
|
|
|
using (var scope = provider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
var repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
2022-06-21 08:09:38 +02:00
|
|
|
var contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2022-06-21 08:09:38 +02:00
|
|
|
var elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
Debug.Print("100 content items retrieved in {0} ms without caching", elapsed);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Assert
|
2022-06-21 08:09:38 +02:00
|
|
|
Assert.That(contents.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
Assert.That(contents.Any(x => x == null), Is.False);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Getting_1000_Uncached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
var contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
var pages = ContentBuilder.CreateTextpageContent(contentType, -1, 1000);
|
2023-08-16 23:37:10 +02:00
|
|
|
ContentService.Save(pages, -1);
|
2022-06-21 08:09:38 +02:00
|
|
|
|
|
|
|
|
using (var scope = ScopeProvider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
var repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
2022-06-21 08:09:38 +02:00
|
|
|
var contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2022-06-21 08:09:38 +02:00
|
|
|
var elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
Debug.Print("1000 content items retrieved in {0} ms without caching", elapsed);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Assert
|
2022-06-21 08:09:38 +02:00
|
|
|
// Assert.That(contents.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
// Assert.That(contents.Any(x => x == null), Is.False);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Getting_100_Cached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
var contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
var pages = ContentBuilder.CreateTextpageContent(contentType, -1, 100);
|
2023-08-16 23:37:10 +02:00
|
|
|
ContentService.Save(pages, -1);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
using (var scope = ScopeProvider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
var repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
// Act
|
|
|
|
|
var contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
|
var contentsCached = repository.GetMany();
|
|
|
|
|
watch.Stop();
|
|
|
|
|
var elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
Debug.Print("100 content items retrieved in {0} ms with caching", elapsed);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
// Assert
|
|
|
|
|
Assert.That(contentsCached.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
Assert.That(contentsCached.Any(x => x == null), Is.False);
|
|
|
|
|
Assert.That(contentsCached.Count(), Is.EqualTo(contents.Count()));
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
2023-09-12 14:16:27 +02:00
|
|
|
[LongRunning]
|
2022-06-21 08:09:38 +02:00
|
|
|
public void Getting_1000_Cached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
var contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
var pages = ContentBuilder.CreateTextpageContent(contentType, -1, 1000);
|
2023-08-16 23:37:10 +02:00
|
|
|
ContentService.Save(pages, -1);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
using (var scope = ScopeProvider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
var repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
// Act
|
|
|
|
|
var contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
|
var contentsCached = repository.GetMany();
|
|
|
|
|
watch.Stop();
|
|
|
|
|
var elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
Debug.Print("1000 content items retrieved in {0} ms with caching", elapsed);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
// Assert
|
|
|
|
|
// Assert.That(contentsCached.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
// Assert.That(contentsCached.Any(x => x == null), Is.False);
|
|
|
|
|
// Assert.That(contentsCached.Count(), Is.EqualTo(contents.Count()));
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
}
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
public void CreateTestData()
|
|
|
|
|
{
|
2023-06-06 13:45:39 +02:00
|
|
|
var template = TemplateBuilder.CreateTextPageTemplate("defaultTemplate");
|
2022-06-21 08:09:38 +02:00
|
|
|
FileService.SaveTemplate(template);
|
2020-10-14 08:02:43 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
// Create and Save ContentType "textpage" -> ContentType.Id
|
|
|
|
|
ContentType = ContentTypeBuilder.CreateTextPageContentType(defaultTemplateId: template.Id);
|
|
|
|
|
ContentTypeService.Save(ContentType);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
|
|
|
|
}
|