2020-12-23 11:35:49 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
using System;
|
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;
|
|
|
|
|
using Umbraco.Cms.Core.Services;
|
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;
|
2020-10-14 08:02:43 +02:00
|
|
|
using Umbraco.Core.Persistence.Repositories;
|
2018-06-29 19:52:40 +02:00
|
|
|
using Umbraco.Core.Persistence.Repositories.Implement;
|
2020-12-23 11:35:49 +01:00
|
|
|
using Umbraco.Core.Scoping;
|
2020-10-14 08:02:43 +02:00
|
|
|
using Umbraco.Tests.Integration.Testing;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-10-20 18:43:03 +02:00
|
|
|
namespace Umbraco.Tests.Integration.Umbraco.Infrastructure.Services
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-10-14 08:02:43 +02:00
|
|
|
[TestFixture]
|
2018-06-29 19:52:40 +02:00
|
|
|
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
2020-10-14 08:02:43 +02:00
|
|
|
public class ContentServicePerformanceTest : UmbracoIntegrationTest
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-10-14 08:02:43 +02:00
|
|
|
protected DocumentRepository DocumentRepository => (DocumentRepository)GetRequiredService<IDocumentRepository>();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
protected IFileService FileService => GetRequiredService<IFileService>();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
protected IContentTypeService ContentTypeService => GetRequiredService<IContentTypeService>();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
protected IContentService ContentService => GetRequiredService<IContentService>();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
protected IContentType ContentType { get; set; }
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
[SetUp]
|
2020-12-23 11:35:49 +01:00
|
|
|
public void SetUpData() => CreateTestData();
|
2019-10-23 19:08:03 +11:00
|
|
|
|
2018-06-29 19:52:40 +02:00
|
|
|
[Test]
|
2020-12-23 11:35:49 +01:00
|
|
|
public void Profiler() => Assert.IsInstanceOf<TestProfiler>(GetRequiredService<IProfiler>());
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2018-11-27 13:46:43 +01:00
|
|
|
private static IProfilingLogger GetTestProfilingLogger()
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
|
|
|
|
var profiler = new TestProfiler();
|
2020-10-06 21:23:15 +02:00
|
|
|
return new ProfilingLogger(new NullLogger<ProfilingLogger>(), profiler);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Retrieving_All_Content_In_Site()
|
|
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
// NOTE: Doing this the old 1 by 1 way and based on the results of the ContentServicePerformanceTest.Retrieving_All_Content_In_Site
|
2018-06-29 19:52:40 +02:00
|
|
|
// 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 !!!!!!!
|
2020-12-23 11:35:49 +01:00
|
|
|
Template template = TemplateBuilder.CreateTextPageTemplate();
|
2020-10-14 08:02:43 +02:00
|
|
|
FileService.SaveTemplate(template);
|
|
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
ContentType contentType1 = ContentTypeBuilder.CreateTextPageContentType("test1", "test1", defaultTemplateId: template.Id);
|
|
|
|
|
ContentType contentType2 = ContentTypeBuilder.CreateTextPageContentType("test2", "test2", defaultTemplateId: template.Id);
|
|
|
|
|
ContentType contentType3 = ContentTypeBuilder.CreateTextPageContentType("test3", "test3", defaultTemplateId: template.Id);
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentTypeService.Save(new[] { contentType1, contentType2, contentType3 });
|
2018-06-29 19:52:40 +02:00
|
|
|
contentType1.AllowedContentTypes = new[]
|
|
|
|
|
{
|
|
|
|
|
new ContentTypeSort(new Lazy<int>(() => contentType2.Id), 0, contentType2.Alias),
|
|
|
|
|
new ContentTypeSort(new Lazy<int>(() => contentType3.Id), 1, contentType3.Alias)
|
|
|
|
|
};
|
|
|
|
|
contentType2.AllowedContentTypes = new[]
|
|
|
|
|
{
|
|
|
|
|
new ContentTypeSort(new Lazy<int>(() => contentType1.Id), 0, contentType1.Alias),
|
|
|
|
|
new ContentTypeSort(new Lazy<int>(() => contentType3.Id), 1, contentType3.Alias)
|
|
|
|
|
};
|
|
|
|
|
contentType3.AllowedContentTypes = new[]
|
|
|
|
|
{
|
|
|
|
|
new ContentTypeSort(new Lazy<int>(() => contentType1.Id), 0, contentType1.Alias),
|
|
|
|
|
new ContentTypeSort(new Lazy<int>(() => contentType2.Id), 1, contentType2.Alias)
|
|
|
|
|
};
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentTypeService.Save(new[] { contentType1, contentType2, contentType3 });
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
IEnumerable<Content> roots = ContentBuilder.CreateTextpageContent(contentType1, -1, 10);
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(roots);
|
2020-12-23 11:35:49 +01:00
|
|
|
foreach (Content root in roots)
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
IEnumerable<Content> item1 = ContentBuilder.CreateTextpageContent(contentType1, root.Id, 10);
|
|
|
|
|
IEnumerable<Content> item2 = ContentBuilder.CreateTextpageContent(contentType2, root.Id, 10);
|
|
|
|
|
IEnumerable<Content> item3 = ContentBuilder.CreateTextpageContent(contentType3, root.Id, 10);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(item1.Concat(item2).Concat(item3));
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var total = new List<IContent>();
|
|
|
|
|
|
|
|
|
|
using (GetTestProfilingLogger().TraceDuration<ContentServicePerformanceTest>("Getting all content in site"))
|
|
|
|
|
{
|
|
|
|
|
TestProfiler.Enable();
|
2020-10-14 08:02:43 +02:00
|
|
|
total.AddRange(ContentService.GetRootContent());
|
2020-12-23 11:35:49 +01:00
|
|
|
foreach (IContent content in total.ToArray())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
total.AddRange(ContentService.GetPagedDescendants(content.Id, 0, int.MaxValue, out long _));
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2018-06-29 19:52:40 +02:00
|
|
|
TestProfiler.Disable();
|
2020-11-10 08:50:47 +00:00
|
|
|
StaticApplicationLogging.Logger.LogInformation("Returned {Total} items", total.Count);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Creating_100_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
2020-12-23 11:35:49 +01:00
|
|
|
IContentType contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
IEnumerable<Content> pages = ContentBuilder.CreateTextpageContent(contentType, -1, 100);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(pages, 0);
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2020-12-23 11:35:49 +01:00
|
|
|
long elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
Debug.Print("100 content items saved in {0} ms", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.That(pages.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Creating_1000_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
2020-12-23 11:35:49 +01:00
|
|
|
IContentType contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
IEnumerable<Content> pages = ContentBuilder.CreateTextpageContent(contentType, -1, 1000);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(pages, 0);
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2020-12-23 11:35:49 +01:00
|
|
|
long elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
Debug.Print("100 content items saved in {0} ms", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.That(pages.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Getting_100_Uncached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
2020-12-23 11:35:49 +01:00
|
|
|
IContentType contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
IEnumerable<Content> pages = ContentBuilder.CreateTextpageContent(contentType, -1, 100);
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(pages, 0);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
IScopeProvider provider = ScopeProvider;
|
|
|
|
|
using (IScope scope = provider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
DocumentRepository repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
|
IEnumerable<IContent> contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2020-12-23 11:35:49 +01:00
|
|
|
long elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
Debug.Print("100 content items retrieved in {0} ms without caching", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.That(contents.Any(x => x.HasIdentity == false), Is.False);
|
|
|
|
|
Assert.That(contents.Any(x => x == null), Is.False);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
[Test]
|
2018-06-29 19:52:40 +02:00
|
|
|
public void Getting_1000_Uncached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
2020-12-23 11:35:49 +01:00
|
|
|
IContentType contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
IEnumerable<Content> pages = ContentBuilder.CreateTextpageContent(contentType, -1, 1000);
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(pages, 0);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
using (IScope scope = ScopeProvider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
DocumentRepository repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
|
IEnumerable<IContent> contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2020-12-23 11:35:49 +01:00
|
|
|
long elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
Debug.Print("1000 content items retrieved in {0} ms without caching", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
2020-12-23 11:35:49 +01: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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Getting_100_Cached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
2020-12-23 11:35:49 +01:00
|
|
|
IContentType contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
IEnumerable<Content> pages = ContentBuilder.CreateTextpageContent(contentType, -1, 100);
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(pages, 0);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
using (IScope scope = ScopeProvider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
DocumentRepository repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
IEnumerable<IContent> contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
|
IEnumerable<IContent> contentsCached = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2020-12-23 11:35:49 +01:00
|
|
|
long elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
Debug.Print("100 content items retrieved in {0} ms with caching", elapsed);
|
|
|
|
|
|
|
|
|
|
// 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()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-14 08:02:43 +02:00
|
|
|
[Test]
|
2018-06-29 19:52:40 +02:00
|
|
|
public void Getting_1000_Cached_Items()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
2020-12-23 11:35:49 +01:00
|
|
|
IContentType contentType = ContentTypeService.Get(ContentType.Id);
|
|
|
|
|
IEnumerable<Content> pages = ContentBuilder.CreateTextpageContent(contentType, -1, 1000);
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentService.Save(pages, 0);
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
using (IScope scope = ScopeProvider.CreateScope())
|
2018-06-29 19:52:40 +02:00
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
DocumentRepository repository = DocumentRepository;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
// Act
|
2020-12-23 11:35:49 +01:00
|
|
|
IEnumerable<IContent> contents = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
|
IEnumerable<IContent> contentsCached = repository.GetMany();
|
2018-06-29 19:52:40 +02:00
|
|
|
watch.Stop();
|
2020-12-23 11:35:49 +01:00
|
|
|
long elapsed = watch.ElapsedMilliseconds;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
Debug.Print("1000 content items retrieved in {0} ms with caching", elapsed);
|
|
|
|
|
|
|
|
|
|
// Assert
|
2020-12-23 11:35:49 +01:00
|
|
|
// 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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CreateTestData()
|
|
|
|
|
{
|
2020-12-23 11:35:49 +01:00
|
|
|
Template template = TemplateBuilder.CreateTextPageTemplate();
|
2020-10-14 08:02:43 +02:00
|
|
|
FileService.SaveTemplate(template);
|
|
|
|
|
|
2020-12-23 11:35:49 +01:00
|
|
|
// Create and Save ContentType "textpage" -> ContentType.Id
|
2020-10-14 08:02:43 +02:00
|
|
|
ContentType = ContentTypeBuilder.CreateTextPageContentType(defaultTemplateId: template.Id);
|
|
|
|
|
ContentTypeService.Save(ContentType);
|
2018-06-29 19:52:40 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|