aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/ProductTypeFormats.scala
blob: 48f1bf1923504fa4d1a4ce947ee0fdf73a10f83b (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
53
54
package xyz.driver.json

import spray.json._

import org.scalatest._

class ProductTypeFormats
    extends FlatSpec
    with FormatTests
    with DerivedFormats
    with DefaultJsonProtocol {

  case class A()
  case class B(x: Int, b: String, mp: Map[String, Int])
  case class C(b: B)
  case object D
  case class E(d: D.type)
  case class F(x: Int)

  "No-parameter product" should behave like checkCoherence(A(), "{}")

  "Simple parameter product" should behave like checkCoherence(
    B(42, "Hello World", Map("a" -> 1, "b" -> -1024)),
    """{ "x": 42, "b": "Hello World", "mp": { "a": 1, "b": -1024 } }"""
  )

  "Nested parameter product" should behave like checkCoherence(
    C(B(42, "Hello World", Map("a" -> 1, "b" -> -1024))),
    """{"b" :{ "x": 42, "b": "Hello World", "mp": { "a": 1, "b": -1024 } } }"""
  )

  "Case object" should behave like checkCoherence(
    D,
    "{}"
  )

  "Case object as parameter" should behave like checkCoherence(
    E(D),
    """{"d":{}}"""
  )

  // custom format for F, that inverts the value of parameter x
  implicit val fFormat: RootJsonFormat[F] = new RootJsonFormat[F] {
    override def write(f: F): JsValue = JsObject("x" -> JsNumber(-f.x))
    override def read(js: JsValue): F =
      F(-js.asJsObject.fields("x").convertTo[Int])
  }

  "Overriding with a custom format" should behave like checkCoherence(
    F(2),
    """{"x":-2}"""
  )

}