mirror of
https://github.com/ii64/sonic.git
synced 2026-06-21 00:46:43 +08:00
* fix:move benchmarkTests and unitTests related to external json library * remove extra spaces * merge go.mod files * refactor: add external_jsonlib_test into go.work and CI Co-authored-by: Yi Duan <duanyi.aster@bytedance.com>
236 lines
6.9 KiB
Go
236 lines
6.9 KiB
Go
/*
|
|
* Copyright 2021 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 benchmark_test
|
|
|
|
import (
|
|
`testing`
|
|
|
|
jsoniter `github.com/json-iterator/go`
|
|
`github.com/tidwall/gjson`
|
|
)
|
|
|
|
func BenchmarkParser_Gjson(b *testing.B) {
|
|
gjson.Parse(TwitterJson).ForEach(func(key, value gjson.Result) bool {
|
|
if !value.Exists() {
|
|
b.Fatal(value.Index)
|
|
}
|
|
_ = value.Value()
|
|
return true
|
|
})
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
gjson.Parse(TwitterJson).ForEach(func(key, value gjson.Result) bool {
|
|
if !value.Exists() {
|
|
b.Fatal(value.Index)
|
|
}
|
|
_ = value.Value()
|
|
return true
|
|
})
|
|
}
|
|
}
|
|
|
|
func BenchmarkParser_Jsoniter(b *testing.B) {
|
|
v := jsoniter.Get([]byte(TwitterJson)).GetInterface()
|
|
if v == nil {
|
|
b.Fatal(v)
|
|
}
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_ = jsoniter.Get([]byte(TwitterJson)).GetInterface()
|
|
}
|
|
}
|
|
|
|
func BenchmarkParser_Parallel_Gjson(b *testing.B) {
|
|
gjson.Parse(TwitterJson).ForEach(func(key, value gjson.Result) bool {
|
|
if !value.Exists() {
|
|
b.Fatal(value.Index)
|
|
}
|
|
return true
|
|
})
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
gjson.Parse(TwitterJson).ForEach(func(key, value gjson.Result) bool {
|
|
if !value.Exists() {
|
|
b.Fatal(value.Index)
|
|
}
|
|
_ = value.Value()
|
|
return true
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkParser_Parallel_Jsoniter(b *testing.B) {
|
|
var bv = []byte(TwitterJson)
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
var out interface{}
|
|
_ = jsoniter.Unmarshal(bv, &out)
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkParseOne_Gjson(b *testing.B) {
|
|
ast := gjson.Parse(TwitterJson)
|
|
node := ast.Get("statuses.2.id")
|
|
v := node.Int()
|
|
if v != 249289491129438208 {
|
|
b.Fatal(node)
|
|
}
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
ast := gjson.Parse(TwitterJson)
|
|
node := ast.Get("statuses.2.id")
|
|
_ = node.Int()
|
|
}
|
|
}
|
|
|
|
func BenchmarkParseOne_Jsoniter(b *testing.B) {
|
|
data := []byte(TwitterJson)
|
|
ast := jsoniter.Get(data, "statuses", 2, "id")
|
|
node := ast.ToInt()
|
|
if node != 249289491129438208 {
|
|
b.Fail()
|
|
}
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
ast := jsoniter.Get(data, "statuses", 2, "id")
|
|
_ = ast.ToInt()
|
|
}
|
|
}
|
|
|
|
func BenchmarkParseOne_Parallel_Gjson(b *testing.B) {
|
|
ast := gjson.Parse(TwitterJson)
|
|
node := ast.Get("statuses.2.id")
|
|
v := node.Int()
|
|
if v != 249289491129438208 {
|
|
b.Fatal(node)
|
|
}
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
ast := gjson.Parse(TwitterJson)
|
|
node := ast.Get("statuses.2.id")
|
|
_ = node.Int()
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkParseOne_Parallel_Jsoniter(b *testing.B) {
|
|
data := []byte(TwitterJson)
|
|
ast := jsoniter.Get(data, "statuses", 2, "id")
|
|
node := ast.ToInt()
|
|
if node != 249289491129438208 {
|
|
b.Fail()
|
|
}
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
data := []byte(TwitterJson)
|
|
ast := jsoniter.Get(data, "statuses", 2, "id")
|
|
_ = ast.ToInt()
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkParseSeven_Gjson(b *testing.B) {
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
ast := gjson.Parse(TwitterJson)
|
|
node := ast.Get("statuses.3.id")
|
|
node = ast.Get("statuses.3.user.entities.description")
|
|
node = ast.Get("statuses.3.user.entities.url.urls")
|
|
node = ast.Get("statuses.3.user.entities.url")
|
|
node = ast.Get("statuses.3.user.created_at")
|
|
node = ast.Get("statuses.3.user.name")
|
|
node = ast.Get("statuses.3.text")
|
|
if node.Value() == nil {
|
|
b.Fail()
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkParseSeven_Jsoniter(b *testing.B) {
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
data := []byte(TwitterJson)
|
|
for i := 0; i < b.N; i++ {
|
|
ast := jsoniter.Get(data)
|
|
node := ast.Get("statuses", 3, "id")
|
|
node = ast.Get("statuses", 3, "user", "entities", "description")
|
|
node = ast.Get("statuses", 3, "user", "entities", "url", "urls")
|
|
node = ast.Get("statuses", 3, "user", "entities", "url")
|
|
node = ast.Get("statuses", 3, "user", "created_at")
|
|
node = ast.Get("statuses", 3, "user", "name")
|
|
node = ast.Get("statuses", 3, "text")
|
|
if node.LastError() != nil {
|
|
b.Fail()
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkParseSeven_Parallel_Gjson(b *testing.B) {
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
ast := gjson.Parse(TwitterJson)
|
|
node := ast.Get("statuses.3.id")
|
|
node = ast.Get("statuses.3.user.entities.description")
|
|
node = ast.Get("statuses.3.user.entities.url.urls")
|
|
node = ast.Get("statuses.3.user.entities.url")
|
|
node = ast.Get("statuses.3.user.created_at")
|
|
node = ast.Get("statuses.3.user.name")
|
|
node = ast.Get("statuses.3.text")
|
|
if node.Value() == nil {
|
|
b.Fail()
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkParseSeven_Parallel_Jsoniter(b *testing.B) {
|
|
b.SetBytes(int64(len(TwitterJson)))
|
|
b.ResetTimer()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
data := []byte(TwitterJson)
|
|
ast := jsoniter.Get(data)
|
|
node := ast.Get("statuses", 3, "id")
|
|
node = ast.Get("statuses", 3, "user", "entities", "description")
|
|
node = ast.Get("statuses", 3, "user", "entities", "url", "urls")
|
|
node = ast.Get("statuses", 3, "user", "entities", "url")
|
|
node = ast.Get("statuses", 3, "user", "created_at")
|
|
node = ast.Get("statuses", 3, "user", "name")
|
|
node = ast.Get("statuses", 3, "text")
|
|
if node.LastError() != nil {
|
|
b.Fail()
|
|
}
|
|
}
|
|
})
|
|
}
|