summaryrefslogtreecommitdiff
path: root/src/test/scala/cc/spray/json/ReadmeSpec.scala
blob: b1c66744e669d17b41e07ae37c62b1ec2a2fec44 (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
55
56
57
58
59
60
61
62
63
64
65
66
package cc.spray.json

import org.specs2.mutable._

class ReadmeSpec extends Specification {

  "The Usage snippets" should {
    "behave as expected" in {
      import DefaultJsonProtocol._
      
      val json = """{ "some": "JSON source" }""" 
      val jsonAst = JsonParser(json)
      jsonAst mustEqual JsObject(JsField("some", JsString("JSON source")))
      
      val json2 = PrettyPrinter(jsonAst)
      json2 mustEqual
              """{
                |  "some": "JSON source"
                |}""".stripMargin
      
      val jsonAst2 = List(1, 2, 3).toJson
      jsonAst2 mustEqual JsArray(JsNumber(1), JsNumber(2), JsNumber(3))
    }
  }
  
  case class Color(name: String, red: Int, green: Int, blue: Int)
  
  "The case class example" should {
    "behave as expected" in {
      object MyJsonProtocol extends DefaultJsonProtocol {
        implicit val colorFormat = jsonFormat(Color, "name", "red", "green", "blue")
      }      
      import MyJsonProtocol._
      
      val json = Color("CadetBlue", 95, 158, 160).toJson
      val color = json.convertTo[Color]
      
      color mustEqual Color("CadetBlue", 95, 158, 160)
    }
  }
  
  "The non case class example" should {
    "behave as expected" in {
      object MyJsonProtocol extends DefaultJsonProtocol {
        implicit object ColorJsonFormat extends JsonFormat[Color] {
          def write(c: Color) = {
            JsArray(JsString(c.name), JsNumber(c.red), JsNumber(c.green), JsNumber(c.blue))
          }
          def read(value: JsValue) = value match {
            case JsArray(JsString(name) :: JsNumber(red) :: JsNumber(green) :: JsNumber(blue) :: Nil) => {
              new Color(name, red.toInt, green.toInt, blue.toInt)
            }
            case _ => throw new DeserializationException("Color expected")
          }
        }
      }      
      import MyJsonProtocol._
      
      val json = Color("CadetBlue", 95, 158, 160).toJson
      val color = json.convertTo[Color]
      
      color mustEqual Color("CadetBlue", 95, 158, 160)
    }
  }
  
}