aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/common/utils/DiffUtils.scala
blob: 06199bb920bf6247e6aa2013a244bc53780869ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package xyz.driver.common.utils

import java.net.URI
import java.time.{LocalDate, LocalDateTime}

import ai.x.diff._
import org.scalatest.Assertions
import xyz.driver.common.domain.PasswordHash

import scala.io.AnsiColor

trait DiffUtils {

  this: Assertions =>

  def assertIdentical[T: DiffShow](left: T, right: T): Unit = {
    val diff = DiffShow.diff(left, right)
    assert(diff.isIdentical, s"\n${AnsiColor.RESET}$diff") // reset red color
  }

  implicit def localTimeDiffShow: DiffShow[LocalDateTime] = new DiffShow[LocalDateTime] {
    def show(x: LocalDateTime): String = s"LocalTime($x)"
    def diff(left: LocalDateTime, right: LocalDateTime): Comparison = {
      if (left.isEqual(right)) Identical(show(left))
      else Different(showChange(left, right))
    }
  }

  implicit def localDateDiffShow: DiffShow[LocalDate] = new DiffShow[LocalDate] {
    def show(x: LocalDate): String = s"LocalDate($x)"
    def diff(left: LocalDate, right: LocalDate): Comparison = {
      if (left.isEqual(right)) Identical(show(left))
      else Different(showChange(left, right))
    }
  }

  implicit def urlDiffShow: DiffShow[URI] = new DiffShow[URI] {
    def show(x: URI): String = s"URI($x)"
    def diff(left: URI, right: URI): Comparison = {
      if (left.equals(right)) Identical(show(left))
      else Different(showChange(left, right))
    }
  }

  implicit def passwordHashDiffShow: DiffShow[PasswordHash] = new DiffShow[PasswordHash] {
    def show(x: PasswordHash): String = s"PasswordHash($x)"
    def diff(left: PasswordHash, right: PasswordHash): Comparison = {
      if (left.equals(right)) Identical(show(left))
      else Different(showChange(left, right))
    }
  }
}