forked from ateleshev/go-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_test.go
122 lines (111 loc) · 2.13 KB
/
bench_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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright 2013 Gary Burd. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package json_test
import (
"bytes"
"compress/gzip"
sjson "encoding/json"
"go/build"
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/garyburd/json"
)
var codeJSON []byte
func codeInit() {
p, err := build.Default.Import("encoding/json", "", build.FindOnly)
if err != nil {
panic(err)
}
f, err := os.Open(filepath.Join(p.Dir, "testdata", "code.json.gz"))
if err != nil {
panic(err)
}
defer f.Close()
gz, err := gzip.NewReader(f)
if err != nil {
panic(err)
}
data, err := ioutil.ReadAll(gz)
if err != nil {
panic(err)
}
codeJSON = data
}
func BenchmarkScanner(b *testing.B) {
b.StopTimer()
if codeJSON == nil {
codeInit()
}
b.StartTimer()
for i := 0; i < b.N; i++ {
s := json.NewScanner(bytes.NewReader(codeJSON))
// Check for errors.
for s.Scan() {
}
if s.Err() != nil {
b.Fatal(s.Err())
}
// Decode.
var err error
s = json.NewScanner(bytes.NewReader(codeJSON))
for s.Scan() {
_, err = decodeValue(s)
}
if s.Err() != nil {
b.Fatal(s.Err())
}
if err != nil {
b.Fatal(err)
}
}
b.SetBytes(int64(len(codeJSON)))
}
func BenchmarkScannerOnly(b *testing.B) {
b.StopTimer()
if codeJSON == nil {
codeInit()
}
b.StartTimer()
for i := 0; i < b.N; i++ {
s := json.NewScanner(bytes.NewReader(codeJSON))
for s.Scan() {
}
if s.Err() != nil {
b.Fatal(s.Err())
}
}
b.SetBytes(int64(len(codeJSON)))
}
func BenchmarkStdUnmarshal(b *testing.B) {
b.StopTimer()
if codeJSON == nil {
codeInit()
}
b.StartTimer()
for i := 0; i < b.N; i++ {
m := make(map[string]interface{})
err := sjson.Unmarshal(codeJSON, &m)
if err != nil {
b.Fatal(err.Error())
}
}
b.SetBytes(int64(len(codeJSON)))
}
func BenchmarkStdDecode(b *testing.B) {
b.StopTimer()
if codeJSON == nil {
codeInit()
}
b.StartTimer()
for i := 0; i < b.N; i++ {
m := make(map[string]interface{})
err := sjson.NewDecoder(bytes.NewReader(codeJSON)).Decode(&m)
if err != nil {
b.Fatal(err.Error())
}
}
b.SetBytes(int64(len(codeJSON)))
}