Socolin.TestUtils.JsonComparer
1.5.0
See the version list below for details.
dotnet add package Socolin.TestUtils.JsonComparer --version 1.5.0
NuGet\Install-Package Socolin.TestUtils.JsonComparer -Version 1.5.0
<PackageReference Include="Socolin.TestUtils.JsonComparer" Version="1.5.0" />
<PackageVersion Include="Socolin.TestUtils.JsonComparer" Version="1.5.0" />
<PackageReference Include="Socolin.TestUtils.JsonComparer" />
paket add Socolin.TestUtils.JsonComparer --version 1.5.0
#r "nuget: Socolin.TestUtils.JsonComparer, 1.5.0"
#:package Socolin.TestUtils.JsonComparer@1.5.0
#addin nuget:?package=Socolin.TestUtils.JsonComparer&version=1.5.0
#tool nuget:?package=Socolin.TestUtils.JsonComparer&version=1.5.0
Json Comparer
This library provides a simple way to compare two JSON, with an easily readable output to find what differs.
Features:
- Compare JSON and returns a list of errors.
- Compare a value using a regex
- Capture a value
NuGet: https://www.nuget.org/packages/Socolin.TestUtils.JsonComparer/
Simple compare
Example
Code
const string expectedJson = @"{
""a"":1,
""b"":""abc""
}";
const string actualJson = @"{
""a"":42,
""b"":""abc""
}";
var jsonComparer = TestUtils.JsonComparer.JsonComparer.GetDefault();
var errors = jsonComparer.Compare(expectedJson, actualJson);
Console.WriteLine(JsonComparerOutputFormatter.GetReadableMessage(expectedJson, actualJson, errors));
Output
Given json does not match expected one:
- a: Invalid value, expected '1' but found '42'
--- expected
+++ actual
{
- "a": 1,
+ "a": 42,
"b": "abc"
}
Compare using regex
It's possible to compare strings with a regex, using a custom object with a property __match.
For example, in the following json, to compare the key compareMeWithARegex with the [a-z]+
{
"compareMeWithARegex": "something"
}
The expected json given to the comparer should be
{
"compareMeWithARegex": {
"__match": {
"regex": "[a-z]+"
}
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.2)
- NGitDiff (>= 2.1.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Socolin.TestUtils.JsonComparer:
| Package | Downloads |
|---|---|
|
Socolin.TestUtils.JsonComparer.NUnitExtensions
Extensions of NUnit to easily use Socolin.TestUtils.JsonComparer. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.16.0 | 15,703 | 1/22/2023 |
| 1.15.1 | 730 | 12/24/2022 |
| 1.15.0 | 592 | 12/24/2022 |
| 1.14.0 | 5,128 | 6/12/2022 |
| 1.13.0 | 1,312 | 3/20/2022 |
| 1.12.0 | 72,146 | 12/27/2020 |
| 1.11.0 | 565 | 12/26/2020 |
| 1.10.2 | 618 | 12/15/2020 |
| 1.10.1 | 643 | 11/19/2020 |
| 1.10.0 | 962 | 11/19/2020 |
| 1.9.0 | 2,815 | 8/14/2020 |
| 1.8.1 | 2,095 | 7/1/2020 |
| 1.8.0 | 876 | 6/30/2020 |
| 1.7.1 | 1,260 | 3/19/2020 |
| 1.7.0 | 2,631 | 2/26/2020 |
| 1.6.0 | 735 | 1/14/2020 |
| 1.5.1 | 976 | 6/23/2019 |
| 1.5.0 | 799 | 4/26/2019 |
| 1.4.0 | 1,017 | 12/28/2018 |
| 1.3.0 | 830 | 12/27/2018 |
| 1.2.0 | 1,645 | 12/6/2018 |
| 1.1.0 | 805 | 12/5/2018 |
| 1.0.0 | 859 | 12/4/2018 |