-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathencoder_bench_large_test.go
56 lines (50 loc) · 1.25 KB
/
encoder_bench_large_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package benchmarks
import (
"encoding/json"
"log"
"testing"
"github.com/francoispqt/gojay"
"github.com/francoispqt/gojay/benchmarks"
jsoniter "github.com/json-iterator/go"
"github.com/mailru/easyjson"
)
func BenchmarkEncodingJsonEncodeLargeStruct(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := json.Marshal(benchmarks.NewLargePayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkJsonIterEncodeLargeStruct(b *testing.B) {
var json = jsoniter.ConfigCompatibleWithStandardLibrary
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := json.Marshal(benchmarks.NewLargePayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkEasyJsonEncodeObjLarge(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := easyjson.Marshal(benchmarks.NewLargePayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkGoJayEncodeLargeStruct(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := gojay.MarshalJSONObject(benchmarks.NewLargePayload()); err != nil {
b.Fatal(err)
}
}
}
func TestGoJayEncodeLargeStruct(t *testing.T) {
if output, err := gojay.MarshalJSONObject(benchmarks.NewLargePayload()); err != nil {
t.Fatal(err)
} else {
log.Print(string(output))
}
}