MatchApproved

Based on the ApprovalTest.Net, Shouldly has ShouldMatchApproved() to do approval based testing. The main goal of Shouldly's approval testing is for it to be simple, intuitive and give great error messages.

To configure failed approvals to display a comparison of the approved and failed files, install the Shouldly.DiffEngine nuget package and confgure it as follows:

// In your test setup
ShouldlyConfiguration.ShouldMatchApprovedDefaults.ConfigureDiffEngine();

Approved File does not exist

When you first run a ShouldMatchApproved test, you will be presented with a diff viewer and a failing test.

var simpsonsQuote = "Hi Super Nintendo Chalmers";
simpsonsQuote.ShouldMatchApproved();

snippet source | anchor

Exception

To approve the changes run this command:
copy /Y "C:\PathToCode\shouldly\src\DocumentationExamples\ShouldMatchApprovedExamples.ApprovedFileDoesNotExist.received.txt" "C:\PathToCode\shouldly\src\DocumentationExamples\ShouldMatchApprovedExamples.ApprovedFileDoesNotExist.approved.txt"
----------------------------

Approval file C:\PathToCode\shouldly\src\DocumentationExamples\ShouldMatchApprovedExamples.ApprovedFileDoesNotExist.approved.txt
    does not exist

Screenshot

Initial diff.png

Approved File does not match received

After you have approved the text, when it changes you get a different experience.

snippet source | anchor

Exception

Screenshot

Changed diff.png

Options and customisation

While the defaults should work fine, often you need to customise things easily. ApprovalTests is highly configurable but the configuration is not always discoverable. Shouldly wants to make configuration simple and discoverable. This section covers the local customisations availble for a single ShouldMatchApproved call.

Defaults

The first thing to note is that by default Shouldly ignores line endings. This saves painful failures on the build server when git checks out the approved files with rather than \r which the received file has. You can opt out of this behaviour for a single call, or globally. For global defaults see the Configuration section.

Usage

Where OPTION can be one of the following methods.

DoNotIgnoreLineEndings

Tells shouldly to use a line ending sensitive comparison.

WithStringCompareOptions

Sets the string comparison options

WithDiscriminator

By default the approved and received files are named ${MethodName}.approved.txt, WithDiscriminator allows you to discriminate multiple files, useful for data driven tests which can have multiple executions of a single method. For example

Will result in a approved file with the name Simpsons.Bart.approved.txt

Diff

Opens the diff viewer if the files do not match. Requires the Shouldly.DiffEngine package to be installed.

NoDiff

Prevents the diff viewer from opening up. Doing this you can use Shouldly's error messages to verify the changes then run the command in the exception message to approve the changes.

WithFileExtension

Override the file extension of the approved/received files. The default is .txt.

SubFolder

Put the approved/received files into a sub-directory

UseCallerLocation

By default shouldly will walk the stacktrace to find the first non-shouldly method (not including anonymous methods and compiler generated stuff like the async state machine) and use that method for the approval filename. I.e a test named MyTest will result in a received filename of MyTest.received.txt.

This setting tells shouldly to walk one more frame, this is really handy when you have created a utility function which calls ShouldMatchApproved.

LocateTestMethodUsingAttribute

If you want to locate your test method using an attribute that is easy too!

WithScrubber

Scrubbers allow you to remove dynamic content, such as the current date

Will turn Today is 01/01/2016 into Today is <date> in the received file.

Configuration

Changing default options

All of the instance based configuration can be changed globally through ShouldlyConfiguration.ShouldMatchApprovedDefaults. For example to make the default behaviour be line ending sensitive you can just run this before any tests execute ShouldlyConfiguration.ShouldMatchApprovedDefaults.DoNotIgnoreLineEndings()

Diff tools

Shouldly.DiffEngine uses DiffEngine for launching diff tools. Use the following to configure enable the diff viewer when not disabled within DiffEngine:

Last updated