summaryrefslogtreecommitdiff
path: root/src/test/scala/cc/spray/json/LiftedFormatsSpec.scala
blob: f98e2d50c2ee9589862db69df09d18ffcf8b221f (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
package cc.spray.json

import org.specs2.mutable._
import cc.spray.json.DefaultJsonProtocol._

/**
 * User: dirk
 * Date: 31-08-11
 * Time: 10:01
 */

class LiftedFormatsSpec extends Specification {

  case class Container[A](obj: Option[A])

  implicit def containerWriter[T](implicit writer: JsonWriter[T]) = new JsonWriter[Container[T]] {
    import LiftedFormats.liftJsonWriter
    def write(obj: Container[T]): JsValue = JsObject(JsField("content", obj.obj.toJson))
  }

  implicit def containerReader[T](implicit reader: JsonReader[T]) = new JsonReader[Container[T]] {
    import LiftedFormats.liftJsonReader
    def read(value: JsValue): Container[T] = {
      value match {
        case JsObject(JsField("content", obj: JsValue) :: Nil) => Container(Some(reader.read(obj)))
        case _ => throw new DeserializationException("Unexpected format: " + value.toString)
      }
    }
  }

  val obj = Container(Some(Container(Some(List(1, 2, 3)))))

  "The liftJsonWriter" should {
    "convert a Container[Container[List[Int]]] to JsValue and back" in {
      val r = obj.toJson
      r.fromJson[Container[Container[List[Int]]]]
      ok
    }
  }
}