gf/encoding/gjson/gjson_z_unit_implements_test.go

73 lines
1.9 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gjson_test
import (
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/internal/json"
"github.com/gogf/gf/v2/util/gconv"
"testing"
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/encoding/gjson"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/test/gtest"
)
func TestJson_UnmarshalJSON(t *testing.T) {
data := []byte(`{"n":123456789, "m":{"k":"v"}, "a":[1,2,3]}`)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
j := gjson.New(nil)
err := json.UnmarshalUseNumber(data, j)
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(j.Get("n").String(), "123456789")
t.Assert(j.Get("m").Map(), g.Map{"k": "v"})
t.Assert(j.Get("m.k").String(), "v")
t.Assert(j.Get("a").Array(), g.Slice{1, 2, 3})
t.Assert(j.Get("a.1").Int(), 2)
})
}
func TestJson_UnmarshalValue(t *testing.T) {
2020-03-20 22:34:56 +08:00
type V struct {
Name string
Json *gjson.Json
}
// JSON
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2020-03-20 22:34:56 +08:00
var v *V
err := gconv.Struct(g.Map{
"name": "john",
"json": []byte(`{"n":123456789, "m":{"k":"v"}, "a":[1,2,3]}`),
2020-03-19 23:53:03 +08:00
}, &v)
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
2020-03-19 23:53:03 +08:00
t.Assert(v.Name, "john")
t.Assert(v.Json.Get("n").String(), "123456789")
t.Assert(v.Json.Get("m").Map(), g.Map{"k": "v"})
t.Assert(v.Json.Get("m.k").String(), "v")
t.Assert(v.Json.Get("a").Slice(), g.Slice{1, 2, 3})
t.Assert(v.Json.Get("a.1").Int(), 2)
})
// Map
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2020-03-20 22:34:56 +08:00
var v *V
err := gconv.Struct(g.Map{
"name": "john",
"json": g.Map{
"n": 123456789,
"m": g.Map{"k": "v"},
"a": g.Slice{1, 2, 3},
},
2020-03-19 23:53:03 +08:00
}, &v)
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
2020-03-19 23:53:03 +08:00
t.Assert(v.Name, "john")
t.Assert(v.Json.Get("n").String(), "123456789")
t.Assert(v.Json.Get("m").Map(), g.Map{"k": "v"})
t.Assert(v.Json.Get("m.k").String(), "v")
t.Assert(v.Json.Get("a").Slice(), g.Slice{1, 2, 3})
t.Assert(v.Json.Get("a.1").Int(), 2)
})
}