2025-02-17 12:51:33 +01:00
|
|
|
using NUnit.Framework;
|
|
|
|
|
using Umbraco.Cms.Core;
|
|
|
|
|
using Umbraco.Cms.Core.Cache;
|
|
|
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
|
using Umbraco.Cms.Core.Models.PublishedContent;
|
|
|
|
|
using Umbraco.Cms.Core.Notifications;
|
|
|
|
|
using Umbraco.Cms.Core.PublishedCache;
|
|
|
|
|
using Umbraco.Cms.Core.Services;
|
|
|
|
|
using Umbraco.Cms.Core.Sync;
|
|
|
|
|
using Umbraco.Cms.Infrastructure.HybridCache.Services;
|
|
|
|
|
using Umbraco.Cms.Tests.Common.Builders;
|
|
|
|
|
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)]
|
2025-03-21 18:02:31 +01:00
|
|
|
internal sealed class DocumentHybridCacheAncestryTests : UmbracoIntegrationTestWithContent
|
2025-02-17 12:51:33 +01:00
|
|
|
{
|
|
|
|
|
private IContentPublishingService ContentPublishingService => GetRequiredService<IContentPublishingService>();
|
|
|
|
|
|
|
|
|
|
private IPublishedContentCache PublishedContentCache => GetRequiredService<IPublishedContentCache>();
|
|
|
|
|
|
|
|
|
|
private IDocumentCacheService DocumentCacheService => GetRequiredService<IDocumentCacheService>();
|
|
|
|
|
|
|
|
|
|
private Content SubSubPage;
|
|
|
|
|
|
|
|
|
|
protected override void CustomTestSetup(IUmbracoBuilder builder)
|
|
|
|
|
{
|
|
|
|
|
builder.AddNotificationHandler<ContentTreeChangeNotification, ContentTreeChangeDistributedCacheNotificationHandler>();
|
|
|
|
|
builder.Services.AddUnique<IServerMessenger, ContentEventsTests.LocalServerMessenger>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Setup()
|
|
|
|
|
{
|
|
|
|
|
base.Setup();
|
|
|
|
|
// Publish documents
|
|
|
|
|
SubSubPage = ContentBuilder.CreateSimpleContent(ContentType, "SubSubPage", Subpage.Id);
|
|
|
|
|
SubSubPage.Key = Guid.Parse("E4C369B5-CCCA-4981-ADAC-389824CF6B0B");
|
|
|
|
|
ContentService.Save(SubSubPage, -1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public async Task CantGetPublishedContentIfParentIsUnpublished()
|
|
|
|
|
{
|
|
|
|
|
// Text Page
|
|
|
|
|
// Sub Page <-- Unpublished
|
|
|
|
|
// Sub Sub Page
|
2025-08-28 12:09:59 +02:00
|
|
|
await ContentPublishingService.PublishBranchAsync(Textpage.Key, Array.Empty<string>(), PublishBranchFilter.All, Constants.Security.SuperUserKey, false);
|
2025-02-17 12:51:33 +01:00
|
|
|
await ContentPublishingService.UnpublishAsync(Subpage.Key, null, Constants.Security.SuperUserKey);
|
|
|
|
|
|
|
|
|
|
var published = await PublishedContentCache.GetByIdAsync(SubSubPage.Key);
|
|
|
|
|
Assert.IsNull(published);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public async Task CanGetPublishedContentIfParentIsPublished()
|
|
|
|
|
{
|
2025-08-28 12:09:59 +02:00
|
|
|
await ContentPublishingService.PublishBranchAsync(Textpage.Key, Array.Empty<string>(), PublishBranchFilter.All, Constants.Security.SuperUserKey, false);
|
2025-02-17 12:51:33 +01:00
|
|
|
|
|
|
|
|
var published = await PublishedContentCache.GetByIdAsync(SubSubPage.Key);
|
|
|
|
|
CacheTestsHelper.AssertPage(SubSubPage, published);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public async Task CantGetPublishedContentAfterSeedingIfParentIsUnpublished()
|
|
|
|
|
{
|
|
|
|
|
// Text Page
|
|
|
|
|
// Sub Page <-- Unpublished
|
|
|
|
|
// Sub Sub Page
|
2025-08-28 12:09:59 +02:00
|
|
|
await ContentPublishingService.PublishBranchAsync(Textpage.Key, Array.Empty<string>(), PublishBranchFilter.Default, Constants.Security.SuperUserKey, false);
|
2025-02-17 12:51:33 +01:00
|
|
|
await ContentPublishingService.UnpublishAsync(Subpage.Key, null, Constants.Security.SuperUserKey);
|
|
|
|
|
|
|
|
|
|
// Clear cache also seeds, but we have to reset the seed keys first since these are cached from test startup
|
|
|
|
|
var cacheService = DocumentCacheService as DocumentCacheService;
|
|
|
|
|
cacheService!.ResetSeedKeys();
|
|
|
|
|
await DocumentCacheService.ClearMemoryCacheAsync(CancellationToken.None);
|
|
|
|
|
|
|
|
|
|
var unpublishedSubSubPage = await PublishedContentCache.GetByIdAsync(SubSubPage.Key);
|
|
|
|
|
var unpublishedSubPage = await PublishedContentCache.GetByIdAsync(Subpage.Key);
|
|
|
|
|
Assert.IsNull(unpublishedSubSubPage);
|
|
|
|
|
Assert.IsNull(unpublishedSubPage);
|
|
|
|
|
|
|
|
|
|
// We should however be able to get the still published root Text Page
|
|
|
|
|
var publishedTextPage = await PublishedContentCache.GetByIdAsync(Textpage.Key);
|
|
|
|
|
CacheTestsHelper.AssertPage(Textpage, publishedTextPage);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|