-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvalueProcessors.test.ts
More file actions
201 lines (175 loc) · 4.89 KB
/
valueProcessors.test.ts
File metadata and controls
201 lines (175 loc) · 4.89 KB
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
import { parseString } from 'dynamic-typing';
import he from 'he'; // HTML entity encoder/decoder
import { describe, expect, it } from 'vitest';
/* eslint-disable camelcase */
import { parse } from '../parse.ts';
const encoder = new TextEncoder();
const decoder = new TextDecoder();
describe('XMLParser', () => {
it('should decode HTML entities if allowed', () => {
const xmlData = encoder.encode(
'<rootNode> foo&bar' </rootNode>',
);
const expected = {
rootNode: "foo&bar'",
};
const result = parse(xmlData, {
tagValueProcessor: (a) => he.decode(decoder.decode(a)),
}); //if you really need to work with a string convert it yourself
expect(result).toStrictEqual(expected);
});
it('should decode HTML entities / char', () => {
const xmlData = encoder.encode(
`<element id="7" data="foo\r\nbar" bug="foo&bar'"/>`,
);
const expected = {
element: {
id: 7,
data: 'foo bar',
bug: "foo&bar'",
},
};
const result = parse(xmlData, {
attributeNameProcessor: (name) => name,
ignoreAttributes: false,
attributeValueProcessor: (a) =>
parseString(he.decode(a, { isAttributeValue: true })),
});
expect(result).toStrictEqual(expected);
});
it('tag value processor should be called with value, tag name and node', () => {
const xmlData = encoder.encode(`<?xml version='1.0'?>
<any_name>
<person>
start
<name1>Jack 1</name1 >
middle
<name2>35</name2>
end
</person>
</any_name>`);
const result = parse(xmlData, {
tagValueProcessor: (value) => {
return value;
},
});
expect(result).toStrictEqual({
any_name: {
person: {
'#text': encoder.encode('startmiddleend'),
name1: encoder.encode('Jack 1'),
name2: encoder.encode('35'),
},
},
});
});
it('tag value processor should be called with value and node', () => {
const xmlData = encoder.encode(`<?xml version='1.0'?>
<any_name>
<person>
start
<name1>Jack 1</name1 >
middle
<name2>35</name2>
end
</person>
</any_name>`);
const resultMap: Record<string, Uint8Array[]> = {};
parse(xmlData, {
tagValueProcessor: (value, node) => {
const existing = resultMap[node.tagName];
if (existing) {
existing.push(value);
} else {
resultMap[node.tagName] = [value];
}
return value;
},
});
expect(resultMap).toStrictEqual({
person: [encoder.encode('startmiddleend')],
name1: [encoder.encode('Jack 1')],
name2: [encoder.encode('35')],
});
});
it('result should have no value if tag processor returns nothing', () => {
const xmlData = encoder.encode(`<?xml version='1.0'?>
<any_name>
<person>
start
<name1>Jack 1</name1 >
middle
<name2>35</name2>
end
</person>
</any_name>`);
const expected = {
any_name: {
person: {
'#text': '',
name1: '',
name2: '',
},
},
};
const result = parse(xmlData, {
tagValueProcessor: () => '',
});
expect(result).toStrictEqual(expected);
});
it('result should have constant value returned by tag processor', () => {
const xmlData = encoder.encode(`<?xml version='1.0'?>
<any_name>
<person>
<name1>Jack 1</name1 >
<name2>35</name2>
</person>
</any_name>`);
const expected = {
any_name: {
person: {
name1: 'fxp',
name2: 'fxp',
},
},
};
const result = parse(xmlData, {
tagValueProcessor: () => {
return 'fxp';
},
});
expect(result).toStrictEqual(expected);
});
it('attribute parser should be called with atrribute name and value', () => {
const xmlData = encoder.encode(
`<element id="7" data="foo bar" bug="foo n bar"/>`,
);
const expected = {
element: {
id: 7,
data: 'foo bar',
bug: 'foo n bar',
},
};
const resultMap: Record<string, string[]> = {};
const result = parse(xmlData, {
attributeNameProcessor: (name) => name,
ignoreAttributes: false,
attributeValueProcessor: (val, attrName) => {
if (resultMap[attrName]) {
resultMap[attrName].push(val);
} else {
resultMap[attrName] = [val];
}
return parseString(val);
},
});
//console.log(JSON.stringify(resultMap,null,4));
expect(result).toStrictEqual(expected);
expect(resultMap).toStrictEqual({
id: ['7'],
data: ['foo bar'],
bug: ['foo n bar'],
});
});
});