Files
Umbraco-CMS/tests/Umbraco.Tests.UnitTests/Umbraco.Infrastructure/PublishedCache/PublishedSnapshotServiceContentTests.cs

208 lines
10 KiB
C#
Raw Normal View History

V15: Remove Nucache (#17166) * Remove nucache reference from Web.Common * Get tests building-ish * Move ReservedFieldNamesService to the right project * Remove IPublishedSnapshotStatus * Added functionality to the INavigationQueryService to get root keys * Fixed issue with navigation * Remove IPublishedSnapshot from UmbracoContext * Begin removing usage of IPublishedSnapshot from PublishedContentExtensions * Fix PublishedContentExtensions.cs * Don't use snapshots in delivery media api * Use IPublishedMediaCache in QueryMediaApiController * Remove more usages of IPublishedSnapshotAccessor * Comment out tests * Remove more usages of PublishedSnapshotAccessor * Remove PublishedSnapshot from property * Fixed test build * Fix errors * Fix some tests * Delete NuCache 🎉 * Implement DatabaseCacheRebuilder * Remove usage of IPublishedSnapshotService * Remove IPublishedSnapshotService * Remove TestPublishedSnapshotAccessor and make tests build * Don't test Snapshot cachelevel It's no longer supported * Fix BlockEditorConverter Element != Element document type * Remember to set cachemanager * Fix RichTextParserTests * Implement TryGetLevel on INavigationQueryService * Fake level and obsolete it in PublishedContent * Remove ChildrenForAllCultures * Hack Path property on PublishedContent * Remove usages of IPublishedSnapshot in tests * More ConvertersTests * Add hybrid cache to integration tests We can actually do this now because we no longer save files on disk * Rename IPublishedSnapshotRebuilder to ICacheRebuilder * Comment out tests * V15: Replacing the usages of Parent (navigation data) from IPublishedContent (#17125) * Fix .Parent references in PublishedContentExtensions * Add missing methods to FriendlyPublishedContentExtensions (ones that you were able to call on the content directly as they now require extra params) * Fix references from the extension methods * Fix dependencies in tests * Replace IPublishedSnapshotAccessor with the content cache in tests * Resolving more .Parent references * Fix unit tests * Obsolete and use extension methods * Remove private method and use extension instead * Moving code around * Fix tests * Fix more references * Cleanup * Fix more usages * Resolve merge conflict * Fix tests * Cleanup * Fix more tests * Fixed unit tests * Cleanup * Replace last usages --------- Co-authored-by: Bjarke Berg <mail@bergmania.dk> * Remove usage of IPublishedSnapshotAccessor from IRequestItemProvider * Post merge fixup * Remo IPublishedSnapshot * Add HasAny to IDocumentUrlService * Fix TextBuilder * Fix modelsbuilder tests * Use explicit types * Implement GetByContentType * Support element types in PublishedContentTypeCache * Run enlistments before publishing notifications * Fix elements cache refreshing * Implement GetByUdi * Implement GetAtRoot * Implement GetByRoute * Reimplement GetRouteById * Fix blocks unit tests * Initialize domain cache on boot * Only return routes with domains on non default lanauges * V15: Replacing the usages of `Children` (navigation data) from `IPublishedContent` (#17159) * Update params in PublishedContentExtensions to the general interfaces for the published cache and navigation service, so that we can use the extension methods on both documents and media * Introduce GetParent() which uses the right services * Fix obsolete message on .Parent * Obsolete .Children * Fix usages of Children for ApiMediaQueryService * Fix usage in internal * Fix usages in views * Fix indentation * Fix issue with delete language * Update nuget pacakges * Clear elements cache when content is deleted instead of trying to update it * Reset publishedModelFactory * Fixed publishing --------- Co-authored-by: Bjarke Berg <mail@bergmania.dk> Co-authored-by: Elitsa Marinovska <21998037+elit0451@users.noreply.github.com> Co-authored-by: kjac <kja@umbraco.dk>
2024-10-01 15:03:02 +02:00
// using System.Collections.Generic;
// using Moq;
// using NUnit.Framework;
// using Umbraco.Cms.Core.Cache;
// using Umbraco.Cms.Core.Models;
// using Umbraco.Cms.Core.Models.PublishedContent;
// using Umbraco.Cms.Core.Services.Changes;
// using Umbraco.Cms.Infrastructure.PublishedCache;
// using Umbraco.Cms.Infrastructure.PublishedCache.DataSource;
// using Umbraco.Cms.Tests.Common.Builders;
// using Umbraco.Cms.Tests.Common.Builders.Extensions;
// using Umbraco.Cms.Tests.UnitTests.TestHelpers;
// using Umbraco.Extensions;
//
// namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Infrastructure.PublishedCache;
//
// FIXME: Reintroduce if relevant
// [TestFixture]
// public class PublishedSnapshotServiceContentTests : PublishedSnapshotServiceTestBase
// {
// [SetUp]
// public override void Setup()
// {
// base.Setup();
//
// _propertyType =
// new PropertyType(TestHelper.ShortStringHelper, "Umbraco.Void.Editor", ValueStorageType.Nvarchar)
// {
// Alias = "prop",
// DataTypeId = 3,
// Variations = ContentVariation.Culture,
// };
// _contentType =
// new ContentType(TestHelper.ShortStringHelper, -1)
// {
// Id = 2,
// Alias = "alias-ct",
// Variations = ContentVariation.Culture,
// };
// _contentType.AddPropertyType(_propertyType);
//
// var contentTypes = new[] { _contentType };
//
// InitializedCache(new[] { CreateKit() }, contentTypes);
// }
//
// private ContentType _contentType;
// private PropertyType _propertyType;
//
// private ContentNodeKit CreateKit()
// {
// var draftData = new ContentDataBuilder()
// .WithName("It Works2!")
// .WithPublished(false)
// .WithProperties(new Dictionary<string, PropertyData[]>
// {
// ["prop"] = new[]
// {
// new PropertyData { Culture = string.Empty, Segment = string.Empty, Value = "val2" },
// new PropertyData { Culture = "fr-FR", Segment = string.Empty, Value = "val-fr2" },
// new PropertyData { Culture = "en-UK", Segment = string.Empty, Value = "val-uk2" },
// new PropertyData { Culture = "dk-DA", Segment = string.Empty, Value = "val-da2" },
// new PropertyData { Culture = "de-DE", Segment = string.Empty, Value = "val-de2" },
// },
// })
// .WithCultureInfos(new Dictionary<string, CultureVariation>
// {
// // draft data = everything, and IsDraft indicates what's edited
// ["fr-FR"] = new() { Name = "name-fr2", IsDraft = true, Date = new DateTime(2018, 01, 03, 01, 00, 00) },
// ["en-UK"] = new() { Name = "name-uk2", IsDraft = true, Date = new DateTime(2018, 01, 04, 01, 00, 00) },
// ["dk-DA"] = new() { Name = "name-da2", IsDraft = true, Date = new DateTime(2018, 01, 05, 01, 00, 00) },
// ["de-DE"] = new() { Name = "name-de1", IsDraft = false, Date = new DateTime(2018, 01, 02, 01, 00, 00) },
// })
// .Build();
//
// var publishedData = new ContentDataBuilder()
// .WithName("It Works1!")
// .WithPublished(true)
// .WithProperties(new Dictionary<string, PropertyData[]>
// {
// ["prop"] = new[]
// {
// new PropertyData { Culture = string.Empty, Segment = string.Empty, Value = "val1" },
// new PropertyData { Culture = "fr-FR", Segment = string.Empty, Value = "val-fr1" },
// new PropertyData { Culture = "en-UK", Segment = string.Empty, Value = "val-uk1" },
// },
// })
// .WithCultureInfos(new Dictionary<string, CultureVariation>
// {
// // published data = only what's actually published, and IsDraft has to be false
// ["fr-FR"] = new() { Name = "name-fr1", IsDraft = false, Date = new DateTime(2018, 01, 01, 01, 00, 00) },
// ["en-UK"] = new() { Name = "name-uk1", IsDraft = false, Date = new DateTime(2018, 01, 02, 01, 00, 00) },
// ["de-DE"] = new() { Name = "name-de1", IsDraft = false, Date = new DateTime(2018, 01, 02, 01, 00, 00) },
// })
// .Build();
//
// var kit = ContentNodeKitBuilder.CreateWithContent(
// 2,
// 1,
// "-1,1",
// 0,
// draftData: draftData,
// publishedData: publishedData);
//
// return kit;
// }
//
// [Test]
// public void Verifies_Variant_Data()
// {
// // this test implements a full standalone NuCache (based upon a test IDataSource, does not
// // use any local db files, does not rely on any database) - and tests variations
//
// // get a snapshot, get a published content
// var snapshot = GetPublishedSnapshot();
// var publishedContent = snapshot.Content.GetById(1);
//
// Assert.IsNotNull(publishedContent);
// Assert.AreEqual("val1", publishedContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop"));
// Assert.AreEqual("val-fr1", publishedContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop", "fr-FR"));
// Assert.AreEqual("val-uk1", publishedContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop", "en-UK"));
//
// Assert.AreEqual(publishedContent.Name(VariationContextAccessor), string.Empty); // no invariant name for varying content
// Assert.AreEqual("name-fr1", publishedContent.Name(VariationContextAccessor, "fr-FR"));
// Assert.AreEqual("name-uk1", publishedContent.Name(VariationContextAccessor, "en-UK"));
//
// var draftContent = snapshot.Content.GetById(true, 1);
// Assert.AreEqual("val2", draftContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop"));
// Assert.AreEqual("val-fr2", draftContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop", "fr-FR"));
// Assert.AreEqual("val-uk2", draftContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop", "en-UK"));
//
// Assert.AreEqual(draftContent.Name(VariationContextAccessor), string.Empty); // no invariant name for varying content
// Assert.AreEqual("name-fr2", draftContent.Name(VariationContextAccessor, "fr-FR"));
// Assert.AreEqual("name-uk2", draftContent.Name(VariationContextAccessor, "en-UK"));
//
// // now french is default
// VariationContextAccessor.VariationContext = new VariationContext("fr-FR");
// Assert.AreEqual("val-fr1", publishedContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop"));
// Assert.AreEqual("name-fr1", publishedContent.Name(VariationContextAccessor));
// Assert.AreEqual(new DateTime(2018, 01, 01, 01, 00, 00), publishedContent.CultureDate(VariationContextAccessor));
//
// // now uk is default
// VariationContextAccessor.VariationContext = new VariationContext("en-UK");
// Assert.AreEqual("val-uk1", publishedContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop"));
// Assert.AreEqual("name-uk1", publishedContent.Name(VariationContextAccessor));
// Assert.AreEqual(new DateTime(2018, 01, 02, 01, 00, 00), publishedContent.CultureDate(VariationContextAccessor));
//
// // invariant needs to be retrieved explicitly, when it's not default
// Assert.AreEqual("val1", publishedContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop", string.Empty));
//
// // but,
// // if the content type / property type does not vary, then it's all invariant again
// // modify the content type and property type, notify the snapshot service
// _contentType.Variations = ContentVariation.Nothing;
// _propertyType.Variations = ContentVariation.Nothing;
// SnapshotService.Notify(new[]
// {
// new ContentTypeCacheRefresher.JsonPayload("IContentType", publishedContent.ContentType.Id, ContentTypeChangeTypes.RefreshMain),
// });
//
// // get a new snapshot (nothing changed in the old one), get the published content again
// var anotherSnapshot = SnapshotService.CreatePublishedSnapshot(null);
// var againContent = anotherSnapshot.Content.GetById(1);
//
// Assert.AreEqual(ContentVariation.Nothing, againContent.ContentType.Variations);
// Assert.AreEqual(ContentVariation.Nothing, againContent.ContentType.GetPropertyType("prop").Variations);
//
// // now, "no culture" means "invariant"
// Assert.AreEqual("It Works1!", againContent.Name(VariationContextAccessor));
// Assert.AreEqual("val1", againContent.Value<string>(Mock.Of<IPublishedValueFallback>(), "prop"));
// }
//
// [Test]
// public void Verifies_Published_And_Draft_Content()
// {
// // get the published published content
// var snapshot = GetPublishedSnapshot();
// var c1 = snapshot.Content.GetById(1);
//
// // published content = nothing is draft here
// Assert.IsFalse(c1.IsDraft("fr-FR"));
// Assert.IsFalse(c1.IsDraft("en-UK"));
// Assert.IsFalse(c1.IsDraft("dk-DA"));
// Assert.IsFalse(c1.IsDraft("de-DE"));
//
// // and only those with published name, are published
// Assert.IsTrue(c1.IsPublished("fr-FR"));
// Assert.IsTrue(c1.IsPublished("en-UK"));
// Assert.IsFalse(c1.IsDraft("dk-DA"));
// Assert.IsTrue(c1.IsPublished("de-DE"));
//
// // get the draft published content
// var c2 = snapshot.Content.GetById(true, 1);
//
// // draft content = we have drafts
// Assert.IsTrue(c2.IsDraft("fr-FR"));
// Assert.IsTrue(c2.IsDraft("en-UK"));
// Assert.IsTrue(c2.IsDraft("dk-DA"));
// Assert.IsFalse(c2.IsDraft("de-DE")); // except for the one that does not
//
// // and only those with published name, are published
// Assert.IsTrue(c2.IsPublished("fr-FR"));
// Assert.IsTrue(c2.IsPublished("en-UK"));
// Assert.IsFalse(c2.IsPublished("dk-DA"));
// Assert.IsTrue(c2.IsPublished("de-DE"));
// }
// }