* starts cleaning up old test project, removing ones we'll never convert, moves new test to where it should be. * Makes ContentNodeKit immutable properties, moves first nucache tests over * Gets the Nucache unit tests working and refactors a bit to use builder pattern for models. * Migrates first xml based cache test to use nucache. * Migrates a bunch more * Migrates remaining tests for PublishedContentTests * Moves PublishedRouterTests * Moves PublishedContentExtensionTests * Moves more tests. * committing wip * committing wip * Gets PublishedContentLanguageVariantTests converted and working. * Fixes DataTable ext method and moves PublishedContentDataTableTests * Moves PublishedMediaTests * wip - moving EntityXmlSerializerTests * Moves more tests * moves more tests * moves more tests * Move another test * Moves more tests * Fix test * move another test * Moves more tests * Moves more tests * Moves more tests * wip before merge * More tests * More tests * More tests * More tests * More tests * More tests * Cleanup and moving classes. * Remove unused code * Fixed failing tests, due to new null checks, that did not exist in v8 * Avoid breaking changes * Unbreak more things, even that it the old solution was crazy.. * Fixed bug where ordering of stream readings was changed.. * cleanup Co-authored-by: Bjarke Berg <mail@bergmania.dk>
111 lines
4.2 KiB
C#
111 lines
4.2 KiB
C#
using Moq;
|
|
using NUnit.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Umbraco.Cms.Core.Models;
|
|
using Umbraco.Cms.Core.PropertyEditors;
|
|
using Umbraco.Cms.Infrastructure.PublishedCache.DataSource;
|
|
|
|
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Infrastructure.PublishedCache
|
|
{
|
|
[TestFixture]
|
|
public class ContentSerializationTests
|
|
{
|
|
[Test]
|
|
public void GivenACacheModel_WhenItsSerializedAndDeserializedWithAnySerializer_TheResultsAreTheSame()
|
|
{
|
|
var jsonSerializer = new JsonContentNestedDataSerializer();
|
|
var msgPackSerializer = new MsgPackContentNestedDataSerializer(Mock.Of<IPropertyCacheCompression>());
|
|
|
|
var now = DateTime.Now;
|
|
var cacheModel = new ContentCacheDataModel
|
|
{
|
|
PropertyData = new Dictionary<string, PropertyData[]>
|
|
{
|
|
["propertyOne"] = new[]
|
|
{
|
|
new PropertyData
|
|
{
|
|
Culture = "en-US",
|
|
Segment = "test",
|
|
Value = "hello world"
|
|
}
|
|
},
|
|
["propertyTwo"] = new[]
|
|
{
|
|
new PropertyData
|
|
{
|
|
Culture = "en-US",
|
|
Segment = "test",
|
|
Value = "Lorem ipsum"
|
|
}
|
|
}
|
|
},
|
|
CultureData = new Dictionary<string, CultureVariation>
|
|
{
|
|
["en-US"] = new CultureVariation
|
|
{
|
|
Date = now,
|
|
IsDraft = false,
|
|
Name = "Home",
|
|
UrlSegment = "home"
|
|
}
|
|
},
|
|
UrlSegment = "home"
|
|
};
|
|
|
|
var content = Mock.Of<IReadOnlyContentBase>(x => x.ContentTypeId == 1);
|
|
|
|
var json = jsonSerializer.Serialize(content, cacheModel, false).StringData;
|
|
var msgPack = msgPackSerializer.Serialize(content, cacheModel, false).ByteData;
|
|
|
|
Console.WriteLine(json);
|
|
Console.WriteLine(msgPackSerializer.ToJson(msgPack));
|
|
|
|
var jsonContent = jsonSerializer.Deserialize(content, json, null, false);
|
|
var msgPackContent = msgPackSerializer.Deserialize(content, null, msgPack, false);
|
|
|
|
|
|
CollectionAssert.AreEqual(jsonContent.CultureData.Keys, msgPackContent.CultureData.Keys);
|
|
CollectionAssert.AreEqual(jsonContent.PropertyData.Keys, msgPackContent.PropertyData.Keys);
|
|
CollectionAssert.AreEqual(jsonContent.CultureData.Values, msgPackContent.CultureData.Values, new CultureVariationComparer());
|
|
CollectionAssert.AreEqual(jsonContent.PropertyData.Values, msgPackContent.PropertyData.Values, new PropertyDataComparer());
|
|
Assert.AreEqual(jsonContent.UrlSegment, msgPackContent.UrlSegment);
|
|
}
|
|
|
|
public class CultureVariationComparer : Comparer<CultureVariation>
|
|
{
|
|
public override int Compare(CultureVariation x, CultureVariation y)
|
|
{
|
|
if (x == null && y == null)
|
|
return 0;
|
|
if (x == null && y != null)
|
|
return -1;
|
|
if (x != null && y == null)
|
|
return 1;
|
|
|
|
return x.Date.CompareTo(y.Date) | x.IsDraft.CompareTo(y.IsDraft) | x.Name.CompareTo(y.Name) | x.UrlSegment.CompareTo(y.UrlSegment);
|
|
}
|
|
}
|
|
|
|
public class PropertyDataComparer : Comparer<PropertyData>
|
|
{
|
|
public override int Compare(PropertyData x, PropertyData y)
|
|
{
|
|
if (x == null && y == null)
|
|
return 0;
|
|
if (x == null && y != null)
|
|
return -1;
|
|
if (x != null && y == null)
|
|
return 1;
|
|
|
|
var xVal = x.Value?.ToString() ?? string.Empty;
|
|
var yVal = y.Value?.ToString() ?? string.Empty;
|
|
|
|
return x.Culture.CompareTo(y.Culture) | x.Segment.CompareTo(y.Segment) | xVal.CompareTo(yVal);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|