-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunsafe_fmt_test.go
145 lines (109 loc) · 1.9 KB
/
unsafe_fmt_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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package errors
import (
"bytes"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
type (
testformatter struct {
flags [64]bool
wid int
prc int
widok bool
prcok bool
verb rune
buf []byte
}
)
func TestSubPrintArg(t *testing.T) {
var b bytes.Buffer
var f testformatter
fmt.Fprintf(&b, "%+012.6q", &f)
assert.Equal(t, testformatter{
flags: flags("+0"),
wid: 12,
widok: true,
prc: 6,
prcok: true,
verb: 'q',
}, f)
//
var f2 testformatter
subPrintArg(&f, &f2, 'v')
assert.Equal(t, testformatter{
flags: flags("+0"),
wid: 12,
widok: true,
prc: 6,
prcok: true,
verb: 'v',
}, f2)
//
f = testformatter{}
f2 = testformatter{
flags: flags("-# "),
prc: 3,
prcok: true,
}
subPrintArg(&f2, &f, 'v')
assert.Equal(t, testformatter{
flags: flags(" -#"),
prc: 3,
prcok: true,
verb: 'v',
}, f)
}
/*
func BenchmarkPringArg(b *testing.B) {
b.ReportAllocs()
f := testformatter{}
for i := 0; i < b.N; i++ {
pp := newPrinter()
printArg(pp, &f, 'v')
ppFree(pp)
}
}
*/
func BenchmarkPringArgFallback(b *testing.B) {
b.ReportAllocs()
f := testformatter{}
f2 := testformatter{
flags: flags("-# "),
prc: 3,
prcok: true,
}
for i := 0; i < b.N; i++ {
subPrintArg(&f2, &f, 'v')
}
}
func (f *testformatter) Format(s fmt.State, verb rune) {
f.flags = [64]bool{}
for _, q := range "-+# 0" {
if s.Flag(int(q)) {
f.flags[q] = true
}
}
f.wid, f.widok = s.Width()
f.prc, f.prcok = s.Precision()
f.verb = verb
}
func (f *testformatter) Flag(c int) bool {
return f.flags[c]
}
func (f *testformatter) Width() (int, bool) {
return f.wid, f.widok
}
func (f *testformatter) Precision() (int, bool) {
return f.prc, f.prcok
}
func (f *testformatter) Write(p []byte) (int, error) {
f.buf = append(f.buf, p...)
return len(p), nil
}
func flags(f string) (r [64]bool) {
for _, q := range f {
r[q] = true
}
return
}