/visual-assert

Assertion methods that generate an html file with the differences highlighting the additions and deletions. Useful for comparing large strings or files. Available on Java and .NET.

Primary LanguageJavaMIT LicenseMIT

Status Maven Central Nuget

visual-assert

Assertion methods that generate an html file with the differences highlighting the additions and deletions. Useful for comparing large strings or files. Available on Java and .NET platforms.

  • From Java include the visual-assert dependency as indicated in the Maven Central Repository
  • From .NET include the VisualAssert package in you project as indicated in NuGet

Usage

From Java, instantiate the VisualAssert class and perform an assert:

VisualAssert va = new VisualAssert();
va.assertEquals("abc def ghi\nmno pqr stu", "abc DEF ghi\nother line\nmno pqr stu");

This will produce an html file in the target directory that highlights the differences (additions in green, deletions in red):

diff-example

The assert statement is overloaded to specify an additional message and the name of the differences file (when the diff file name is not specified, a file diff-n.html is automatically generated, where n is an unique sequence number):

va.assertEquals(String expected, String actual, String message)
va.assertEquals(String expected, String actual, String message, String fileName)

From .NET, everything works like Java, only with these differences:

  • Method names are capitalized.
  • The destination folder is reports, located at the level of the project folder.

Specifying a test framework (java only)

By default, when the assertion fails, a java AssertionError is thrown, which does not require any particular test framework. If you want also see the diffs from your developement environment, you can specify a test framework that will raise the assertion failures:

VisualAssert va = new VisualAssert().setFramework(Framework.JUNIT5);

JUnit 3, 4 and 5 are supported. Note that you will get a NoClassDefFoundError exception if the specified framework is not in the classpath.

Soft assertions

Soft assertions do not throw an exception immediately when an assertion fails, but record the assertion message and allow to continue the test and check other assertions.

Using soft assertions

Class SoftVisualAssert implements this type of soft assertions:

  • After a number of calls to assertEquals(), calling assertAll() will throw the exception if at least one previous assertion failed. The message aggregates the messages of all failed assertions.
  • If the soft assert instance is shared by more than one test, assertClear() must be called before each sequence of assertions to reset the stored messages.
  • In addition to assertEquals a fail assertion is provided (the fail message is included as the actual value compared with an empty expected value).

Example:

SoftVisualAssert va = new SoftVisualAssert();
va.assertEquals("abc def ghi\nmno pqr stu", "abc DEF ghi\nother line\nmno pqr stu", "this will fail");
va.assertEquals("abc def ghi\nmno pqr stu", "abc def ghi\nmno pqr stu", "this does not fail")
va.assertAll();

Aggregate differencies

By default, each of the assertions that fail produces an html file with the differences. You can obtain an aggregated view of all failed assertions by using one or both of the following methods:

  • If a framework has been specified using setFramework() (java only) you can see the aggregated differences from your development environment in the same way as with the native assertEquals().
  • If you specify the name of an html file as argument to assertAll(String htmlFile) the aggregated differences can be viewed by opening this file.

Customization

The behaviour of the VisualAssert and SoftVisualAssert instances can be customized by calling a number of setter methods. These methods follow a fluent style, so as, they can be concatenated in a single statement.

  • setReportSubdir(String reportSubdir): Sets the folder where generated files with the differences are stored (default is target).
  • setNormalizeEol(boolean normalizeEol): If set to true, the compared strings are normalized to linux line-endings by removing all CR characters.
  • setSoftDifferences(boolean useSoftDifferences): By default (hard), differences in whitespaces are rendered as whitespace html entities and therefore, always visible in the html ouput. If set to true (soft), some whitespace differences may be hidden from the html output.
  • setBrightColors(boolean useBrightColors): By default, differences are highlighted with pale red and green colors, if set to true the colors are brighter to easily locate small differences.
  • setDiffFileQualifier(String value): When assertions do not specify a diff file name, adds the indicated string to the autogenerated diff file name. Use this setting to get unique files when generating consolidated reports from tests that run in different processes (e.g. when run multiple modules, each in a different GitHub Actions job, set a different qualifier in each module).
  • setDiffFileEnvQualifier(String envVariable): When assertions do not specify a diff file name, adds the value of the indicated environment variable to the autogenerated diff file name. Use this setting to get unique files when generating consolidated reports from tests that run in different processes and share the same codebase (e.g. when run multiple modules, each in a different GitHub Actions job, set the variable GITHUB_JOB in each module). Note: Jobs that run in a matrix strategy share the same job name. In this case the workflow should define an environment variable to differentiate each matrix job.
  • setUseLocalAbsolutePath(boolean useLocalAbsolutePath): If set to true, the link with the differences file will include a file url with the absolute path to the file, useful when running tests from a development environment that allows links in the assertion messages (e.g. MS Visual Studio).
  • setShowExpectedAndActual(boolean showExpectedAndActual): If set to true, the assert message will include the whole content of the exepcted and actual strings that are compared.

The SoftVisualAssert instances have an additional method to customize:

  • setCallStackLength(int length): Sets the number of call stack items that are shown for each failed assertion (default 1). Use a value higher than 1 when the method that actually does the assert is not the test method that should appear in the stack trace to locate the location of the failure.

Publish from a CI environment

To publish the files with differences to Jenkins you can include the following statement in some steop of the project Jenkinsfile:

archiveArtifacts artifacts:'target/*.html', allowEmptyArchive:true

To create an artifact including the files with differences using GitHub Actions, you can include the following step in your workflow:

  - name: Publish test diff files
    if: always()
    uses: actions/upload-artifact@v2
    with:
      name: Diff files
      path: target/*.html

When generating consolidated reports from multiple runs (e.g. JUnit html reports), the failed tests display the name of the diff files, but the files must be browsed separately. To link the diff files directly from the test report, the Github Action https://github.com/javiertuya/junit-report-action has different options to both generate the reports and reprocess them to include the links to the diff files.