* Move DocumentCacheService * Add clear all documentws from memory cache * Fix RedirectTracker * Implement refresh node/branch/all/delete * Only update databasecache in RefreshContentAsync * Fix tests * Skip blueprints in cache * Clear caches when contenttype is updated * Clear cache on data type update * Refresh media * Only update memory cache from refreshers * Fix imports * Add named options * Use cache entry settings in media * Obsolete nucache settings --------- Co-authored-by: Bjarke Berg <mail@bergmania.dk>
51 lines
2.1 KiB
C#
51 lines
2.1 KiB
C#
using NUnit.Framework;
|
|
using Umbraco.Cms.Core;
|
|
using Umbraco.Cms.Core.Cache;
|
|
using Umbraco.Cms.Core.Models.ContentEditing;
|
|
using Umbraco.Cms.Core.Notifications;
|
|
using Umbraco.Cms.Core.PublishedCache;
|
|
using Umbraco.Cms.Core.Services;
|
|
using Umbraco.Cms.Core.Services.OperationStatus;
|
|
using Umbraco.Cms.Core.Sync;
|
|
using Umbraco.Cms.Tests.Common.Testing;
|
|
using Umbraco.Cms.Tests.Integration.Testing;
|
|
using Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.PublishedCache.HybridCache;
|
|
|
|
[TestFixture]
|
|
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
|
public class DocumentHybridCacheTemplateTests : UmbracoIntegrationTestWithContentEditing
|
|
{
|
|
protected override void CustomTestSetup(IUmbracoBuilder builder)
|
|
{
|
|
builder.AddNotificationHandler<ContentTreeChangeNotification, ContentTreeChangeDistributedCacheNotificationHandler>();
|
|
builder.Services.AddUnique<IServerMessenger, ContentEventsTests.LocalServerMessenger>();
|
|
}
|
|
|
|
private IPublishedContentCache PublishedContentHybridCache => GetRequiredService<IPublishedContentCache>();
|
|
|
|
private IContentEditingService ContentEditingService => GetRequiredService<IContentEditingService>();
|
|
|
|
[Test]
|
|
public async Task Can_Get_Document_After_Removing_Template()
|
|
{
|
|
// Arrange
|
|
var textPageBefore = await PublishedContentHybridCache.GetByIdAsync(TextpageId, true);
|
|
Assert.AreEqual(textPageBefore.TemplateId, TemplateId);
|
|
var updateModel = new ContentUpdateModel();
|
|
{
|
|
updateModel.TemplateKey = null;
|
|
updateModel.InvariantName = textPageBefore.Name;
|
|
}
|
|
|
|
// Act
|
|
var updateContentResult = await ContentEditingService.UpdateAsync(textPageBefore.Key, updateModel, Constants.Security.SuperUserKey);
|
|
|
|
// Assert
|
|
Assert.AreEqual(updateContentResult.Status, ContentEditingOperationStatus.Success);
|
|
var textPageAfter = await PublishedContentHybridCache.GetByIdAsync(TextpageId, true);
|
|
Assert.AreEqual(textPageAfter.TemplateId, null);
|
|
}
|
|
}
|