forked from joshdk/go-junit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse_test.go
290 lines (273 loc) Β· 6.33 KB
/
parse_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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
// Copyright Josh Komoroske. All rights reserved.
// Use of this source code is governed by the MIT license,
// a copy of which can be found in the LICENSE.txt file.
package junit
import (
"bytes"
"encoding/xml"
"fmt"
"io/ioutil"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestReparent(t *testing.T) {
tests := []struct {
title string
input []byte
expected string
}{
{
title: "nil input",
expected: "<fake-root></fake-root>",
},
{
title: "empty input",
input: []byte(""),
expected: "<fake-root></fake-root>",
},
{
title: "xml input",
input: []byte(`<testcase name="unit tests" />`),
expected: `<fake-root><testcase name="unit tests" /></fake-root>`,
},
}
for index, test := range tests {
name := fmt.Sprintf("#%d - %s", index+1, test.title)
t.Run(name, func(t *testing.T) {
reader := reparentXML(bytes.NewReader(test.input))
actual, err := ioutil.ReadAll(reader)
assert.NoError(t, err)
assert.Equal(t, test.expected, string(actual))
})
}
}
func TestParse(t *testing.T) {
tests := []struct {
title string
input []byte
expected []xmlNode
}{
{
title: "nil input",
},
{
title: "empty input",
input: []byte(``),
},
{
title: "plaintext input",
input: []byte(`This is some data that does not look like xml.`),
},
{
title: "json input",
input: []byte(`{"This is some data": "that looks like json"}`),
},
{
title: "single xml node",
input: []byte(`<this-is-a-tag/>`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
},
},
},
{
title: "multiple xml nodes",
input: []byte(`
<this-is-a-tag/>
<this-is-also-a-tag/>
`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
},
{
XMLName: xml.Name{
Local: "this-is-also-a-tag",
},
},
},
},
{
title: "single xml node with content",
input: []byte(`<this-is-a-tag>This is some content.</this-is-a-tag>`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
Content: []byte("This is some content."),
},
},
},
{
title: "single xml node with encoded content",
input: []byte(`<this-is-a-tag><sender>John Smith</sender></this-is-a-tag>`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
Content: []byte("<sender>John Smith</sender>"),
},
},
},
{
title: "single xml node with cdata content",
input: []byte(`<this-is-a-tag><![CDATA[<sender>John Smith</sender>]]></this-is-a-tag>`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
Content: []byte("<sender>John Smith</sender>"),
},
},
},
{
title: "single xml node with attributes",
input: []byte(`<this-is-a-tag name="my name" status="passed"></this-is-a-tag>`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
Attrs: map[string]string{
"name": "my name",
"status": "passed",
},
},
},
},
{
title: "single xml node with encoded attributes",
input: []byte(`<this-is-a-tag name="<sender>John Smith</sender>"></this-is-a-tag>`),
expected: []xmlNode{
{
XMLName: xml.Name{
Local: "this-is-a-tag",
},
Attrs: map[string]string{
"name": "<sender>John Smith</sender>",
},
},
},
},
}
for index, test := range tests {
name := fmt.Sprintf("#%d - %s", index+1, test.title)
t.Run(name, func(t *testing.T) {
actual, err := parse(bytes.NewReader(test.input))
require.Nil(t, err)
assert.Equal(t, test.expected, actual)
})
}
}
func TestExtract(t *testing.T) {
tests := []struct {
title string
input []byte
expected []byte
err string
}{
{
title: "nil content",
},
{
title: "empty content",
input: []byte(""),
},
{
title: "simple content",
input: []byte("hello world"),
expected: []byte("hello world"),
},
{
title: "complex content",
input: []byte("No bugs π"),
expected: []byte("No bugs π"),
},
{
title: "simple encoded content",
input: []byte("I </3 XML"),
expected: []byte("I </3 XML"),
},
{
title: "complex encoded content",
input: []byte(`<[['/\"]]>`),
expected: []byte(`<[['/\"]]>`),
},
{
title: "empty cdata content",
input: []byte("<![CDATA[]]>"),
},
{
title: "simple cdata content",
input: []byte("<![CDATA[hello world]]>"),
expected: []byte("hello world"),
},
{
title: "complex cdata content",
input: []byte("<![CDATA[I </3 XML]]>"),
expected: []byte("I </3 XML"),
},
{
title: "complex encoded cdata content",
input: []byte("<![CDATA[I </3 XML]]>"),
expected: []byte("I </3 XML"),
},
{
title: "encoded content then cdata content",
input: []byte("I want to say that <![CDATA[I </3 XML]]>"),
expected: []byte("I want to say that I </3 XML"),
},
{
title: "cdata content then encoded content",
input: []byte("<![CDATA[I </3 XML]]> a lot"),
expected: []byte("I </3 XML a lot"),
},
{
title: "mixture of encoded and cdata content",
input: []byte("I </3 XML <![CDATA[a lot]]>. π You probably <![CDATA[</3 XML]]> too."),
expected: []byte("I </3 XML a lot. π You probably </3 XML too."),
},
{
title: "unmatched cdata start tag",
input: []byte("<![CDATA["),
err: "unmatched CDATA start tag",
},
{
title: "unmatched cdata end tag",
input: []byte("]]>"),
err: "unmatched CDATA end tag",
},
}
for index, test := range tests {
name := fmt.Sprintf("#%d - %s", index+1, test.title)
t.Run(name, func(t *testing.T) {
actual, err := extractContent(test.input)
checkError(t, test.err, err)
assert.Equal(t, test.expected, actual)
})
}
}
func checkError(t *testing.T, expected string, actual error) {
t.Helper()
switch {
case expected == "" && actual == nil:
return
case expected == "" && actual != nil:
t.Fatalf("expected no error but got %q", actual.Error())
case expected != "" && actual == nil:
t.Fatalf("expected %q but got nil", expected)
case expected == actual.Error():
return
default:
t.Fatalf("expected %q but got %q", expected, actual.Error())
}
}