This repository has been archived by the owner on Aug 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
xml-namespace-loader.spec.ts
315 lines (255 loc) · 12.3 KB
/
xml-namespace-loader.spec.ts
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
import xmlNsLoader from "./xml-namespace-loader";
import { convertSlashesInPath } from "./projectHelpers";
const CODE_FILE = `
<Page xmlns="http://www.nativescript.org/tns.xsd">
<StackLayout>
<GridLayout xmlns:chart="nativescript-ui-chart">
<chart:RadCartesianChart></chart:RadCartesianChart>
</GridLayout>
<GridLayout xmlns:chart="nativescript-ui-chart">
<chart:RadCartesianChart></chart:RadCartesianChart>
</GridLayout>
</StackLayout>
</Page>
`;
interface TestSetup {
resolveMap: { [path: string]: string },
expectedDeps: string[],
expectedRegs: { name: string, path: string }[],
ignore?: RegExp,
assureNoDeps?: boolean,
expectError?: boolean,
expectWarnings?: number
}
function getContext(
done: DoneFn,
{ resolveMap, expectedDeps, expectedRegs, assureNoDeps, ignore, expectError, expectWarnings }: TestSetup) {
const actualDeps: string[] = [];
const actualWarnings: Error[] =[]
let callbackCalled = false;
const loaderContext = {
rootContext: "app",
context: "app/component",
async: () => (error, source: string) => {
if (callbackCalled) {
done.fail("Callback called more than once!");
}
callbackCalled = true;
expectedDeps.forEach(expectedDep => expect(actualDeps).toContain(expectedDep));
expectedRegs.forEach(({ name, path }) => {
const regCode = `global.registerModule("${name}", function() { return require("${path}"); });`;
expect(source).toContain(regCode);
})
if (assureNoDeps) {
expect(actualDeps.length).toBe(0);
expect(source).not.toContain("global.registerModule");
}
if(expectWarnings){
expect(actualWarnings.length).toEqual(expectWarnings);
}
if (error && !expectError) {
done.fail(error)
} else if (!error && expectError) {
done.fail("Error expected here")
} else {
done();
}
},
resolve: (context: string, request: string, callback: (err: Error, result: string) => void) => {
request = convertSlashesInPath(request);
if (resolveMap[request]) {
callback(undefined, resolveMap[request]);
} else {
callback(new Error(`Module ${request} not found`), undefined);
}
},
addDependency: (dep: string) => {
actualDeps.push(dep);
},
emitWarning: (err: Error) => {
actualWarnings.push(err);
},
query: { ignore }
}
return loaderContext;
}
describe("XmlNamespaceLoader", () => {
it("with namespace pointing to files", (done) => {
const resolveMap = {
"app/nativescript-ui-chart": "app/nativescript-ui-chart.js",
"app/nativescript-ui-chart.xml": "app/nativescript-ui-chart.xml",
"app/nativescript-ui-chart.css": "app/nativescript-ui-chart.css",
};
const expectedDeps = [
"app/nativescript-ui-chart.js",
"app/nativescript-ui-chart.xml",
"app/nativescript-ui-chart.css",
];
const expectedRegs = [
{ name: "nativescript-ui-chart", path: "app/nativescript-ui-chart.js" },
{ name: "nativescript-ui-chart/RadCartesianChart", path: "app/nativescript-ui-chart.js" },
{ name: "nativescript-ui-chart/RadCartesianChart.xml", path: "app/nativescript-ui-chart.xml" },
{ name: "nativescript-ui-chart/RadCartesianChart.css", path: "app/nativescript-ui-chart.css" },
];
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs });
xmlNsLoader.call(loaderContext, CODE_FILE);
})
it("with namespace/elementName pointing to files (with package.json)", (done) => {
const resolveMap = {
"app/nativescript-ui-chart": "app/nativescript-ui-chart/RadCartesianChart.js", //simulate package.json
"app/nativescript-ui-chart/RadCartesianChart": "app/nativescript-ui-chart/RadCartesianChart.js",
"app/nativescript-ui-chart/RadCartesianChart.xml": "app/nativescript-ui-chart/RadCartesianChart.xml",
"app/nativescript-ui-chart/RadCartesianChart.css": "app/nativescript-ui-chart/RadCartesianChart.css",
}
const expectedDeps = [
"app/nativescript-ui-chart/RadCartesianChart.js",
"app/nativescript-ui-chart/RadCartesianChart.xml",
"app/nativescript-ui-chart/RadCartesianChart.css",
];
const expectedRegs = [
{ name: "nativescript-ui-chart", path: "app/nativescript-ui-chart/RadCartesianChart.js" },
{ name: "nativescript-ui-chart/RadCartesianChart", path: "app/nativescript-ui-chart/RadCartesianChart.js" },
{ name: "nativescript-ui-chart/RadCartesianChart.xml", path: "app/nativescript-ui-chart/RadCartesianChart.xml" },
{ name: "nativescript-ui-chart/RadCartesianChart.css", path: "app/nativescript-ui-chart/RadCartesianChart.css" },
];
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs });
xmlNsLoader.call(loaderContext, CODE_FILE);
})
it("with namespace/elementName pointing to files", (done) => {
const resolveMap = {
"app/nativescript-ui-chart/RadCartesianChart": "app/nativescript-ui-chart/RadCartesianChart.js",
"app/nativescript-ui-chart/RadCartesianChart.xml": "app/nativescript-ui-chart/RadCartesianChart.xml",
"app/nativescript-ui-chart/RadCartesianChart.css": "app/nativescript-ui-chart/RadCartesianChart.css",
}
const expectedDeps = [
"app/nativescript-ui-chart/RadCartesianChart.js",
"app/nativescript-ui-chart/RadCartesianChart.xml",
"app/nativescript-ui-chart/RadCartesianChart.css",
];
const expectedRegs = [
{ name: "nativescript-ui-chart", path: "app/nativescript-ui-chart/RadCartesianChart.js" },
{ name: "nativescript-ui-chart/RadCartesianChart", path: "app/nativescript-ui-chart/RadCartesianChart.js" },
{ name: "nativescript-ui-chart/RadCartesianChart.xml", path: "app/nativescript-ui-chart/RadCartesianChart.xml" },
{ name: "nativescript-ui-chart/RadCartesianChart.css", path: "app/nativescript-ui-chart/RadCartesianChart.css" },
];
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs });
xmlNsLoader.call(loaderContext, CODE_FILE);
})
it("with namespace/elementName pointing to files - only XML and CSS", (done) => {
const resolveMap = {
"app/nativescript-ui-chart/RadCartesianChart.xml": "app/nativescript-ui-chart/RadCartesianChart.xml",
"app/nativescript-ui-chart/RadCartesianChart.css": "app/nativescript-ui-chart/RadCartesianChart.css",
}
const expectedDeps = [
"app/nativescript-ui-chart/RadCartesianChart.xml",
"app/nativescript-ui-chart/RadCartesianChart.css",
];
const expectedRegs = [
{ name: "nativescript-ui-chart/RadCartesianChart.xml", path: "app/nativescript-ui-chart/RadCartesianChart.xml" },
{ name: "nativescript-ui-chart/RadCartesianChart.css", path: "app/nativescript-ui-chart/RadCartesianChart.css" },
];
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs });
xmlNsLoader.call(loaderContext, CODE_FILE);
})
it("with plugin path", (done) => {
const resolveMap = {
"nativescript-ui-chart": "node_module/nativescript-ui-chart/ui-chart.js",
}
const expectedDeps = [
];
const expectedRegs = [
{ name: "nativescript-ui-chart", path: "nativescript-ui-chart" },
{ name: "nativescript-ui-chart/RadCartesianChart", path: "nativescript-ui-chart" },
];
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs });
xmlNsLoader.call(loaderContext, CODE_FILE);
})
it("with ignored namespace should not add deps or register calls", (done) => {
const resolveMap = {
"app/nativescript-ui-chart": "app/nativescript-ui-chart.js",
"app/nativescript-ui-chart.xml": "app/nativescript-ui-chart.xml",
"app/nativescript-ui-chart.css": "app/nativescript-ui-chart.css",
};
const expectedDeps = [];
const expectedRegs = [];
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, ignore: /nativescript\-ui\-chart/, assureNoDeps: true });
xmlNsLoader.call(loaderContext, CODE_FILE);
})
it("with XML declaration and Doctype does not fail", (done) => {
const resolveMap = {};
const expectedDeps = [];
const expectedRegs = [];
const testXml = `
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- comment.xml -->
<Page xmlns="http://www.nativescript.org/tns.xsd"></Page>`;
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, assureNoDeps: true });
xmlNsLoader.call(loaderContext, testXml);
})
it("with invalid XML fails", (done) => {
const resolveMap = {};
const expectedDeps = [];
const expectedRegs = [];
const testXml = `<Page xmlns="http://www.nativescript.org/tns.xsd"></PageOpsWrongTagHere>`;
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, expectError: true });
xmlNsLoader.call(loaderContext, testXml);
})
it("doesn't throw with ios and android platform namespaces", (done) => {
const resolveMap = {};
const expectedDeps = [];
const expectedRegs = [];
const testXml = `
<Page xmlns="http://www.nativescript.org/tns.xsd">
<ios:GridLayout />
<android:GridLayout />
</Page>`;
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, assureNoDeps: true });
xmlNsLoader.call(loaderContext, testXml);
})
it("doesn't throw with ios and android platform namespaces", (done) => {
const resolveMap = {};
const expectedDeps = [];
const expectedRegs = [];
const testXml = `
<Page xmlns="http://www.nativescript.org/tns.xsd">
<ios:GridLayout />
<ios:GridLayout></ios:GridLayout>
<android:GridLayout />
<android:GridLayout></android:GridLayout>
</Page>`;
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, assureNoDeps: true });
xmlNsLoader.call(loaderContext, testXml);
})
it("throws with unbound namespace namespaces", (done) => {
const resolveMap = {};
const expectedDeps = [];
const expectedRegs = [];
const testXml = `
<Page xmlns="http://www.nativescript.org/tns.xsd">
<custom1:CustomComponent />
<custom2:CustomComponent />
</Page>`;
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, expectError: true });
xmlNsLoader.call(loaderContext, testXml);
})
it("with '&&', '||', '<=' and '>=' in binding expression, emits warnings, but does not fail", (done) => {
const resolveMap = {
"nativescript-ui-chart": "node_module/nativescript-ui-chart/ui-chart.js",
}
const expectedDeps = [];
const expectedRegs = [
{ name: "nativescript-ui-chart", path: "nativescript-ui-chart" },
{ name: "nativescript-ui-chart/RadCartesianChart", path: "nativescript-ui-chart" },
];
const testXml = `
<Page xmlns="http://www.nativescript.org/tns.xsd">
<StackLayout xmlns:chart="nativescript-ui-chart">
<TextField text="{{ var1 && var2 || var1 >= var2 || var2 <= var1 }}" />
<chart:RadCartesianChart></chart:RadCartesianChart>
</StackLayout>
</Page>`;
const loaderContext = getContext(done, { resolveMap, expectedDeps, expectedRegs, expectWarnings: 1 });
xmlNsLoader.call(loaderContext, testXml);
})
});