-
Notifications
You must be signed in to change notification settings - Fork 92
/
strings_test.go
82 lines (72 loc) · 1.54 KB
/
strings_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
package jsluice
import (
"testing"
)
func TestStringDecode(t *testing.T) {
cases := []struct {
in string
expected string
}{
// middle
{`"foo bar"`, `foo bar`},
{`"foo\\bar"`, `foo\bar`},
{`"foo\"bar"`, `foo"bar`},
{`"foo\'bar"`, `foo'bar`},
{`"foo\075bar"`, `foo=bar`},
{`"foo\tbar"`, "foo\tbar"},
{`"foo\vbar"`, "foo\vbar"},
{`"foo\u003dbar"`, "foo=bar"},
{`"foo\u{00000000003d}bar"`, "foo=bar"},
// end
{`"foo\075"`, `foo=`},
{`"foo\x3d"`, `foo=`},
{`"foo\\"`, `foo\`},
// start
{`"\075foo"`, `=foo`},
{`"\x3dfoo"`, `=foo`},
{`"\\foo"`, `\foo`},
// pairs
{`"\075\x3d"`, `==`},
{`"\u{00000003d}\x3d"`, `==`},
// Invalid
{`"\poo"`, `poo`},
{`"\u{0003doops"`, `=oops`},
// real-world
{`"/help/doc/user_ed.jsp?loc\x3dhelp\x26target\x3d"`, "/help/doc/user_ed.jsp?loc=help&target="},
}
for _, c := range cases {
actual := DecodeString(c.in)
if c.expected != actual {
t.Errorf("Want %s for DecodeString(%s); have %s", c.expected, c.in, actual)
}
}
}
func BenchmarkDecodeString(b *testing.B) {
inputs := []string{
`"foo bar"`,
`"foo\\bar"`,
`"foo\"bar"`,
`"foo\'bar"`,
`"foo\075bar"`,
`"foo\tbar"`,
`"foo\vbar"`,
`"foo\u003dbar"`,
`"foo\u{00000000003d}bar"`,
`"foo\075"`,
`"foo\x3d"`,
`"foo\\"`,
`"\075foo"`,
`"\x3dfoo"`,
`"\\foo"`,
`"\075\x3d"`,
`"\u{00000003d}\x3d"`,
`"\poo"`,
`"\u{0003doops"`,
`"/help/doc/user_ed.jsp?loc\x3dhelp\x26target\x3d"`,
}
for i := 0; i < b.N; i++ {
for _, input := range inputs {
_ = DecodeString(input)
}
}
}