From 288080c58c5aa31ad978e8a5840a25c28c02526a Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 5 Feb 2022 09:34:39 -0600 Subject: [PATCH] Add test documenting typed nil json encoding Encoded into json null not SQL NULL. --- pgtype/json_test.go | 2 ++ pgtype/jsonb_test.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pgtype/json_test.go b/pgtype/json_test.go index a255c45a..a1dd63fb 100644 --- a/pgtype/json_test.go +++ b/pgtype/json_test.go @@ -48,6 +48,8 @@ func TestJSONCodec(t *testing.T) { {map[string]interface{}{"foo": "bar"}, new(map[string]interface{}), isExpectedEqMap(map[string]interface{}{"foo": "bar"})}, {jsonStruct{Name: "Adam", Age: 10}, new(jsonStruct), isExpectedEq(jsonStruct{Name: "Adam", Age: 10})}, {nil, new(*jsonStruct), isExpectedEq((*jsonStruct)(nil))}, + {map[string]interface{}(nil), new(string), isExpectedEq(`null`)}, + {map[string]interface{}(nil), new([]byte), isExpectedEqBytes([]byte("null"))}, {[]byte(nil), new([]byte), isExpectedEqBytes([]byte(nil))}, {nil, new([]byte), isExpectedEqBytes([]byte(nil))}, }) diff --git a/pgtype/jsonb_test.go b/pgtype/jsonb_test.go index 981ec28e..fa5ea20e 100644 --- a/pgtype/jsonb_test.go +++ b/pgtype/jsonb_test.go @@ -21,6 +21,8 @@ func TestJSONBTranscode(t *testing.T) { {map[string]interface{}{"foo": "bar"}, new(map[string]interface{}), isExpectedEqMap(map[string]interface{}{"foo": "bar"})}, {jsonStruct{Name: "Adam", Age: 10}, new(jsonStruct), isExpectedEq(jsonStruct{Name: "Adam", Age: 10})}, {nil, new(*jsonStruct), isExpectedEq((*jsonStruct)(nil))}, + {map[string]interface{}(nil), new(string), isExpectedEq(`null`)}, + {map[string]interface{}(nil), new([]byte), isExpectedEqBytes([]byte("null"))}, {[]byte(nil), new([]byte), isExpectedEqBytes([]byte(nil))}, {nil, new([]byte), isExpectedEqBytes([]byte(nil))}, })