mirror of
https://github.com/ii64/sonic.git
synced 2026-06-20 16:45:22 +08:00
* feat(ast): validate the demanded fields for ast Get * fix: add more tests * fix: check invalid path type * fix(arm): make return error when skip invalid exponent * fix(arm): skip object and array with validate * fix: check input json in NewRaw * fix: validate the path in native c * chore: add licenses * fix: panic when invalid path * fix: add Get Full json benchmark * fix(arm): use fast skip besides the ondemand fields * chore codes --------- Co-authored-by: liuqiang <liuqiang.06@bytedance.com>
50 lines
No EOL
1.3 KiB
Go
50 lines
No EOL
1.3 KiB
Go
// +build amd64,go1.15,!go1.21
|
|
|
|
/*
|
|
* Copyright 2022 ByteDance Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package ast
|
|
|
|
import (
|
|
`testing`
|
|
|
|
`github.com/bytedance/sonic/encoder`
|
|
`github.com/stretchr/testify/assert`
|
|
)
|
|
|
|
func TestSortNodeTwitter(t *testing.T) {
|
|
root, err := NewSearcher(_TwitterJson).GetByPath()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
obj, err := root.MapUseNumber()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
exp, err := encoder.Encode(obj, encoder.SortMapKeys)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := root.SortKeys(true); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
act, err := root.MarshalJSON()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
assert.Equal(t, len(exp), len(act))
|
|
assert.Equal(t, string(exp), string(act))
|
|
} |