* Create system text serializer * Assign property names with system text * Use the new serializer * Impement AutoInterningStringConverter with System.Text.Json * Implement TextAutoInterningStringKeyCaseInsensitiveDictionaryConverter * Make CaseInsensitiveDictionaryConverter * Force datetimes to be read as UTC * Remove usages of Newtonsoft.Json * Remove text prefixes * Remove unused Newtonsoft converter * Remove more newtonsoft * Remove duplicate implementation * Rmove usage of missing class in tests * Ignore null values * Fix tests * Remove Newtonstoft reference from NuCache --------- Co-authored-by: Elitsa <elm@umbraco.dk>
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using NUnit.Framework;
|
|
using Umbraco.Cms.Infrastructure.Serialization;
|
|
|
|
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Infrastructure.Serialization;
|
|
|
|
[TestFixture]
|
|
public class AutoInterningStringConverterTests
|
|
{
|
|
[Test]
|
|
public void Intern_Property_String()
|
|
{
|
|
var str1 = "Hello";
|
|
var obj = new Test { Name = str1 + Guid.NewGuid() };
|
|
|
|
// ensure the raw value is not interned
|
|
Assert.IsNull(string.IsInterned(obj.Name));
|
|
|
|
var serialized = JsonSerializer.Serialize(obj);
|
|
obj = JsonSerializer.Deserialize<Test>(serialized);
|
|
|
|
Assert.IsNotNull(string.IsInterned(obj.Name));
|
|
}
|
|
|
|
[Test]
|
|
public void Intern_Property_Dictionary()
|
|
{
|
|
var str1 = "key";
|
|
var obj = new Test
|
|
{
|
|
Values = new Dictionary<string, int> { [str1 + Guid.NewGuid()] = 0, [str1 + Guid.NewGuid()] = 1 },
|
|
};
|
|
|
|
// ensure the raw value is not interned
|
|
Assert.IsNull(string.IsInterned(obj.Values.Keys.First()));
|
|
Assert.IsNull(string.IsInterned(obj.Values.Keys.Last()));
|
|
|
|
var serialized = JsonSerializer.Serialize(obj);
|
|
obj = JsonSerializer.Deserialize<Test>(serialized);
|
|
|
|
Assert.IsNotNull(string.IsInterned(obj.Values.Keys.First()));
|
|
Assert.IsNotNull(string.IsInterned(obj.Values.Keys.Last()));
|
|
}
|
|
|
|
public class Test
|
|
{
|
|
[JsonConverter(typeof(AutoInterningStringConverter))]
|
|
public string Name { get; set; }
|
|
|
|
[JsonConverter(typeof(AutoInterningStringKeyCaseInsensitiveDictionaryConverter<int>))]
|
|
public Dictionary<string, int> Values { get; set; } = new();
|
|
}
|
|
}
|