Files
Umbraco-CMS/tests/Umbraco.Tests.UnitTests/Umbraco.Infrastructure/Serialization/JsonNetSerializerTests.cs
Paul Johnson 00133e880d Move test projects from src/ to tests/ (#11357)
* Update gitignore

* Move csproj

* Update project references

* Update solutions

* Update build scripts

* Tests used to share editorconfig with projects in src

* Fix broken tests.

* Stop copying around .editorconfig

merged root one with linting

* csharp_style_expression_bodied -> suggestion

* Move StyleCop rulesets to matching directories and update shared build properties

* Remove legacy build files, update NuGet.cofig and solution files

* Restore myget source

* Clean up .gitignore

* Update .gitignore

* Move new test classes to tests after merge

* Gitignore + nuget config

* Move new test

Co-authored-by: Ronald Barendse <ronald@barend.se>
2021-10-18 08:14:04 +01:00

86 lines
2.3 KiB
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using Newtonsoft.Json;
using NUnit.Framework;
using Umbraco.Cms.Core.Serialization;
using Umbraco.Cms.Infrastructure.Serialization;
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Infrastructure.Serialization
{
[TestFixture]
public class JsonNetSerializerTests
{
private IJsonSerializer Sut => new JsonNetSerializer();
[Test]
public void DeserializeSubset__Subset_as_integer()
{
var expected = 3;
var key = "int";
var full = $"{{\"{key}\": {expected}}}";
var actual = Sut.DeserializeSubset<int>(full, key);
Assert.AreEqual(expected, actual);
}
[Test]
public void DeserializeSubset__Subset_as_string()
{
var expected = "test";
var key = "text";
var full = $"{{\"{key}\": \"{expected}\"}}";
var actual = Sut.DeserializeSubset<string>(full, key);
Assert.AreEqual(expected, actual);
}
[Test]
public void DeserializeSubset__Subset_nested_value_as_string()
{
var expected = "test";
var key = "text";
var key2 = "text2";
var full = $"{{\"{key}\": {{\"{key2}\": \"{expected}\"}}}}";
var actual = Sut.DeserializeSubset<string>(full, key + "." + key2);
Assert.AreEqual(expected, actual);
}
[Test]
public void DeserializeSubset__Subset_value_as_object()
{
var expected = new MyStruct()
{
Key = "Test"
};
var key = nameof(MyStruct.Key);
var full = $"{{\"{key}\": {JsonConvert.SerializeObject(expected)}";
var actual = Sut.DeserializeSubset<MyStruct>(full, key);
Assert.AreEqual(expected, actual);
}
[Test]
public void DeserializeSubset__Subset_value_as_array()
{
var expected = new[] { "test" };
var key = "text";
var full = $"{{\"{key}\": {JsonConvert.SerializeObject(expected)}";
var actual = Sut.DeserializeSubset<string[]>(full, key);
Assert.AreEqual(expected, actual);
}
private struct MyStruct
{
public string Key { get; set; }
}
}
}