JsonValidator.FluentAssertions 1.1.0

dotnet add package JsonValidator.FluentAssertions --version 1.1.0
NuGet\Install-Package JsonValidator.FluentAssertions -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JsonValidator.FluentAssertions" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonValidator.FluentAssertions --version 1.1.0
#r "nuget: JsonValidator.FluentAssertions, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install JsonValidator.FluentAssertions as a Cake Addin
#addin nuget:?package=JsonValidator.FluentAssertions&version=1.1.0

// Install JsonValidator.FluentAssertions as a Cake Tool
#tool nuget:?package=JsonValidator.FluentAssertions&version=1.1.0

{✓} JSON Validator for Fluent Assertions

This project provides a simple way to validate JSON objects in dotnet. The main use for the tool is in integration tests where you would — ideally — validate an API JSON response manually instead of using the model classes.

Build Status Coverage Nuget: JsonValidator.FluentAssertions License: MIT pull requests: welcome

Usage

  • The JsonValidator.FluentAssertions package depends on and uses both FluentAssertions and the basic JsonValidator package.
  • This package provides extensions that can be accessed through FluentAssertions' Should() method.
  • Available extensions:
    • for System.Text.Json.JsonDocument: Match(...) checks whether the JSON document matches the input object in both structure and values.
    • for System.Net.Http.HttpResponseMessage: HaveJsonBody(...) checks whether the HTTP response's body as a JSON string matches the input object in both structure and values.

Examples

For JsonDocument:

var json = JsonDocument.Parse(myJsonString);

json.Should().Match(
  new
  {
      name = "Anna Smith",
      level = 2,
  },
  "Because...");

For HttpResponseMessage:

HttpResponseMessage response = await _client.SendAsync(request);

response.Should().HaveJsonBody(
  new
  {
      name = "Anna Smith",
      level = 2,
  },
  "Because...");
Product 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 246 3/4/2024
1.0.4 1,341 1/9/2024
1.0.3 83 1/9/2024