Skip to content

Commit

Permalink
Fix Json codec of maps with lazy key schema (#586)
Browse files Browse the repository at this point in the history
* Fix Json codec of maps with lazy key schema

* readme
  • Loading branch information
vigoo authored Jul 21, 2023
1 parent 651ad37 commit 26bb289
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ _ZIO Schema_ is used by a growing number of ZIO libraries, including _ZIO Flow_,
In order to use this library, we need to add the following lines in our `build.sbt` file:

```scala
libraryDependencies += "dev.zio" %% "zio-schema" % "0.4.11"
libraryDependencies += "dev.zio" %% "zio-schema-bson" % "0.4.11"
libraryDependencies += "dev.zio" %% "zio-schema-json" % "0.4.11"
libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "0.4.11"
libraryDependencies += "dev.zio" %% "zio-schema" % "0.4.12"
libraryDependencies += "dev.zio" %% "zio-schema-bson" % "0.4.12"
libraryDependencies += "dev.zio" %% "zio-schema-json" % "0.4.12"
libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "0.4.12"

// Required for automatic generic derivation of schemas
libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "0.4.11",
libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "0.4.12",
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ object JsonCodec {
case Schema.Primitive(StandardType.StringType, _) => Option(JsonFieldEncoder.string)
case Schema.Primitive(StandardType.LongType, _) => Option(JsonFieldEncoder.long)
case Schema.Primitive(StandardType.IntType, _) => Option(JsonFieldEncoder.int)
case Schema.Lazy(inner) => jsonFieldEncoder(inner())
case _ => None
}

Expand Down Expand Up @@ -598,6 +599,7 @@ object JsonCodec {
case Schema.Primitive(StandardType.StringType, _) => Option(JsonFieldDecoder.string)
case Schema.Primitive(StandardType.LongType, _) => Option(JsonFieldDecoder.long)
case Schema.Primitive(StandardType.IntType, _) => Option(JsonFieldDecoder.int)
case Schema.Lazy(inner) => jsonFieldDecoder(inner())
case _ => None
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@ object JsonCodecSpec extends ZIOSpecDefault {
"""{"0":{"first":0,"second":true},"1":{"first":1,"second":false}}"""
)
)
},
test("of simple keys and values where the key's schema is lazy") {
assertEncodes(
Schema.map[Int, Value](Schema.defer(Schema[Int]), Schema[Value]),
Map(0 -> Value(0, true), 1 -> Value(1, false)),
charSequenceToByteChunk(
"""{"0":{"first":0,"second":true},"1":{"first":1,"second":false}}"""
)
)
}
),
suite("Set")(
Expand Down Expand Up @@ -469,6 +478,15 @@ object JsonCodecSpec extends ZIOSpecDefault {
"""{"0":{"first":0,"second":true},"1":{"first":1,"second":false}}"""
)
)
},
test("of simple keys and values where the key schema is lazy") {
assertDecodes(
Schema.map[Int, Value](Schema.defer(Schema[Int]), Schema[Value]),
Map(0 -> Value(0, true), 1 -> Value(1, false)),
charSequenceToByteChunk(
"""{"0":{"first":0,"second":true},"1":{"first":1,"second":false}}"""
)
)
}
)
)
Expand Down

0 comments on commit 26bb289

Please sign in to comment.