1
0
mirror of https://github.com/json-iterator/go.git synced 2025-02-01 19:14:29 +02:00
json-iterator/jsoniter_customize_test.go

288 lines
7.1 KiB
Go
Raw Normal View History

2016-12-05 13:20:27 +08:00
package jsoniter
import (
2017-06-06 23:27:00 +08:00
"encoding/json"
"github.com/stretchr/testify/require"
"strconv"
2016-12-05 13:20:27 +08:00
"testing"
"time"
"unsafe"
)
func Test_customize_type_decoder(t *testing.T) {
2017-06-20 08:08:59 +08:00
RegisterTypeDecoderFunc("time.Time", func(ptr unsafe.Pointer, iter *Iterator) {
2016-12-05 13:20:27 +08:00
t, err := time.ParseInLocation("2006-01-02 15:04:05", iter.ReadString(), time.UTC)
if err != nil {
iter.Error = err
return
}
*((*time.Time)(ptr)) = t
})
2017-07-09 16:09:23 +08:00
defer ConfigDefault.(*frozenConfig).cleanDecoders()
2016-12-05 13:20:27 +08:00
val := time.Time{}
err := Unmarshal([]byte(`"2016-12-05 08:43:28"`), &val)
if err != nil {
t.Fatal(err)
}
year, month, day := val.Date()
if year != 2016 || month != 12 || day != 5 {
t.Fatal(val)
}
}
2017-05-05 08:22:19 +08:00
func Test_customize_type_encoder(t *testing.T) {
should := require.New(t)
2017-06-20 08:08:59 +08:00
RegisterTypeEncoderFunc("time.Time", func(ptr unsafe.Pointer, stream *Stream) {
2017-05-05 08:22:19 +08:00
t := *((*time.Time)(ptr))
stream.WriteString(t.UTC().Format("2006-01-02 15:04:05"))
2017-06-20 07:57:23 +08:00
}, nil)
2017-07-09 16:09:23 +08:00
defer ConfigDefault.(*frozenConfig).cleanEncoders()
2017-05-05 08:22:19 +08:00
val := time.Unix(0, 0)
str, err := MarshalToString(val)
should.Nil(err)
should.Equal(`"1970-01-01 00:00:00"`, str)
}
2017-05-06 20:52:36 +08:00
func Test_customize_byte_array_encoder(t *testing.T) {
2017-07-09 16:09:23 +08:00
ConfigDefault.(*frozenConfig).cleanEncoders()
2017-05-06 20:52:36 +08:00
should := require.New(t)
2017-06-20 08:08:59 +08:00
RegisterTypeEncoderFunc("[]uint8", func(ptr unsafe.Pointer, stream *Stream) {
2017-05-06 20:52:36 +08:00
t := *((*[]byte)(ptr))
stream.WriteString(string(t))
2017-06-20 07:57:23 +08:00
}, nil)
2017-07-09 16:09:23 +08:00
defer ConfigDefault.(*frozenConfig).cleanEncoders()
2017-05-06 20:52:36 +08:00
val := []byte("abc")
str, err := MarshalToString(val)
should.Nil(err)
should.Equal(`"abc"`, str)
}
func Test_customize_float_marshal(t *testing.T) {
should := require.New(t)
json := Config{MarshalFloatWith6Digits: true}.Froze()
2017-06-13 17:47:40 +08:00
str, err := json.MarshalToString(float32(1.23456789))
should.Nil(err)
should.Equal("1.234568", str)
}
2016-12-05 13:20:27 +08:00
type Tom struct {
field1 string
}
func Test_customize_field_decoder(t *testing.T) {
2017-06-20 08:08:59 +08:00
RegisterFieldDecoderFunc("jsoniter.Tom", "field1", func(ptr unsafe.Pointer, iter *Iterator) {
2016-12-05 13:20:27 +08:00
*((*string)(ptr)) = strconv.Itoa(iter.ReadInt())
})
2017-07-09 16:09:23 +08:00
defer ConfigDefault.(*frozenConfig).cleanDecoders()
2016-12-05 13:20:27 +08:00
tom := Tom{}
err := Unmarshal([]byte(`{"field1": 100}`), &tom)
if err != nil {
t.Fatal(err)
}
2016-12-12 19:06:33 +08:00
}
type TestObject1 struct {
2016-12-17 17:38:13 +08:00
field1 string
}
type testExtension struct {
DummyExtension
}
func (extension *testExtension) UpdateStructDescriptor(structDescriptor *StructDescriptor) {
if structDescriptor.Type.String() != "jsoniter.TestObject1" {
return
}
2017-06-20 13:33:40 +08:00
binding := structDescriptor.GetField("field1")
binding.Encoder = &funcEncoder{fun: func(ptr unsafe.Pointer, stream *Stream) {
str := *((*string)(ptr))
val, _ := strconv.Atoi(str)
stream.WriteInt(val)
}}
binding.Decoder = &funcDecoder{func(ptr unsafe.Pointer, iter *Iterator) {
*((*string)(ptr)) = strconv.Itoa(iter.ReadInt())
}}
binding.ToNames = []string{"field-1"}
binding.FromNames = []string{"field-1"}
}
func Test_customize_field_by_extension(t *testing.T) {
should := require.New(t)
RegisterExtension(&testExtension{})
obj := TestObject1{}
err := UnmarshalFromString(`{"field-1": 100}`, &obj)
should.Nil(err)
should.Equal("100", obj.field1)
str, err := MarshalToString(obj)
should.Nil(err)
should.Equal(`{"field-1":100}`, str)
}
2017-05-24 09:39:11 +08:00
2017-06-20 17:01:21 +08:00
type timeImplementedMarshaler time.Time
2017-05-24 14:34:00 +08:00
2017-06-20 17:43:47 +08:00
func (obj timeImplementedMarshaler) MarshalJSON() ([]byte, error) {
seconds := time.Time(obj).Unix()
2017-06-20 17:01:21 +08:00
return []byte(strconv.FormatInt(seconds, 10)), nil
2017-05-24 14:34:00 +08:00
}
func Test_marshaler(t *testing.T) {
type TestObject struct {
2017-06-20 17:43:47 +08:00
Field timeImplementedMarshaler
2017-05-24 14:34:00 +08:00
}
should := require.New(t)
2017-06-20 17:01:21 +08:00
val := timeImplementedMarshaler(time.Unix(123, 0))
2017-06-20 17:43:47 +08:00
obj := TestObject{val}
2017-05-24 14:34:00 +08:00
bytes, err := json.Marshal(obj)
should.Nil(err)
2017-06-20 17:01:21 +08:00
should.Equal(`{"Field":123}`, string(bytes))
2017-05-24 14:34:00 +08:00
str, err := MarshalToString(obj)
should.Nil(err)
2017-06-20 17:01:21 +08:00
should.Equal(`{"Field":123}`, str)
2017-05-24 16:04:11 +08:00
}
func Test_marshaler_and_encoder(t *testing.T) {
type TestObject struct {
2017-06-20 17:01:21 +08:00
Field *timeImplementedMarshaler
}
2017-07-09 16:09:23 +08:00
ConfigDefault.(*frozenConfig).cleanEncoders()
should := require.New(t)
2017-06-20 17:01:21 +08:00
RegisterTypeEncoderFunc("jsoniter.timeImplementedMarshaler", func(ptr unsafe.Pointer, stream *Stream) {
stream.WriteString("hello from encoder")
2017-06-20 07:57:23 +08:00
}, nil)
2017-06-20 17:01:21 +08:00
val := timeImplementedMarshaler(time.Unix(123, 0))
obj := TestObject{&val}
bytes, err := json.Marshal(obj)
should.Nil(err)
2017-06-20 17:01:21 +08:00
should.Equal(`{"Field":123}`, string(bytes))
str, err := MarshalToString(obj)
should.Nil(err)
should.Equal(`{"Field":"hello from encoder"}`, str)
}
2017-05-24 16:04:11 +08:00
type ObjectImplementedUnmarshaler int
2017-07-01 00:33:42 +08:00
func (obj *ObjectImplementedUnmarshaler) UnmarshalJSON(s []byte) error {
val, _ := strconv.ParseInt(string(s[1:len(s)-1]), 10, 64)
*obj = ObjectImplementedUnmarshaler(val)
2017-05-24 16:04:11 +08:00
return nil
}
func Test_unmarshaler(t *testing.T) {
should := require.New(t)
2017-07-01 00:33:42 +08:00
var obj ObjectImplementedUnmarshaler
err := json.Unmarshal([]byte(` "100" `), &obj)
2017-05-24 16:04:11 +08:00
should.Nil(err)
2017-07-01 00:33:42 +08:00
should.Equal(100, int(obj))
iter := ParseString(ConfigDefault, ` "100" `)
iter.ReadVal(&obj)
2017-05-24 16:04:11 +08:00
should.Nil(err)
2017-07-01 00:33:42 +08:00
should.Equal(100, int(obj))
2017-05-24 16:04:11 +08:00
}
func Test_unmarshaler_and_decoder(t *testing.T) {
type TestObject struct {
2017-06-06 23:27:00 +08:00
Field *ObjectImplementedUnmarshaler
Field2 string
}
2017-07-09 16:09:23 +08:00
ConfigDefault.(*frozenConfig).cleanDecoders()
should := require.New(t)
2017-06-20 08:08:59 +08:00
RegisterTypeDecoderFunc("jsoniter.ObjectImplementedUnmarshaler", func(ptr unsafe.Pointer, iter *Iterator) {
*(*ObjectImplementedUnmarshaler)(ptr) = 10
iter.Skip()
})
obj := TestObject{}
val := ObjectImplementedUnmarshaler(0)
obj.Field = &val
2017-07-01 00:35:19 +08:00
err := json.Unmarshal([]byte(`{"Field":"100"}`), &obj)
should.Nil(err)
should.Equal(100, int(*obj.Field))
2017-07-01 00:35:19 +08:00
err = Unmarshal([]byte(`{"Field":"100"}`), &obj)
should.Nil(err)
should.Equal(10, int(*obj.Field))
2017-06-06 23:27:00 +08:00
}
type tmString string
type tmStruct struct {
String tmString
}
func (s tmStruct) MarshalJSON() ([]byte, error) {
var b []byte
b = append(b, '"')
b = append(b, s.String...)
b = append(b, '"')
return b, nil
}
func Test_marshaler_on_struct(t *testing.T) {
fixed := tmStruct{"hello"}
//json.Marshal(fixed)
Marshal(fixed)
2017-06-20 07:39:54 +08:00
}
type withChan struct {
F2 chan []byte
}
func (q withChan) MarshalJSON() ([]byte, error) {
return []byte(`""`), nil
}
func (q *withChan) UnmarshalJSON(value []byte) error {
return nil
}
func Test_marshal_json_with_chan(t *testing.T) {
type TestObject struct {
F1 withChan
}
should := require.New(t)
output, err := MarshalToString(TestObject{})
should.Nil(err)
should.Equal(`{"F1":""}`, output)
}
type withTime struct {
time.Time
}
func (t *withTime) UnmarshalJSON(b []byte) error {
return nil
}
func (t withTime) MarshalJSON() ([]byte, error) {
return []byte(`"fake"`), nil
}
func Test_marshal_json_with_time(t *testing.T) {
type S1 struct {
F1 withTime
F2 *withTime
}
type TestObject struct {
TF1 S1
}
should := require.New(t)
obj := TestObject{
S1{
F1: withTime{
time.Unix(0, 0),
},
F2: &withTime{
time.Unix(0, 0),
},
},
}
output, err := json.Marshal(obj)
should.Nil(err)
should.Equal(`{"TF1":{"F1":"fake","F2":"fake"}}`, string(output))
output, err = Marshal(obj)
should.Nil(err)
should.Equal(`{"TF1":{"F1":"fake","F2":"fake"}}`, string(output))
obj = TestObject{}
should.Nil(json.Unmarshal([]byte(`{"TF1":{"F1":"fake","F2":"fake"}}`), &obj))
should.NotNil(obj.TF1.F2)
obj = TestObject{}
should.Nil(Unmarshal([]byte(`{"TF1":{"F1":"fake","F2":"fake"}}`), &obj))
should.NotNil(obj.TF1.F2)
}