-
-
Notifications
You must be signed in to change notification settings - Fork 323
/
Copy pathdata_spec.js
276 lines (246 loc) · 9.15 KB
/
data_spec.js
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
"use strict";
const parser = require("../src/parser");
const validator = require("../src/validator");
const he = require("he");
describe("XMLParser", function() {
it("should parse attributes having '>' in value", function() {
const xmlData = `<? xml version = "1.0" encoding = "UTF - 8" ?>
<testStep type="restrequest" name="test step name (bankId -> Error)" id="90e453d3-30cd-4958-a3be-61ecfe7a7cbe">
<settings/>
<encoding>UTF-8</encoding>
</testStep>`;
const expected = {
"testStep": {
"type": "restrequest",
"name": "test step name (bankId -> Error)",
"id": "90e453d3-30cd-4958-a3be-61ecfe7a7cbe",
"settings": "",
"encoding": "UTF-8"
}
};
let result = parser.parse(xmlData, {
attributeNamePrefix: "",
ignoreAttributes: false,
//parseAttributeValue: true
});
//console.log(JSON.stringify(result,null,4));
expect(result).toEqual(expected);
result = validator.validate(xmlData);
expect(result).toBe(true);
});
it("should parse attributes with valid names", function() {
const xmlData = `
<a>
<bug atr="sasa" boolean>val
<b/>
<br/>
<br b/>
<c>some<!--single line comment--></c>here
</bug>as well
</a>`;
const expected = {
"a": {
"#text": "as well",
"bug": {
"#text": "valhere",
"@_atr": "sasa",
"@_boolean": true,
"b": "",
"br": [
"",
{
"@_b": true
}
],
"c": "some"
}
}
};
let result = parser.parse(xmlData, {
//attributeNamePrefix: "",
ignoreAttributes: false,
//parseAttributeValue: true,
allowBooleanAttributes: true
});
//console.log(JSON.stringify(result,null,4));
expect(result).toEqual(expected);
});
it("should parse attributes with valid names", function() {
const xmlData = `<a:root xmlns:a="urn:none" xmlns:a-b="urn:none">
<a:a attr="2foo&bar'">1</a:a>
<a:b>2</a:b>
<a-b:b-a>2</a-b:b-a>
<a:c>test&\r\nтест<\r\ntest</a:c>
<a:el><![CDATA[<a><<a/><b>2</b>]]]]>\r\n<![CDATA[]]]]><![CDATA[>&]]>a</a:el>
<c:string lang="ru">\
страхования\
» от суммы \
его активов\
</c:string>
</a:root>`;
const expected = {
"a:root": {
"@_xmlns:a": "urn:none",
"@_xmlns:a-b": "urn:none",
"a:a": {
"#text": 1,
"@_attr": "2foo&bar'"
},
"a:b": 2,
"a-b:b-a": 2,
"a:c": "test&\r\nтест<\r\ntest",
"a:el": "<a><<a/><b>2</b>]]]]>&a",
"c:string": {
"#text": "страхования » от суммы его активов",
"@_lang": "ru"
}
}
};
let result = parser.parse(xmlData, {
//attributeNamePrefix: "",
ignoreAttributes: false,
//parseAttributeValue: true,
allowBooleanAttributes: true
}, { ignoreNameSpace: true });
//console.log(JSON.stringify(result,null,4));
expect(result).toEqual(expected);
});
it("should parse tagName without whitespace chars", function() {
const xmlData = `<a:root
attr='df'>val
</a:root>`;
const expected = {
"a:root": {
"@_attr": "df",
"#text": "val",
}
};
let result = parser.parse(xmlData, {
//attributeNamePrefix: "",
ignoreAttributes: false,
//parseAttributeValue: true,
allowBooleanAttributes: true
}, { ignoreNameSpace: true });
//console.log(JSON.stringify(result,null,4));
expect(result).toEqual(expected);
});
it("should parse XML with DOCTYPE without internal DTD", function() {
const xmlData = "<?xml version='1.0' standalone='no'?><!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\" ><svg><metadata>test</metadata></svg>";
const expected = {
"svg" : {
"metadata": "test"
}
};
const result = parser.parse(xmlData, {
ignoreAttributes: false,
allowBooleanAttributes: true
});
expect(result).toEqual(expected);
});
it("should parse XML with DOCTYPE without internal DTD", function() {
const xmlData = `<?xml version='1.0' standalone='no'?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg>
<metadata>[test]</metadata>
</svg>`;
const expected = {
"svg" : {
"metadata": "[test]"
}
};
const result = parser.parse(xmlData, {
ignoreAttributes: false,
allowBooleanAttributes: true
});
expect(result).toEqual(expected);
});
it("should parse XML with undefined as text", function() {
const xmlData = `<tag><![CDATA[undefined]]><nested>undefined</nested></tag>`;
const expected = {
"tag" : {
"#text": "undefined",
"nested": "undefined"
}
};
const result = parser.parse(xmlData, {
ignoreAttributes: false,
allowBooleanAttributes: true
});
expect(result).toEqual(expected);
});
it("should trim \t or \n chars", function() {
const xmlData = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
"<MPD\n" +
"\tavailabilityStartTime=\"2020-02-16T10:52:03.119Z\"\n" +
"\txmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n" +
"\t<Period\n" +
"\t\tid=\"1578477220\">\n" +
"\t</Period>\n" +
"</MPD>";
const expected = {
"MPD": {
"$": {
"availabilityStartTime": "2020-02-16T10:52:03.119Z",
"xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance"
},
"Period": {
"$": {
"id": "1578477220"
}
}
}
}
const result = parser.parse(xmlData, {
ignoreAttributes: false,
allowBooleanAttributes: true,
attrNodeName:"$",
attributeNamePrefix : "" //TODO attr node prefix should not set when they're grouped
});
//console.log(JSON.stringify(result,null,4));
expect(result).toEqual(expected);
});
it("should error for when any tag is left to close", function(){
const xmlData = `<?xml version="1.0"?><tag></tag`;
expect(() =>{
parser.parse(xmlData);
}).toThrowError("Closing Tag is not closed.")
})
it("should error for when any tag is left to close", function(){
const xmlData = `<?xml version="1.0"?><!-- bad `;
expect(() =>{
parser.parse(xmlData);
}).toThrowError("Comment is not closed.")
})
it("should error for when any tag is left to close", function(){
const xmlData = `<?xml version="1.0"?><![CDATA ]`;
expect(() =>{
parser.parse(xmlData);
}).toThrowError("CDATA is not closed.")
})
it("should error for when any tag is left to close", function(){
const xmlData = `<?xml version="1.0"?><!DOCTYPE `;
expect(() =>{
parser.parse(xmlData);
}).toThrowError("DOCTYPE is not closed.")
})
it("should error for when any tag is left to close", function(){
const xmlData = `<?xml version="1.0"?><?pi `;
expect(() =>{
parser.parse(xmlData);
}).toThrowError("Pi Tag is not closed.")
})
it("should parse XML when there is a space after tagname", function() {
const xmlData = `<tag ><![CDATA[undefined]]><nested>undefined</nested></tag>`;
const expected = {
"tag" : {
"#text": "undefined",
"nested": "undefined"
}
};
const result = parser.parse(xmlData, {
ignoreAttributes: false,
allowBooleanAttributes: true
},true);
expect(result).toEqual(expected);
});
});