Skip to content

Commit

Permalink
Merge branch 'main' into zio-schema-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
khajavi committed Aug 2, 2023
2 parents 9325101 + 26bb289 commit ad5a885
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
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 ad5a885

Please sign in to comment.