summaryrefslogtreecommitdiff
path: root/src/test/scala
diff options
context:
space:
mode:
authorMathias <mathias@spray.io>2015-05-06 12:22:38 +0200
committerMathias <mathias@spray.io>2015-05-06 12:41:50 +0200
commit5843587ac6472c067aa08347d43f68b78857b053 (patch)
tree04aa8ef9d0d88a035c3b5202b0175dafb25de8cd /src/test/scala
parent36a845cb6b889b7255021edf1c891c8c5069b923 (diff)
downloadspray-json-5843587ac6472c067aa08347d43f68b78857b053.tar.gz
spray-json-5843587ac6472c067aa08347d43f68b78857b053.tar.bz2
spray-json-5843587ac6472c067aa08347d43f68b78857b053.zip
Fix automatic field name discovery for member names with mangled prefix, closes #142
Diffstat (limited to 'src/test/scala')
-rw-r--r--src/test/scala/spray/json/ProductFormatsSpec.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/scala/spray/json/ProductFormatsSpec.scala b/src/test/scala/spray/json/ProductFormatsSpec.scala
index ebfcec9..c218a9d 100644
--- a/src/test/scala/spray/json/ProductFormatsSpec.scala
+++ b/src/test/scala/spray/json/ProductFormatsSpec.scala
@@ -29,7 +29,7 @@ class ProductFormatsSpec extends Specification {
}
@SerialVersionUID(1L) // SerialVersionUID adds a static field to the case class
case class TestStatic(a: Int, b: Option[Double])
- case class TestMangled(`foo-bar!`: Int, `User ID`: String, `üt$bavef$u56úrógép`: Boolean)
+ case class TestMangled(`foo-bar!`: Int, `User ID`: String, `üt$bavef$u56úrógép`: Boolean, `-x-`: Int)
trait TestProtocol {
this: DefaultJsonProtocol =>
@@ -39,7 +39,7 @@ class ProductFormatsSpec extends Specification {
implicit def test4Format = jsonFormat1(Test4)
implicit def testTransientFormat = jsonFormat2(TestTransient)
implicit def testStaticFormat = jsonFormat2(TestStatic)
- implicit def testMangledFormat = jsonFormat3(TestMangled)
+ implicit def testMangledFormat = jsonFormat4(TestMangled)
}
object TestProtocol1 extends DefaultJsonProtocol with TestProtocol
object TestProtocol2 extends DefaultJsonProtocol with TestProtocol with NullOptions
@@ -198,12 +198,12 @@ class ProductFormatsSpec extends Specification {
"A JsonFormat created with `jsonFormat`, for a case class with mangled-name members," should {
import TestProtocol1._
- val json = """{"foo-bar!":42,"User ID":"Karl","üt$bavef$u56úrógép":true}"""
+ val json = """{"foo-bar!":42,"User ID":"Karl","üt$bavef$u56úrógép":true,"-x-":26}"""
"produce the correct JSON" in {
- TestMangled(42, "Karl", true).toJson.compactPrint === json
+ TestMangled(42, "Karl", true, 26).toJson.compactPrint === json
}
"convert a JsObject to the respective case class instance" in {
- json.parseJson.convertTo[TestMangled] === TestMangled(42, "Karl", true)
+ json.parseJson.convertTo[TestMangled] === TestMangled(42, "Karl", true, 26)
}
}
}