1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-20 11:28:49 +02:00

133 lines
2.5 KiB
Go
Raw Normal View History

2018-02-13 23:49:40 +08:00
package test
2018-02-14 08:58:59 +08:00
import (
"encoding/json"
"fmt"
2018-02-24 22:04:41 +08:00
"math/big"
"time"
2018-02-14 08:58:59 +08:00
)
2018-02-14 08:28:17 +08:00
2018-02-13 23:49:40 +08:00
func init() {
2018-02-14 08:58:59 +08:00
var pRawMessage = func(val json.RawMessage) *json.RawMessage {
return &val
}
2018-02-14 08:39:18 +08:00
nilMap := map[string]string(nil)
2018-02-13 23:49:40 +08:00
marshalCases = append(marshalCases,
map[string]interface{}{"abc": 1},
map[string]MyInterface{"hello": MyString("world")},
2018-02-14 08:28:17 +08:00
map[*big.Float]string{big.NewFloat(1.2): "2"},
map[string]interface{}{
"3": 3,
"1": 1,
"2": 2,
},
map[uint64]interface{}{
uint64(1): "a",
uint64(2): "a",
uint64(4): "a",
},
2018-02-14 08:39:18 +08:00
nilMap,
&nilMap,
2018-02-24 22:04:41 +08:00
map[string]*json.RawMessage{"hello": pRawMessage(json.RawMessage("[]"))},
map[Date]bool{{}: true},
map[Date2]bool{{}: true},
map[customKey]string{customKey(1): "bar"},
2018-02-13 23:49:40 +08:00
)
2018-02-14 08:28:17 +08:00
unmarshalCases = append(unmarshalCases, unmarshalCase{
2018-02-24 22:04:41 +08:00
ptr: (*map[string]string)(nil),
2018-02-14 08:28:17 +08:00
input: `{"k\"ey": "val"}`,
2018-02-14 08:39:18 +08:00
}, unmarshalCase{
2018-02-24 22:04:41 +08:00
ptr: (*map[string]string)(nil),
2018-02-14 08:39:18 +08:00
input: `null`,
2018-02-14 08:58:59 +08:00
}, unmarshalCase{
2018-02-24 22:04:41 +08:00
ptr: (*map[string]*json.RawMessage)(nil),
2018-02-14 08:58:59 +08:00
input: "{\"test\":[{\"key\":\"value\"}]}",
}, unmarshalCase{
ptr: (*map[Date]bool)(nil),
input: `{
"2018-12-12": true,
"2018-12-13": true,
"2018-12-14": true
}`,
}, unmarshalCase{
ptr: (*map[Date2]bool)(nil),
input: `{
"2018-12-12": true,
"2018-12-13": true,
"2018-12-14": true
}`,
}, unmarshalCase{
ptr: (*map[customKey]string)(nil),
input: `{"foo": "bar"}`,
2018-02-14 08:28:17 +08:00
})
2018-02-13 23:49:40 +08:00
}
type MyInterface interface {
Hello() string
}
type MyString string
func (ms MyString) Hello() string {
return string(ms)
}
type Date struct {
time.Time
}
func (d *Date) UnmarshalJSON(b []byte) error {
dateStr := string(b) // something like `"2017-08-20"`
if dateStr == "null" {
return nil
}
t, err := time.Parse(`"2006-01-02"`, dateStr)
if err != nil {
return fmt.Errorf("cant parse date: %#v", err)
}
d.Time = t
return nil
}
func (d *Date) MarshalJSON() ([]byte, error) {
return []byte(d.Time.Format("2006-01-02")), nil
}
type Date2 struct {
time.Time
}
func (d Date2) UnmarshalJSON(b []byte) error {
dateStr := string(b) // something like `"2017-08-20"`
if dateStr == "null" {
return nil
}
t, err := time.Parse(`"2006-01-02"`, dateStr)
if err != nil {
return fmt.Errorf("cant parse date: %#v", err)
}
d.Time = t
return nil
}
func (d Date2) MarshalJSON() ([]byte, error) {
return []byte(d.Time.Format("2006-01-02")), nil
}
type customKey int32
func (c customKey) MarshalText() ([]byte, error) {
return []byte("foo"), nil
}
func (c *customKey) UnmarshalText(value []byte) error {
*c = 1
return nil
}