mirror of
https://github.com/json-iterator/go.git
synced 2025-03-23 21:09:11 +02:00
test reading into custom interface
This commit is contained in:
parent
f1c4dbde29
commit
ce1a1f1e98
@ -5,6 +5,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
"errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -345,7 +346,11 @@ func decoderOfType(typ reflect.Type) (Decoder, error) {
|
|||||||
case reflect.Bool:
|
case reflect.Bool:
|
||||||
return &boolCodec{}, nil
|
return &boolCodec{}, nil
|
||||||
case reflect.Interface:
|
case reflect.Interface:
|
||||||
return &interfaceCodec{}, nil
|
if typ.NumMethod() == 0 {
|
||||||
|
return &interfaceCodec{}, nil
|
||||||
|
} else {
|
||||||
|
return nil, errors.New("unsupportd type: " + typ.String())
|
||||||
|
}
|
||||||
case reflect.Struct:
|
case reflect.Struct:
|
||||||
return prefix(fmt.Sprintf("[%s]", typeName)).addToDecoder(decoderOfStruct(typ))
|
return prefix(fmt.Sprintf("[%s]", typeName)).addToDecoder(decoderOfStruct(typ))
|
||||||
case reflect.Slice:
|
case reflect.Slice:
|
||||||
|
@ -3,6 +3,7 @@ package jsoniter
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_write_array_of_interface(t *testing.T) {
|
func Test_write_array_of_interface(t *testing.T) {
|
||||||
@ -22,11 +23,20 @@ func Test_write_map_of_interface(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type MyInterface interface {
|
type MyInterface interface {
|
||||||
|
Hello() string
|
||||||
|
}
|
||||||
|
|
||||||
|
type MyString string
|
||||||
|
|
||||||
|
func (ms MyString) Hello() string {
|
||||||
|
return string(ms)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_write_map_of_custom_interface(t *testing.T) {
|
func Test_write_map_of_custom_interface(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
val := map[string]MyInterface{"hello":"world"}
|
myStr := MyString("world")
|
||||||
|
should.Equal("world", myStr.Hello())
|
||||||
|
val := map[string]MyInterface{"hello":myStr}
|
||||||
str, err := MarshalToString(val)
|
str, err := MarshalToString(val)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`{"hello":"world"}`, str)
|
should.Equal(`{"hello":"world"}`, str)
|
||||||
@ -39,4 +49,23 @@ func Test_write_interface(t *testing.T) {
|
|||||||
str, err := MarshalToString(val)
|
str, err := MarshalToString(val)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`"hello"`, str)
|
should.Equal(`"hello"`, str)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_read_interface(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
var val interface{}
|
||||||
|
err := UnmarshalFromString(`"hello"`, &val)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal("hello", val)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_read_custom_interface(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
var val MyInterface
|
||||||
|
RegisterTypeDecoder("jsoniter.MyInterface", func(ptr unsafe.Pointer, iter *Iterator) {
|
||||||
|
*((*MyInterface)(ptr)) = MyString(iter.ReadString())
|
||||||
|
})
|
||||||
|
err := UnmarshalFromString(`"hello"`, &val)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal("hello", val.Hello())
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user