Source file
src/html/escape_test.go
1
2
3
4
5 package html
6
7 import (
8 "strings"
9 "testing"
10 )
11
12 type unescapeTest struct {
13
14 desc string
15
16 html string
17
18 unescaped string
19 }
20
21 var unescapeTests = []unescapeTest{
22
23 {
24 "copy",
25 "A\ttext\nstring",
26 "A\ttext\nstring",
27 },
28
29 {
30 "simple",
31 "& > <",
32 "& > <",
33 },
34
35 {
36 "stringEnd",
37 "& &",
38 "& &",
39 },
40
41 {
42 "multiCodepoint",
43 "text ⋛︀ blah",
44 "text \u22db\ufe00 blah",
45 },
46
47 {
48 "decimalEntity",
49 "Delta = Δ ",
50 "Delta = Δ ",
51 },
52
53 {
54 "hexadecimalEntity",
55 "Lambda = λ = λ ",
56 "Lambda = λ = λ ",
57 },
58
59 {
60 "numericEnds",
61 "&# &#x €43 © = ©f = ©",
62 "&# &#x €43 © = ©f = ©",
63 },
64
65 {
66 "numericReplacements",
67 "Footnote‡",
68 "Footnote‡",
69 },
70
71 {
72 "copySingleAmpersand",
73 "&",
74 "&",
75 },
76
77 {
78 "copyAmpersandNonEntity",
79 "text &test",
80 "text &test",
81 },
82
83 {
84 "copyAmpersandHash",
85 "text &#",
86 "text &#",
87 },
88 }
89
90 func TestUnescape(t *testing.T) {
91 for _, tt := range unescapeTests {
92 unescaped := UnescapeString(tt.html)
93 if unescaped != tt.unescaped {
94 t.Errorf("TestUnescape %s: want %q, got %q", tt.desc, tt.unescaped, unescaped)
95 }
96 }
97 }
98
99 func TestUnescapeEscape(t *testing.T) {
100 ss := []string{
101 ``,
102 `abc def`,
103 `a & b`,
104 `a&b`,
105 `a & b`,
106 `"`,
107 `"`,
108 `"<&>"`,
109 `"<&>"`,
110 `3&5==1 && 0<1, "0<1", a+acute=á`,
111 `The special characters are: <, >, &, ' and "`,
112 }
113 for _, s := range ss {
114 if got := UnescapeString(EscapeString(s)); got != s {
115 t.Errorf("got %q want %q", got, s)
116 }
117 }
118 }
119
120 var (
121 benchEscapeData = strings.Repeat("AAAAA < BBBBB > CCCCC & DDDDD ' EEEEE \" ", 100)
122 benchEscapeNone = strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 100)
123 benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&", 10)
124 benchUnescapeDense = strings.Repeat("&< & <", 100)
125 )
126
127 func BenchmarkEscape(b *testing.B) {
128 n := 0
129 for i := 0; i < b.N; i++ {
130 n += len(EscapeString(benchEscapeData))
131 }
132 }
133
134 func BenchmarkEscapeNone(b *testing.B) {
135 n := 0
136 for i := 0; i < b.N; i++ {
137 n += len(EscapeString(benchEscapeNone))
138 }
139 }
140
141 func BenchmarkUnescape(b *testing.B) {
142 s := EscapeString(benchEscapeData)
143 n := 0
144 for i := 0; i < b.N; i++ {
145 n += len(UnescapeString(s))
146 }
147 }
148
149 func BenchmarkUnescapeNone(b *testing.B) {
150 s := EscapeString(benchEscapeNone)
151 n := 0
152 for i := 0; i < b.N; i++ {
153 n += len(UnescapeString(s))
154 }
155 }
156
157 func BenchmarkUnescapeSparse(b *testing.B) {
158 n := 0
159 for i := 0; i < b.N; i++ {
160 n += len(UnescapeString(benchUnescapeSparse))
161 }
162 }
163
164 func BenchmarkUnescapeDense(b *testing.B) {
165 n := 0
166 for i := 0; i < b.N; i++ {
167 n += len(UnescapeString(benchUnescapeDense))
168 }
169 }
170
View as plain text