forked from buger/jsonparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bytes_test.go
95 lines (88 loc) · 1.51 KB
/
bytes_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
package jsonparser
import (
"strconv"
"testing"
"unsafe"
)
type ParseIntTest struct {
in string
out int64
isErr bool
}
var parseIntTests = []ParseIntTest{
{
in: "0",
out: 0,
},
{
in: "1",
out: 1,
},
{
in: "-1",
out: -1,
},
{
in: "12345",
out: 12345,
},
{
in: "-12345",
out: -12345,
},
{
in: "9223372036854775807",
out: 9223372036854775807,
},
{
in: "-9223372036854775808",
out: -9223372036854775808,
},
{
in: "18446744073709551616", // = 2^64; integer overflow is not detected
out: 0,
},
{
in: "",
isErr: true,
},
{
in: "abc",
isErr: true,
},
{
in: "12345x",
isErr: true,
},
{
in: "123e5",
isErr: true,
},
{
in: "9223372036854775807x",
isErr: true,
},
}
func TestBytesParseInt(t *testing.T) {
for _, test := range parseIntTests {
out, ok := parseInt([]byte(test.in))
if ok != !test.isErr {
t.Errorf("Test '%s' error return did not match expectation (obtained %t, expected %t)", test.in, !ok, test.isErr)
} else if ok && out != test.out {
t.Errorf("Test '%s' did not return the expected value (obtained %d, expected %d)", test.in, out, test.out)
}
}
}
func BenchmarkParseInt(b *testing.B) {
bytes := []byte("123")
for i := 0; i < b.N; i++ {
parseInt(bytes)
}
}
// Alternative implementation using unsafe and delegating to strconv.ParseInt
func BenchmarkParseIntUnsafeSlower(b *testing.B) {
bytes := []byte("123")
for i := 0; i < b.N; i++ {
strconv.ParseInt(*(*string)(unsafe.Pointer(&bytes)), 10, 64)
}
}