nadavwr / diffx

Pretty diffs for scala case classes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

diffx

Build Status Maven Central Gitter Mergify Status Scala Steward badge

Pretty diffs for case classes.

The library is published for Scala 2.12 and 2.13.

Table of contents

Goals of the project

  • human-readable case class diffs
  • support for popular testing frameworks
  • OTB collections support
  • OTB non-case class support
  • smaller compilation overhead compared to shapless based solutions (thanks to magnolia <3)
  • programmer friendly and type safe api for partial ignore

Scalatest integration

To use with scalatest, add the following dependency:

"com.softwaremill.diffx" %% "diffx-scalatest" % "0.3.12"

Then, extend the com.softwaremill.diffx.scalatest.DiffMatcher trait or import com.softwaremill.diffx.scalatest.DiffMatcher._. After that you will be able to use syntax such as:

left should matchTo(right)

Giving you nice error messages:

example

Specs2 integration

To use with specs2, add the following dependency:

"com.softwaremill.diffx" %% "diffx-specs2" % "0.3.12"

Then, extend the com.softwaremill.diffx.specs2.DiffMatcher trait or import com.softwaremill.diffx.specs2.DiffMatcher._. After that you will be able to use syntax such as:

left must matchTo(right)

Using directly

Add the following dependency:

"com.softwaremill.diffx" %% "diffx-core" % "0.3.12"

Then call:

import com.softwaremill.diffx.Diff

Diff[T].apply(o1, o2)

Customization

If you'd like to implement custom matching logic for the given type, create an implicit Diff instance for that type, and make sure it's in scope when any any Diff instances depending on that type are created.

Ignoring

Fields can be excluded from comparision by calling the ignore method on the Diff instance. Since Diff instances are immutable, the ignore method creates a copy of the instance with modified logic. You can use this instance explicitly. If you still would like to use it implicitly, you first need to summon the instance of the Diff typeclass using the Derived typeclass wrapper: Derived[Diff[Person]]. Thanks to that trick, later you will be able to put your modified instance of the Diff typeclass into the implicit scope. The whole process looks as follows:

implicit modifiedDiff: Diff[Person] = Derived[Diff[Person]].ignore(_.name)

Tagging support

To use with softwaremill-tagging library, add the following dependency:

"com.softwaremill.diffx" %% "diffx-tagging" % "0.3.12"

And then extend com.softwaremill.diffx.tagging.DiffTaggingSupport trait or import com.softwaremill.diffx.tagging.DiffTaggingSupport._

Diffx should be able to work with any other tagging library. I decided to create this module in order to check if any future changes won't break this integration.

If you want to use diffx with other tagging library you need to provide a way for creating Diff type class for tagged types:

implicit def taggedDiff[T: Diff, U]: Derived[Diff[T @@ U]] = Derived(Diff[T].contramap[T @@ U](identity))

Similar projects

There is a number of similar projects from which diffx draws inspiration.

Below is a list of some of them, which I am aware of, with their main differences:

  • xotai/diff - based on shapeless, seems not to be activly developed anymore
  • ratatool-diffy - the main purpose is to compare large data sets stored on gs or hdfs

Commercial Support

We offer commercial support for diffx and related technologies, as well as development services. Contact us to learn more about our offer!

Copyright

Copyright (C) 2019 SoftwareMill https://softwaremill.com.

About

Pretty diffs for scala case classes

License:Apache License 2.0


Languages

Language:Scala 99.5%Language:Shell 0.5%