-
Notifications
You must be signed in to change notification settings - Fork 4
/
enc_str_test.go
134 lines (124 loc) · 2.63 KB
/
enc_str_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
package jx
import (
"encoding/json"
"fmt"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestEncoder_Str(t *testing.T) {
testCases := []struct {
input string
}{
{``},
{`abcd`},
{
`abcd\nH\tel\tl\ro\\World\r` + "\n\rHello\r\tHi",
},
{"\x00"},
{"\x00 "},
{`"hello, world!"`},
{strings.Repeat("a", encoderBufSize)},
}
for i, tt := range testCases {
tt := tt
t.Run(fmt.Sprintf("Test%d", i+1), func(t *testing.T) {
for _, enc := range []struct {
name string
enc func(e *Encoder, input string) bool
}{
{"Str", (*Encoder).Str},
{"Bytes", func(e *Encoder, input string) bool {
return e.ByteStr([]byte(tt.input))
}},
} {
enc := enc
t.Run(enc.name, func(t *testing.T) {
requireCompat(t, func(e *Encoder) {
enc.enc(e, tt.input)
}, tt.input)
t.Run("Decode", func(t *testing.T) {
e := GetEncoder()
enc.enc(e, tt.input)
i := GetDecoder()
i.ResetBytes(e.Bytes())
s, err := i.Str()
require.NoError(t, err)
require.Equal(t, tt.input, s)
})
})
}
})
}
t.Run("Quotes", func(t *testing.T) {
const (
v = "\"/\""
)
requireCompat(t, func(e *Encoder) {
e.StrEscape(v)
}, v)
})
t.Run("QuotesObj", func(t *testing.T) {
const (
k = "k"
v = "\"/\""
)
cb := func(e *Encoder) {
e.ObjStart()
e.FieldStart(k)
e.Str(v)
e.ObjEnd()
t.Log(e)
}
var e Encoder
cb(&e)
var target map[string]string
require.NoError(t, json.Unmarshal(e.Bytes(), &target))
assert.Equal(t, v, target[k])
requireCompat(t, cb, map[string]string{k: v})
})
}
func TestEncoder_StrEscape(t *testing.T) {
testCases := []struct {
input, expect string
}{
{"Foo", `"Foo"`},
{"\uFFFD", `"�"`},
{"a\xc5z", `"a\ufffdz"`},
{"<f\xed\xa0\x80", `"\u003cf\ufffd\ufffd\ufffd"`},
{
`<html>Hello\\\n\r\\` + "\n\rW\torld\u2028</html>",
`"\u003chtml\u003eHello\\\\\\n\\r\\\\\n\rW\torld\u2028\u003c/html\u003e"`,
},
}
for i, tt := range testCases {
tt := tt
t.Run(fmt.Sprintf("Test%d", i+1), func(t *testing.T) {
for _, enc := range []struct {
name string
enc func(e *Encoder, input string) bool
}{
{"Str", (*Encoder).StrEscape},
{"Bytes", func(e *Encoder, input string) bool {
return e.ByteStrEscape([]byte(tt.input))
}},
} {
enc := enc
t.Run(enc.name, func(t *testing.T) {
requireCompat(t, func(e *Encoder) {
enc.enc(e, tt.input)
}, tt.input)
})
}
})
}
t.Run("QuotesEscape", func(t *testing.T) {
const (
v = "\"/\""
)
requireCompat(t, func(e *Encoder) {
e.StrEscape(v)
}, v)
})
}