* Refactor serverside content editing to support all variance combinations * Fix build errors * Reintroduce the tests ignored by #19060 --------- Co-authored-by: Mads Rasmussen <madsr@hey.com>
55 lines
2.6 KiB
C#
55 lines
2.6 KiB
C#
using NUnit.Framework;
|
|
using Umbraco.Cms.Core;
|
|
using Umbraco.Cms.Core.Models.ContentEditing;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Core.Services;
|
|
|
|
internal sealed partial class DocumentNavigationServiceTests
|
|
{
|
|
[Test]
|
|
public async Task Structure_Does_Not_Update_When_Updating_Content()
|
|
{
|
|
// Arrange
|
|
Guid nodeToUpdate = Root.Key;
|
|
|
|
// Capture initial state
|
|
DocumentNavigationQueryService.TryGetParentKey(nodeToUpdate, out Guid? initialParentKey);
|
|
DocumentNavigationQueryService.TryGetChildrenKeys(nodeToUpdate, out IEnumerable<Guid> initialChildrenKeys);
|
|
DocumentNavigationQueryService.TryGetDescendantsKeys(nodeToUpdate, out IEnumerable<Guid> initialDescendantsKeys);
|
|
DocumentNavigationQueryService.TryGetAncestorsKeys(nodeToUpdate, out IEnumerable<Guid> initialAncestorsKeys);
|
|
DocumentNavigationQueryService.TryGetSiblingsKeys(nodeToUpdate, out IEnumerable<Guid> initialSiblingsKeys);
|
|
|
|
var updateModel = new ContentUpdateModel
|
|
{
|
|
Variants = [new () { Name = "Updated Root" }]
|
|
};
|
|
|
|
// Act
|
|
var updateAttempt = await ContentEditingService.UpdateAsync(nodeToUpdate, updateModel, Constants.Security.SuperUserKey);
|
|
Guid updatedItemKey = updateAttempt.Result.Content!.Key;
|
|
|
|
// Capture updated state
|
|
var nodeExists = DocumentNavigationQueryService.TryGetParentKey(updatedItemKey, out Guid? updatedParentKey);
|
|
DocumentNavigationQueryService.TryGetChildrenKeys(updatedItemKey, out IEnumerable<Guid> childrenKeysAfterUpdate);
|
|
DocumentNavigationQueryService.TryGetDescendantsKeys(updatedItemKey, out IEnumerable<Guid> descendantsKeysAfterUpdate);
|
|
DocumentNavigationQueryService.TryGetAncestorsKeys(updatedItemKey, out IEnumerable<Guid> ancestorsKeysAfterUpdate);
|
|
DocumentNavigationQueryService.TryGetSiblingsKeys(updatedItemKey, out IEnumerable<Guid> siblingsKeysAfterUpdate);
|
|
|
|
// Assert
|
|
Assert.Multiple(() =>
|
|
{
|
|
// Verify that the item is still present in the navigation structure
|
|
Assert.IsTrue(nodeExists);
|
|
|
|
Assert.AreEqual(nodeToUpdate, updatedItemKey);
|
|
|
|
// Verify that nothing's changed
|
|
Assert.AreEqual(initialParentKey, updatedParentKey);
|
|
CollectionAssert.AreEquivalent(initialChildrenKeys, childrenKeysAfterUpdate);
|
|
CollectionAssert.AreEquivalent(initialDescendantsKeys, descendantsKeysAfterUpdate);
|
|
CollectionAssert.AreEquivalent(initialAncestorsKeys, ancestorsKeysAfterUpdate);
|
|
CollectionAssert.AreEquivalent(initialSiblingsKeys, siblingsKeysAfterUpdate);
|
|
});
|
|
}
|
|
}
|