mirror of
https://github.com/json-iterator/go.git
synced 2025-04-01 21:24:21 +02:00
Merge pull request #169 from toffaletti/fix-nil-interface
Fix handling of nil empty interface
This commit is contained in:
commit
eef35e549b
@ -373,7 +373,8 @@ func (codec *emptyInterfaceCodec) EncodeInterface(val interface{}, stream *Strea
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (codec *emptyInterfaceCodec) IsEmpty(ptr unsafe.Pointer) bool {
|
func (codec *emptyInterfaceCodec) IsEmpty(ptr unsafe.Pointer) bool {
|
||||||
return ptr == nil
|
emptyInterface := (*emptyInterface)(ptr)
|
||||||
|
return emptyInterface.typ == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type nonEmptyInterfaceCodec struct {
|
type nonEmptyInterfaceCodec struct {
|
||||||
|
@ -351,3 +351,22 @@ func Test_nil_out_null_interface(t *testing.T) {
|
|||||||
should.Equal(nil, err)
|
should.Equal(nil, err)
|
||||||
should.Equal(nil, obj2.Field)
|
should.Equal(nil, obj2.Field)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_omitempty_nil_interface(t *testing.T) {
|
||||||
|
type TestData struct {
|
||||||
|
Field interface{} `json:"field,omitempty"`
|
||||||
|
}
|
||||||
|
should := require.New(t)
|
||||||
|
|
||||||
|
obj := TestData{
|
||||||
|
Field: nil,
|
||||||
|
}
|
||||||
|
|
||||||
|
js, err := json.Marshal(obj)
|
||||||
|
should.Equal(nil, err)
|
||||||
|
should.Equal("{}", string(js))
|
||||||
|
|
||||||
|
str, err := MarshalToString(obj)
|
||||||
|
should.Equal(nil, err)
|
||||||
|
should.Equal(string(js), str)
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user