Meziantou.Framework.InlineSnapshotTesting 3.2.0

Prefix Reserved
dotnet add package Meziantou.Framework.InlineSnapshotTesting --version 3.2.0                
NuGet\Install-Package Meziantou.Framework.InlineSnapshotTesting -Version 3.2.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="Meziantou.Framework.InlineSnapshotTesting" Version="3.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meziantou.Framework.InlineSnapshotTesting --version 3.2.0                
#r "nuget: Meziantou.Framework.InlineSnapshotTesting, 3.2.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 Meziantou.Framework.InlineSnapshotTesting as a Cake Addin
#addin nuget:?package=Meziantou.Framework.InlineSnapshotTesting&version=3.2.0

// Install Meziantou.Framework.InlineSnapshotTesting as a Cake Tool
#tool nuget:?package=Meziantou.Framework.InlineSnapshotTesting&version=3.2.0                

Meziantou.Framework.InlineSnapshotTesting

Meziantou.Framework.InlineSnapshotTesting is a snapshot testing library that simplifies the assertion of complex data models and documents. It is inspired by Verify.

InlineSnapshot is called on the test result during the assertion phase. It serializes that result and update the expected value. On the next test execution, the result is again serialized and compared to the existing value. The test will fail if the two snapshots do not match: either the change is unexpected, or the reference snapshot needs to be updated to the new result.

On the development machine, a diff tool prompt to compare the expected snapshot with the current snapshot. So, you can accept the new value or cancel. So, you can quickly iterate on your code and update snapshots.

Blog post: Inline Snapshot testing in .NET

Getting Started

First, you can write a test with the following code:

var data = new
{
    FirstName = "Gérald",
    LastName = "Barré",
    NickName = "meziantou",
};

// No need to write the expected value
InlineSnapshot.Validate(data);

Then, run the tests. It will show you a diff tool where you can compare the expected value and the new value. Once you accept the change, the source code is updated:

var data = new
{
    FirstName = "Gérald",
    LastName = "Barré",
    NickName = "meziantou",
};

InlineSnapshot.Validate(data, """
    FirstName: Gérald,
    LastName: Barré,
    NickName: meziantou
    """);

Documentation

Configuration

You can configure the default behavior of Validate() by settings InlineSnapshotSettings.Default. In the case of unit tests, you may want to update the configuration before running tests. You can use a ModuleInitializer to do so.

static class AssemblyInitializer
{
    [ModuleInitializer]
    public static void Initialize()
    {
        InlineSnapshotSettings.Default = InlineSnapshotSettings.Default with
        {
            SnapshotUpdateStrategy = SnapshotUpdateStrategy.MergeTool,
            MergeTools = [MergeTool.VisualStudioCode],
        };
    }
}

You can also set the configuration per assert:

// InlineSnapshotSettings is a record, so you can use the "with" keyword to create a new instance
var settings = InlineSnapshotSettings.Default with
{
    SnapshotUpdateStrategy = SnapshotUpdateStrategy.Overwrite,
};

InlineSnapshot.CreateBuilder()
    .WithSettings(settings)
    .Validate(data, "");

If you prefer, you can use the alternative syntax:

InlineSnapshot.CreateBuilder()
    .WithSettings(settings => settings.SnapshotUpdateStrategy = SnapshotUpdateStrategy.Overwrite)
    .Validate(data, "");

Serializer

By default, InlineSnapshot uses the HumanReadableSerializer to serialize the object. This is the recommended serializer for most cases. However, you can provide your own serializer if needed.

// Configure the HumanReadableSerializer
InlineSnapshot.CreateBuilder()
    .WithSerializer(options => options.PropertyOrder = StringComparer.Ordinal)
    .Validate(data);
// Use System.Text.Json
InlineSnapshot.CreateBuilder()
    .WithSerializer(new JsonSnapshotSerializer())
    .Validate(data);

If you use Verify and want to use the same serializer, you can use the Meziantou.Framework.InlineSnapshotTesting.Serializers.Argon package.

InlineSnapshot.CreateBuilder()
    .WithSerializer(new ArgonSnapshotSerializer())
    .Validate(data);

HumanReadableSerializer

The HumanReadableSerializer has many options to make the snapshot deterministic and easy to read. You can scrub values, scrub lines, show invisible characters, and more.

  • Ordering properties: Recent versions of .NET have a deterministic order of properties. However, .NET Framework does not have a deterministic order. You can use the PropertyOrder option to order the properties alphabetically:

    InlineSnapshot
        .WithSerializer(options =>
        {
            options.PropertyOrder = StringComparer.Ordinal;
            options.DictionaryKeyOrder = StringComparer.Ordinal;
        })
        .Validate(...);
    
  • Formatting content

    InlineSnapshot
        .WithSerializer(options =>
        {
            options.AddJsonFormatter(new JsonFormatterOptions
            {
                OrderProperties = true,
                WriteIndented = true,
            });
    
            options.AddXmlFormatter(new XmlFormatterOptions
            {
                OrderAttributes = true,
                WriteIndented = true,
            });
    
            options.AddHtmlFormatter(new HtmlFormatterOptions
            {
                OrderAttributes = true,
                AttributeQuote = HtmlAttributeQuote.DoubleQuote,
                RedactContentSecurityPolicyNonce = true,
            });
    
            options.AddUrlEncodedFormFormatter(new UrlEncodedFormFormatterOptions
            {
                OrderProperties = true,
                UnescapeValues = true,
                PrettyFormat = true,
    
            });
        })
        .Validate(...);
    
  • Ignore members

    InlineSnapshot
        .WithSerializer(options =>
        {
            options.IgnoreMember<TestClass>(x => x.Property);
            options.IgnoreMember<TestClass>(x => new { x.Property1, x.Property2 });
            options.IgnoreMembersWithType<int>(); // ignore all properties of type int
    
            // ignore properties that throw an exception when accessed
            options.IgnoreMembersThatThrow();
            options.IgnoreMembersThatThrow<NotImplementedException>();
        })
        .Validate(...);
    
  • Ignoring null/default values

    InlineSnapshot
        .WithSerializer(options => options.DefaultIgnoreCondition = HumanReadableIgnoreCondition.WhenWritingDefault)
        .Validate(...);
    

Diff tool

When a snapshot is updated, a diff tool is used to compare the expected value and the new value. By default, it uses one of the following tools

  • The diff tool configured by the DiffEngine_Tool environment variable
  • The merge tool from the local git configuration
  • The diff tool from the local git configuration
  • The diff tool from the current IDE (support VS Code, VS, Rider)
  • The first available diff tool (rely on DiffEngine)

You can disable the diff tool by setting the DiffEngine_Disabled environment variable.

Using helper methods

If you want to use helper methods before calling Validate(), you need to decorate the methods with [InlineSnapshotAssertion] and use the [CallerFilePath] and [CallerLineNumber] attribute.

var instance = new { FirstName = "Gérald", LastName = "Barré" };
Helper(instance, ""); // This string will be updated

[InlineSnapshotAssertion(nameof(expected))] // name of the parameter that contains the snapshot
static void Helper(object data, string expected, [CallerFilePath] string filePath = null, [CallerLineNumber] int lineNumber = -1)
{
    InlineSnapshot
        .WithSerializer(options => options.ScrubValue<string>())
        .Validate(data, expected, filePath, lineNumber);
}

Scrubbing

Some data are not deterministic and should not be part of the snapshot. You can scrub the data at two locations. First, you can scrub the data during serialization. You have access to the actual values which can be useful. Second, you can scrub the data after serialization.

var data = new string[] { "a", "a", "b" };
InlineSnapshot
    .WithSerializer(options => options.ScrubValue<string>())
    .Validate(data, """
        - String_0
        - String_0
        - String_1
    """);
var data = new string[] { "a", "A", "b" };
InlineSnapshot
    .WithSerializer(options => options.ScrubValue<string>(StringComparer.OrdinalIgnoreCase))
    .Validate(data, """
        - String_0
        - String_0
        - String_1
    """);
var data = new string[] { "a", "A", "b" };
InlineSnapshot
    .WithSerializer(options => options.ScrubValue<string>((value, index) => $"{value}_{index}", StringComparer.OrdinalIgnoreCase))
    .Validate(data, """
        - a_0
        - a_0
        - b_1
    """);
var data = new Guid[] { Guid.NewGuid(), Guid.NewGuid(), Guid.Empty };
InlineSnapshot
    .WithSerializer(options => options.ScrubGuid())
    .Validate(data, """
        - 00000000-0000-0000-0000-000000000001
        - 00000000-0000-0000-0000-000000000002
        - 00000000-0000-0000-0000-000000000000
    """);
var now = DateTime.UtcNow;
var data = now.AddSeconds(10);
InlineSnapshot
    .WithSerializer(options => options.UseRelativeDateTime(now))
    .Validate(data, "00:00:10"); // TimeSpan relative to the now variable
InlineSnapshot
    .WithSettings(settings => settings.ScrubLines(line => line.Contains("dummy")))
    .Validate("abc\ndummy", "abc");
InlineSnapshot
    .WithSettings(settings => settings.ScrubLinesContaining("dummy"))
    .Validate("abc\ndummy", "abc");
InlineSnapshot
    .WithSettings(settings => settings.ScrubLinesMatching("d.*y"))
    .Validate("abc\ndummy", "abc");
InlineSnapshot
    .WithSettings(settings => settings.ScrubLinesWithReplace(line => line.Replace("abc", "123")))
    .Validate("abcdef", "123def");

Invisible characters

If spaces or new lines are important, you can display them as visible characters.

InlineSnapshot
    .WithSerializer(options => options.ShowInvisibleCharactersInValues = true)
    .Validate("line 1\r\nline\t2", """
        line␠1␍␊
        line␉2
        """);

String formats

By default, the snapshot can use string, verbatim string, or raw string. It uses the information from the PDB file to determine which C# features are available. You can override the default behavior by setting the CSharpStringFormat property.

InlineSnapshot
    .WithSerializer(options => options.AllowedStringFormats = CSharpStringFormats.Quoted | CSharpStringFormats.Verbatim | CSharpStringFormats.Raw)
    .Validate(...);

You can also change the indentation of raw strings:

  • CSharpStringFormats.Raw: Same indentation as the calling method
  • CSharpStringFormats.LeftAlignedRaw: Align the raw string to the left (first column)
InlineSnapshot
    .WithSerializer(options => options.AllowedStringFormats = CSharpStringFormats.Raw)
    .Validate(new object(), """
        {}
        """);
InlineSnapshot
    .WithSerializer(options => options.AllowedStringFormats = CSharpStringFormats.LeftAlignedRaw)
    .Validate(new object(), """
{}
""");

You can also change the indentation, end of line, and the encoding of the file if the default behavior does not suit your needs.

InlineSnapshot
    .WithSerializer(options => options.CSharpStringFormat = new CSharpStringFormat
    {
        Indentation = "    ",
        EndOfLine = "\r\n",
        FileEncoding = Encoding.UTF8,
    })
    .Validate(...);

CI environment

When running in a CI environment, the snapshot is never updated. To detect CI environment, the library uses the environment variables created by the major CI tools (GitHub Actions, Azure Pipelines, TeamCity etc.). You can disable this behavior by setting AutoDetectContinuousEnvironment to false.

InlineSnapshot
    .WithSettings(settings => settings.AutoDetectContinuousEnvironment = false)
    .Validate(...);

You can also set the strategy to SnapshotUpdateStrategy.Disallow to disable updating snapshots.

InlineSnapshot
    .WithSettings(settings => settings.SnapshotUpdateStrategy = SnapshotUpdateStrategy.Disallow)
    .Validate(...);

Snapshot update strategies

  • SnapshotUpdateStrategy.Overwrite: Overwrite the snapshot with the new value
  • SnapshotUpdateStrategy.OverwriteWithoutFailure: Overwrite the snapshot with the new value without failing the test
  • SnapshotUpdateStrategy.MergeTool: Use a merge tool to compare the snapshot with the new value
  • SnapshotUpdateStrategy.MergeToolSync: Use a merge tool to compare the snapshot with the new value and wait for the merge tool to close
  • SnapshotUpdateStrategy.Disallow: Do not update the snapshot

Recreate the snapshots

You can force the update of all snapshots by setting the InlineSnapshotSettings.ForceUpdateSnapshots property to true and setting the update strategy to OverwriteWithoutFailure.

InlineSnapshotSettings.Default = InlineSnapshotSettings.Default with
{
    ForceUpdateSnapshots = true, // Override the snapshot even if the value matches the expected value
    SnapshotUpdateStrategy = SnapshotUpdateStrategy.OverwriteWithoutFailure,
};

Examples

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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 Framework net472 is compatible.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Meziantou.Framework.InlineSnapshotTesting:

Package Downloads
FunFair.Test.Common

FunFair Common Test Infrastructure for building xUnit tests on top of.

Meziantou.Framework.InlineSnapshotTesting.Serializers.Argon

Serializer based on Argon for Meziantou.Framework.InlineSnapshotTesting

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.0 1,618 10/28/2024
3.1.1 346 10/27/2024
3.1.0 89 10/27/2024
3.0.11 1,076 10/20/2024
3.0.10 1,992 10/19/2024
3.0.9 536 10/18/2024
3.0.8 477 9/23/2024
3.0.7 5,773 8/1/2024
3.0.6 79 7/31/2024
3.0.5 2,997 6/24/2024
3.0.4 118 6/24/2024
3.0.3 89 6/24/2024
3.0.1 7,347 3/29/2024
3.0.0 13,563 1/6/2024
2.0.2 1,051 1/3/2024
2.0.1 2,514 12/29/2023
2.0.0 5,182 12/15/2023
1.0.28 2,923 12/6/2023
1.0.27 227 11/15/2023
1.0.26 199 9/29/2023
1.0.25 140 9/29/2023
1.0.24 313 7/22/2023
1.0.23 187 7/18/2023
1.0.22 180 7/10/2023
1.0.20 152 7/10/2023
1.0.19 362 5/31/2023
1.0.17 156 5/31/2023
1.0.16 151 5/30/2023
1.0.15 166 5/30/2023
1.0.14 148 5/27/2023
1.0.13 216 5/25/2023
1.0.12 156 5/25/2023
1.0.11 183 5/24/2023
1.0.9 219 4/28/2023
1.0.8 183 4/27/2023
1.0.7 176 4/25/2023
1.0.6 186 4/21/2023
1.0.5 205 4/12/2023
1.0.4 203 4/1/2023
1.0.3 241 3/24/2023
1.0.2 221 3/21/2023
1.0.1 218 3/19/2023
1.0.0 316 3/13/2023