-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_test.go
226 lines (213 loc) · 5.26 KB
/
add_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
package main_test
import (
"bytes"
"strconv"
"strings"
"testing"
main "github.com/shu-go/eksemel"
"github.com/shu-go/gotwant"
)
const xmlpi = `<?xml version="1.0" encoding="UTF-8"?>`
func prepare(input string) (in, out, errout *bytes.Buffer) {
in = bytes.NewBufferString(input)
out = &bytes.Buffer{}
errout = &bytes.Buffer{}
return in, out, errout
}
type addtestdata struct {
input string
xpath string
name string
value string
ennet string
sibling bool
indent int
err error
out, errout string
}
func testadd(t *testing.T, data []addtestdata) {
t.Helper()
for i, d := range data {
in, out, errout := prepare(d.input)
err := main.Add(
main.NewFakeCloseReader(in),
out,
errout,
d.xpath,
d.name,
d.value,
d.ennet,
d.sibling,
main.OutputConfig{Indent: strings.Repeat(" ", d.indent), EmptyElement: true},
)
seq := strconv.Itoa(i+1) + "/" + strconv.Itoa(len(data))
gotwant.TestError(t, err, d.err, gotwant.Desc(seq))
gotwant.Test(t, out.String(), d.out, gotwant.Desc(seq))
gotwant.Test(t, errout.String(), d.errout, gotwant.Desc(seq))
}
}
func TestAdd(t *testing.T) {
testadd(t, []addtestdata{
{
input: ``,
xpath: `/`,
ennet: `root>hoge`,
out: `<root><hoge/></root>`,
},
{
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
ennet: `a>b`,
out: xmlpi + `<root><hoge><a><b/></a></hoge></root>`,
},
{
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
ennet: `a>b`,
sibling: true,
out: xmlpi + `<root><hoge/><a><b/></a></root>`,
},
{ /*ignored*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge/fuga`,
ennet: `a>b`,
sibling: true,
out: xmlpi + `<root><hoge/></root>`,
},
{
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `a`,
out: xmlpi + `<root><hoge><a/></hoge></root>`,
},
{ /*with text*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `a`,
value: `a text`,
out: xmlpi + `<root><hoge><a>a text</a></hoge></root>`,
},
{ /*with text*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `a`,
value: `a text`,
sibling: true,
out: xmlpi + `<root><hoge/><a>a text</a></root>`,
},
{
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `a`,
sibling: true,
out: xmlpi + `<root><hoge/><a/></root>`,
},
{ /*attr*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `@attr1`,
value: `attrvalue1`,
out: xmlpi + `<root><hoge attr1="attrvalue1"/></root>`,
},
{ /*attr escaped*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `@attr1`,
value: `attrvalue"1'`,
out: xmlpi + `<root><hoge attr1="attrvalue"1'"/></root>`,
},
{ /*text*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `#text`,
value: `textvalue`,
out: xmlpi + `<root><hoge>textvalue</hoge></root>`,
},
{ /*text*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `#text`,
value: `textvalue`,
sibling: true,
out: xmlpi + `<root><hoge/>textvalue</root>`,
},
{ /*comment*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `#comment`,
value: `comment text`,
out: xmlpi + `<root><hoge><!--comment text--></hoge></root>`,
},
{ /*comment*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `#comment`,
value: `comment text`,
sibling: true,
out: xmlpi + `<root><hoge/><!--comment text--></root>`,
},
{ /*cdata-section*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `#cdata-section`,
value: `cdata text`,
out: xmlpi + `<root><hoge><![CDATA[cdata text]]></hoge></root>`,
},
{ /*cdata-section*/
input: xmlpi + `<root><hoge/></root>`,
xpath: `/root/hoge`,
name: `#cdata-section`,
value: `cdata text`,
sibling: true,
out: xmlpi + `<root><hoge/><![CDATA[cdata text]]></root>`,
},
{ /*multiple*/
input: xmlpi + `<root><hoge/><hoge/><hoge><z/></hoge></root>`,
xpath: `/root/hoge`,
name: `a`,
out: xmlpi + `<root><hoge><a/></hoge><hoge><a/></hoge><hoge><z/><a/></hoge></root>`,
},
{ /*multiple*/
input: xmlpi + `<root><hoge/><hoge/><hoge><z/></hoge></root>`,
xpath: `/root/hoge`,
name: `a`,
indent: 1,
out: xmlpi + `
<root>
<hoge>
<a/>
</hoge>
<hoge>
<a/>
</hoge>
<hoge>
<z/>
<a/>
</hoge>
</root>
`,
},
{ /*multiple*/
input: xmlpi + `<root><hoge/><hoge/><hoge><z/></hoge></root>`,
xpath: `/root/hoge`,
name: `a`,
sibling: true,
out: xmlpi + `<root><hoge/><a/><hoge/><a/><hoge><z/></hoge><a/></root>`,
// out: xmlpi + `<root><hoge/><hoge/><hoge><z/></hoge><a/><a/><a/></root>`,
},
{ /*multiple*/
input: xmlpi + `<root><hoge/><hoge/><hoge><z/></hoge></root>`,
xpath: `/root/hoge`,
name: `@a`,
value: `v`,
out: xmlpi + `<root><hoge a="v"/><hoge a="v"/><hoge a="v"><z/></hoge></root>`,
},
{ /*multiple*/
input: xmlpi + `<root><hoge/><hoge/><hoge><z/></hoge></root>`,
xpath: `/root/hoge`,
name: `@a`,
value: `v`,
out: xmlpi + `<root><hoge a="v"/><hoge a="v"/><hoge a="v"><z/></hoge></root>`,
},
})
}