-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
view-strategy.spec.ts
352 lines (335 loc) · 11.9 KB
/
view-strategy.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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
import { Container } from 'aurelia-dependency-injection';
import { metadata } from 'aurelia-metadata';
import {
BindingLanguage,
HtmlBehaviorResource,
ResourceLoadContext,
StaticViewStrategy,
ViewCompileInstruction,
ViewCompiler,
ViewEngine,
ViewEngineHooksResource,
ViewResources,
_hyphenate
} from '../src/aurelia-templating';
describe('ViewLocator', () => {
let viewEngine: ViewEngine;
let container = new Container();
let appResources = new ViewResources();
beforeEach(() => {
let bindingLanguage = new class extends BindingLanguage {
createAttributeInstruction(): any {}
inspectAttribute (resources, tagName, attrName, attrValue) {
return { attrName, attrValue};
}
inspectTextContent(): any {}
};
container = new Container();
appResources = new ViewResources();
viewEngine = {
container: container,
appResources: appResources,
viewCompiler: new ViewCompiler(bindingLanguage, appResources),
// eslint-disable-next-line @typescript-eslint/no-unused-vars
loadViewFactory: (urlOrRegistryEntry, compileInstruction, loadCotnext, target) => {
return Promise.resolve(null);
}
} as ViewEngine;
});
describe('StaticViewStrategy', () => {
it('loads', (done) => {
let strategy = new StaticViewStrategy({
template: '<template><input value.bind="value"></template>',
dependencies: []
});
class El {}
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), El)
.then((factory) => {
expect(factory.resources.getElement('el').target).toBe(El);
}).catch(ex => {
expect(ex.message).not.toContain('Cannot determine default view strategy for object.');
}).then(done);
});
it('loads dependencies when template is "null"', (done) => {
class HooksViewEngineHooks {}
let strategy = new StaticViewStrategy({
template: null,
dependencies: [HooksViewEngineHooks]
});
class El {}
spyOn(ViewEngineHooksResource.prototype, 'initialize').and.callThrough();
spyOn(ViewEngineHooksResource.prototype, 'load').and.callThrough();
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), El)
.then((factory) => {
expect(ViewEngineHooksResource.prototype.initialize)
.toHaveBeenCalledWith(viewEngine.container, HooksViewEngineHooks);
expect(ViewEngineHooksResource.prototype.load)
.toHaveBeenCalledTimes(1);
expect(factory).toBe(null);
done();
})
.catch(done.fail);
});
it('sets formal "moduleId"', () => {
const strategy = new StaticViewStrategy('<template><input value.bind="value"></template>');
expect(strategy.moduleId).toBeDefined();
});
describe('Invalid dependencies', () => {
const dependencies = [null, undefined, 'a valid dep, NOT', 42, Symbol()];
for (const dep of dependencies) {
it('throws when one of dependencies is not a function or a module. Actual: "' + String(dep) + '"', done => {
class El {}
let strategy = new StaticViewStrategy({
template: '<template></template>',
dependencies: () => [dep as any /* invalid value type, so a cast */]
});
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), El)
.then(
() => {
done.fail(new Error('It should have failed with dep: ' + String(dep)));
},
(ex) => {
expect(ex.toString()).toContain('dependency neither function nor object');
done();
}
);
});
}
});
});
it('loads dependencies', (done) => {
class EmmaFrost {
}
class AquaMan {
static $resource = {
type: 'attribute'
}
}
class VentureCapital {
static $resource = {
type: 'valueConverter'
}
}
class BabyBoomer {
static $resource = {
type: 'bindingBehavior'
}
}
class BlitzCrank {
static $resource = {
type: 'viewEngineHooks'
}
beforeCompile() {}
}
let strategy = new StaticViewStrategy({
template: '<template><input value.bind="value"></template>',
dependencies: [AquaMan, VentureCapital, BabyBoomer, BlitzCrank]
});
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), EmmaFrost)
.then((factory) => {
let resources = factory.resources;
expect(resources.getElement('emma-frost').target).toBe(EmmaFrost);
expect(resources.getAttribute('aqua-man').target).toBe(AquaMan);
expect(resources.getValueConverter('ventureCapital') instanceof VentureCapital).toBe(true);
expect(resources.getBindingBehavior('babyBoomer') instanceof BabyBoomer).toBe(true);
expect(resources.beforeCompile).toBe(true);
}).catch(ex => {
expect(ex.message).not.toContain('Cannot determine default view strategy for object.');
}).then(done);
});
it('loads async dependencies', done => {
class Ekko {}
class AureliaSol {
static $resource = {
type: 'attribute'
}
}
class Volibear {
static $resource = {
type: 'valueConverter'
}
}
class Braum {
static $resource = {
type: 'bindingBehavior'
}
}
class Thresh {
static $resource = {
type: 'viewEngineHooks'
}
beforeCompile() {}
}
function mockEsmImport() {
// Note: export name was intenionally made one character to demonstrate static dependencies declaration relies on
// the exported value (class), not the export name. This introduces inconsistency with the rest
return Promise.resolve({
b: Volibear,
c: Braum,
d: Thresh
});
}
let strategy = new StaticViewStrategy({
template: '<template><input value.bind="value"></template>',
dependencies: () => [AureliaSol, mockEsmImport()]
});
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), Ekko)
.then((factory) => {
let resources = factory.resources;
expect(resources.getElement('ekko').target).toBe(Ekko);
expect(resources.getAttribute('aurelia-sol').target).toBe(AureliaSol);
expect(resources.getValueConverter('volibear') instanceof Volibear).toBe(true);
expect(resources.getBindingBehavior('braum') instanceof Braum).toBe(true);
expect(resources.beforeCompile).toBe(true);
})
.catch(ex => {
expect(ex.message).not.toContain('Cannot determine default view strategy for object.');
}).then(done);
});
it('ignore dependencies that are not function', (done) => {
class Ekko {}
function mockEsmImport() {
// Note: export name was intenionally made one character to demonstrate static dependencies declaration relies on
// the exported value (class), not the export name. This introduces inconsistency with the rest
return Promise.resolve({
b: null,
c: undefined,
d: 42,
e: 'a valid dep, NOT',
f: Symbol()
});
}
let strategy = new StaticViewStrategy({
template: '<template></template>',
dependencies: () => [mockEsmImport() as any /* some props of the mocked module aren't valid, though maybe leave it for now */]
});
let spy = spyOn(ViewResources.prototype, 'autoRegister').and.callThrough();
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), Ekko)
.then(
(factory) => {
let resources = factory.resources;
expect(resources.getElement('ekko').target).toBe(Ekko);
expect(spy).toHaveBeenCalledTimes(1);
done();
},
ex => {
expect(false).toBe(true, 'It should not have failled');
done.fail(ex);
}
);
});
describe('with custom elements', () => {
it('loads when mixing multiple custom elements and other resource types', done => {
let loadCount = 0;
class Ekko {}
class AureliaSol1 {
static $resource = { type: 'valueConverter' };
}
class AureliaSol2 {
static $resource = { type: 'valueConverter' };
}
class AureliaSol3 {
static $resource = { type: 'valueConverter' };
}
class Volibear {
static $view = null;
}
class Braum {
static $view = null;
}
class Thresh {
static $view = null;
}
[Volibear, Braum, Thresh].forEach(klass => {
const r = metadata.getOrCreateOwn(metadata.resource, HtmlBehaviorResource, klass) as HtmlBehaviorResource;
r.elementName = _hyphenate(klass.name);
r.load = function(): any {
loadCount++;
}
});
function mockEsmImport() {
// Note: export name was intenionally made one character to demonstrate static dependencies declaration relies on
// the exported value (class), not the export name. This introduces inconsistency with the rest
return Promise.resolve({
b: Volibear,
b1: AureliaSol1,
c: Braum,
c2: AureliaSol2,
d: Thresh,
e: AureliaSol3
});
}
let strategy = new StaticViewStrategy({
template: '<template></template>',
dependencies: () => [mockEsmImport()]
});
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), Ekko)
.then((factory) => {
let resources = factory.resources;
expect(resources.getElement('ekko').target).toBe(Ekko);
expect(resources.getElement('volibear').target).toBe(Volibear);
expect(resources.getElement('braum').target).toBe(Braum);
expect(resources.getElement('thresh').target).toBe(Thresh);
expect(loadCount).toBe(3);
done();
})
.catch(done.fail);
});
it('loads multiple custom element dependencies in same module', (done) => {
let loadCount = 0;
class Ekko {}
class AureliaSol {
static $view = null;
}
class Volibear {
static $view = null;
}
class Braum {
static $view = null;
}
class Thresh {
static $view = null;
}
[AureliaSol, Volibear, Braum, Thresh].forEach(klass => {
const r = metadata.getOrCreateOwn(metadata.resource, HtmlBehaviorResource, klass) as HtmlBehaviorResource;
r.elementName = _hyphenate(klass.name);
r.load = function(): any {
loadCount++;
}
});
function mockEsmImport() {
// Note: export name was intenionally made one character to demonstrate static dependencies declaration relies on
// the exported value (class), not the export name. This introduces inconsistency with the rest
return Promise.resolve({
b: Volibear,
c: Braum,
d: Thresh
});
}
let strategy = new StaticViewStrategy({
template: '<template></template>',
dependencies: () => [AureliaSol, mockEsmImport()]
});
strategy
.loadViewFactory(viewEngine, ViewCompileInstruction.normal, new ResourceLoadContext(), Ekko)
.then((factory) => {
let resources = factory.resources;
expect(resources.getElement('ekko').target).toBe(Ekko);
expect(resources.getElement('aurelia-sol').target).toBe(AureliaSol);
expect(resources.getElement('volibear').target).toBe(Volibear);
expect(resources.getElement('braum').target).toBe(Braum);
expect(resources.getElement('thresh').target).toBe(Thresh);
expect(loadCount).toBe(4);
done();
})
.catch(done.fail);
});
});
});