forked from clbanning/mxj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xml2_test.go
322 lines (290 loc) · 7.08 KB
/
xml2_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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
package mxj
import (
"encoding/json"
"encoding/xml"
"fmt"
"io"
"os"
"testing"
)
func TestXml2Header(t *testing.T) {
fmt.Println("\n---------------- xml2_test.go ...\n")
}
func TestNewMapXml4(t *testing.T) {
x := []byte(`<doc>
<books>
<book seq="1">
<author>William T. Gaddis</author>
<title>The Recognitions</title>
<review>One of the great seminal American novels of the 20th century.</review>
</book>
<book seq="2">
<author>Austin Tappan Wright</author>
<title>Islandia</title>
<review>An example of earlier 20th century American utopian fiction.</review>
</book>
<book seq="3">
<author>John Hawkes</author>
<title>The Beetle Leg</title>
<review>A lyrical novel about the construction of Ft. Peck Dam in Montana.</review>
</book>
<book seq="4">
<author>
<first_name>T.E.</first_name>
<last_name>Porter</last_name>
</author>
<title>King's Day</title>
<review>A magical novella.</review>
</book>
</books>
</doc>`)
m, err := NewMapXml(x)
if err != nil && err != io.EOF {
t.Fatal("err:", err.Error())
}
fmt.Println("NewMapXml4, x:\n", string(x))
fmt.Println("NewMapXml4, m:\n", m)
fmt.Println("NewMapXml4, s:\n", m.StringIndent())
b, err := m.XmlIndent("", " ")
if err != nil {
t.Fatal("err:", err)
}
fmt.Println("NewMapXml4, b:\n", string(b))
}
func TestNewMapXml5(t *testing.T) {
fh, err := os.Open("songtext.xml")
if err != nil {
t.Fatal("err:", err.Error())
}
defer fh.Close()
m, raw, err := NewMapXmlReaderRaw(fh)
if err != nil && err != io.EOF {
t.Fatal("err:", err.Error())
}
fmt.Println("NewMapXml5, raw:\n", string(raw))
fmt.Println("NewMapXml5, m:\n", m)
fmt.Println("NewMapXml5, s:\n", m.StringIndent())
b, err := m.Xml()
if err != nil {
t.Fatal("err:", err)
}
fmt.Println("NewMapXml5, b:\n", string(b))
b, err = m.XmlIndent("", " ")
if err != nil {
t.Fatal("err:", err)
}
fmt.Println("NewMapXml5, b:\n", string(b))
}
func TestNewMapXml6(t *testing.T) {
fh, err := os.Open("atomFeedString.xml")
if err != nil {
t.Fatal("err:", err.Error())
}
defer fh.Close()
m, raw, err := NewMapXmlReaderRaw(fh)
if err != nil && err != io.EOF {
t.Fatal("err:", err.Error())
}
fmt.Println("NewMapXml6, raw:\n", string(raw))
fmt.Println("NewMapXml6, m:\n", m)
fmt.Println("NewMapXml6, s:\n", m.StringIndent())
b, err := m.Xml()
if err != nil {
t.Fatal("err:", err)
}
fmt.Println("NewMapXml6, b:\n", string(b))
b, err = m.XmlIndent("", " ")
if err != nil {
t.Fatal("err:", err)
}
fmt.Println("NewMapXml6, b:\n", string(b))
}
// ===================================== benchmarks ============================
var smallxml = []byte(`
<doc>
<words>
<word1>this</word1>
<word2>is</word2>
<word3>the</word3>
<word4>end</word4>
</words>
</doc>
`)
var smalljson = []byte(`{"doc":{"words":{"word1":"this","word2":"is","word3":"the","word4":"end"}}}`)
type words struct {
Word1 string `xml:"word1"`
Word2 string `xml:"word2"`
Word3 string `xml:"word3"`
Word4 string `xml:"word4"`
}
type xmldoc struct {
Words words `xml:"words"`
}
type jsondoc struct {
Doc xmldoc
}
func BenchmarkNewMapXml(b *testing.B) {
// var m Map
var err error
for i := 0; i < b.N; i++ {
if _, err = NewMapXml(smallxml); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("m Map:", m)
}
func BenchmarkNewStructXml(b *testing.B) {
var s *xmldoc
var err error
for i := 0; i < b.N; i++ {
s = new(xmldoc)
if err = xml.Unmarshal(smallxml, s); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("s xmldoc:", *s)
}
func BenchmarkNewMapJson(b *testing.B) {
var m map[string]interface{}
var err error
for i := 0; i < b.N; i++ {
m = make(map[string]interface{})
if err = json.Unmarshal(smalljson, &m); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("m map:", m)
}
func BenchmarkNewStructJson(b *testing.B) {
var s *jsondoc
var err error
for i := 0; i < b.N; i++ {
s = new(jsondoc)
if err = json.Unmarshal(smalljson, s); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("s jsondoc:", *s)
}
// ================== something with a little more content ... ===================
var xmlbooks = []byte(`
<doc>
<books>
<book seq="1">
<author>William T. Gaddis</author>
<title>The Recognitions</title>
<review>One of the great seminal American novels of the 20th century.</review>
</book>
<book seq="2">
<author>Austin Tappan Wright</author>
<title>Islandia</title>
<review>An example of earlier 20th century American utopian fiction.</review>
</book>
<book seq="3">
<author>John Hawkes</author>
<title>The Beetle Leg</title>
<review>A lyrical novel set during the construction of Ft. Peck Dam in Montana.</review>
</book>
<book seq="4">
<author>
<first_name>T.E.</first_name>
<last_name>Porter</last_name>
</author>
<title>King's Day</title>
<review>A magical novella.</review>
</book>
</books>
</doc>
`)
var jsonbooks = []byte(`
{"doc":
{"books":
{"book":[
{ "author":"William T. Gaddis",
"title":"The Recognitions",
"review":"One of the great seminal American novels of the 20th century."
},
{ "author":"Austin Tappan Wright",
"title":"Islandia",
"review":"An example of earlier 20th century American utopian fiction."
},
{ "author":"John Hawkes",
"title":"The Beetle Leg",
"review":"A lyrical novel set during the construction of Ft. Peck Dam in Montana."
},
{ "author":{"first_name":"T.E.", "last_name":"Porter"},
"title":"King's Day",
"review":"A magical novella."
}]
}
}
}
`)
type book struct {
Author string `xml:"author"`
Title string `xml:"title"`
Review string `xml:"review"`
}
type books struct {
Book []book `xml:"book"`
}
type doc struct {
Books books `xml:"books"`
}
type jsonbook struct {
Author json.RawMessage
Title string
Review string
}
type jsonbooks2 struct {
Book []jsonbook
}
type jsondoc1 struct {
Books jsonbooks2
}
type jsondoc2 struct {
Doc jsondoc1
}
func BenchmarkNewMapXmlBooks(b *testing.B) {
// var m Map
var err error
for i := 0; i < b.N; i++ {
if _, err = NewMapXml(xmlbooks); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("m Map:", m)
}
func BenchmarkNewStructXmlBooks(b *testing.B) {
var s *doc
var err error
for i := 0; i < b.N; i++ {
s = new(doc)
if err = xml.Unmarshal(xmlbooks, s); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("s doc:", *s)
}
func BenchmarkNewMapJsonBooks(b *testing.B) {
var m map[string]interface{}
var err error
for i := 0; i < b.N; i++ {
m = make(map[string]interface{})
if err = json.Unmarshal(jsonbooks, &m); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("m map:", m)
}
func BenchmarkNewStructJsonBooks(b *testing.B) {
var s *jsondoc2
var err error
for i := 0; i < b.N; i++ {
s = new(jsondoc2)
if err = json.Unmarshal(jsonbooks, s); err != nil {
b.Fatal("err:", err)
}
}
// fmt.Println("s jsondoc2:", *s)
}