-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
view-slot.spec.ts
346 lines (300 loc) · 10.9 KB
/
view-slot.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
import { Container } from 'aurelia-dependency-injection';
import { DOM } from 'aurelia-pal';
import { ShadowDOM, TemplatingEngine, View, ViewFactory, ViewResources, ViewSlot } from '../src/aurelia-templating';
describe('view-slot', () => {
let container: Container;
let templatingEngine: TemplatingEngine;
let viewSlot: ViewSlot;
let parent;
let element;
let comment;
beforeEach(() => {
container = new Container();
parent = DOM.createElement('div');
comment = DOM.createComment('testing');
element = DOM.createElement('div');
parent.appendChild(element);
viewSlot = new ViewSlot(element, false);
container.registerInstance(DOM.Element, element);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
templatingEngine = container.get(TemplatingEngine);
});
describe('when binding to a bindingContext', () => {
let context = { name: 'Test Context' };
let view: View;
let compilerInstructions;
let resources: ViewResources;
let factory: ViewFactory;
beforeEach(() => {
compilerInstructions = {};
resources = container.get(ViewResources);
factory = new ViewFactory(parent, compilerInstructions, resources);
view = factory.create(null);
});
describe('.bind', () => {
it('applies bindingContext if unbound', () => {
viewSlot.bind(context, undefined);
expect(viewSlot.bindingContext).toEqual(context);
});
it('applies new bindingContext if not matching old', () => {
let newContext = { name: 'New Context' };
viewSlot.bind(context, undefined);
expect(viewSlot.bindingContext).toEqual(context);
viewSlot.bind(newContext, undefined);
expect(viewSlot.bindingContext).toEqual(newContext);
});
it('applies new bindingContext to all children', () => {
viewSlot.add(view);
viewSlot.bind(context, undefined);
expect(view.bindingContext).toEqual(context)
});
it('applies override context', () => {
viewSlot.bind(context, { $index: 0 });
expect(viewSlot.overrideContext).toEqual({ $index: 0 });
});
});
describe('.unbind', () => {
it('removes bindingContext if already bound', () => {
viewSlot.bind(context, undefined);
viewSlot.unbind();
expect(viewSlot.isBound).toEqual(false);
expect(viewSlot.bindingContext).toEqual(null);
});
it('removes bindingContext from all children', () => {
viewSlot.add(view);
viewSlot.bind(context, undefined);
expect(view.bindingContext).toEqual(context);
viewSlot.unbind();
expect(view.bindingContext).toEqual(null);
});
it('removes override context', () => {
viewSlot.bind(context, { $index: 0 });
expect(viewSlot.overrideContext).toEqual({ $index: 0 });
viewSlot.unbind();
expect(view.bindingContext).toEqual(null);
expect(view.overrideContext).toEqual(null);
});
});
});
describe('when adding or removing views', () => {
let view;
let secondView;
let thirdView;
let compilerInstructions;
let resources;
let factory;
beforeEach(() => {
compilerInstructions = {};
resources = container.get(ViewResources);
factory = new ViewFactory(parent, compilerInstructions, resources);
view = factory.create();
secondView = factory.create();
thirdView = factory.create();
});
describe('.add', () => {
it('adds a new view to children', () => {
expect(viewSlot.children.length).toEqual(0);
viewSlot.add(view);
expect(viewSlot.children.length).toEqual(1);
});
xit('returns a promise if is animatable', () => {
viewSlot.add(comment)
let result = viewSlot.add(view);
expect(result).toBeInstanceOf(Promise);
});
});
describe('.insert', () => {
it('inserts a new view to children when empty already', () => {
viewSlot.insert(0, secondView);
expect(viewSlot.children.length).toEqual(1);
expect(viewSlot.children[0]).toEqual(secondView);
});
it('inserts a new view to children when contains 1 already', () => {
viewSlot.add(view);
viewSlot.insert(1, secondView);
expect(viewSlot.children.length).toEqual(2);
});
it('inserts a new view to children when contains 2 already', () => {
viewSlot.add(view);
viewSlot.add(secondView);
viewSlot.insert(1, thirdView);
expect(viewSlot.children.length).toEqual(3);
});
xit('returns a promise if is animatable', () => {
viewSlot.add(view);
view.attached();
let result = viewSlot.insert(1, view);
expect(result).toBeInstanceOf(Promise);
});
});
describe('.move', () => {
it('moves a view across children when contains 3 already', () => {
viewSlot.add(view);
viewSlot.add(secondView);
viewSlot.add(thirdView);
viewSlot.move(2, 1);
expect(viewSlot.children.length).toEqual(3);
expect(viewSlot.children[1]).toEqual(thirdView);
expect(viewSlot.children[2]).toEqual(secondView);
});
it('moves a view to the beginning of children when contains 3 already', () => {
viewSlot.add(view);
viewSlot.add(secondView);
viewSlot.add(thirdView);
viewSlot.move(2, 0);
expect(viewSlot.children.length).toEqual(3);
expect(viewSlot.children[0]).toEqual(thirdView);
expect(viewSlot.children[1]).toEqual(view);
expect(viewSlot.children[2]).toEqual(secondView);
});
it('moves a view to the end of children when contains 3 already', () => {
viewSlot.add(view);
viewSlot.add(secondView);
viewSlot.add(thirdView);
viewSlot.move(0, 2);
expect(viewSlot.children.length).toEqual(3);
expect(viewSlot.children[0]).toEqual(secondView);
expect(viewSlot.children[1]).toEqual(thirdView);
expect(viewSlot.children[2]).toEqual(view);
});
});
describe('.remove', () => {
it('removes a view from children', () => {
viewSlot.add(view);
expect(viewSlot.children.length).toEqual(1);
viewSlot.remove(view);
expect(viewSlot.children.length).toEqual(0);
});
it('calls detached if already attached when removed', () => {
spyOn(view, 'detached');
viewSlot.add(view);
viewSlot.attached();
viewSlot.remove(view);
expect(view.detached).toHaveBeenCalled();
});
describe('doesnt call return to cache when returnToCache', () => {
it('is set to false', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.remove(view, false);
expect(view.returnToCache).not.toHaveBeenCalled();
});
it('is not set', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.remove(view);
expect(view.returnToCache).not.toHaveBeenCalled();
});
});
it('calls return to cache when returnToCache is true', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.remove(view, true);
expect(view.returnToCache).toHaveBeenCalled();
});
});
describe('.remove with ShadowDOM', () => {
let { distributeView, undistributeAll, undistributeView } = ShadowDOM;
beforeAll(() => {
ShadowDOM.distributeView = ShadowDOM.undistributeView = ShadowDOM.undistributeAll = () => {};
});
afterAll(() => {
ShadowDOM.distributeView = distributeView;
ShadowDOM.undistributeView = undistributeView;
ShadowDOM.undistributeAll = undistributeAll;
});
beforeEach(() => {
viewSlot.projectTo({ _default_: {} });
});
it('removes a view from children', () => {
viewSlot.add(view);
expect(viewSlot.children.length).toEqual(1);
viewSlot.remove(view);
expect(viewSlot.children.length).toEqual(0);
});
it('calls detached if already attached when removed', () => {
spyOn(view, 'detached');
viewSlot.add(view);
viewSlot.attached();
viewSlot.remove(view);
expect(view.detached).toHaveBeenCalled();
});
describe('doesnt call return to cache when returnToCache', () => {
it('is set to false', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.remove(view, false);
expect(view.returnToCache).not.toHaveBeenCalled();
});
it('is not set', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.remove(view);
expect(view.returnToCache).not.toHaveBeenCalled();
});
});
it('calls return to cache when returnToCache is true', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.remove(view, true);
expect(view.returnToCache).toHaveBeenCalled();
});
it('calls return to cache even when detached is true', () => {
spyOn(view, 'returnToCache');
viewSlot.add(view);
viewSlot.detached();
viewSlot.removeAll(true);
expect(view.returnToCache).toHaveBeenCalled();
});
});
describe('.removeAll', () => {
it('removes all views from children', () => {
viewSlot.add(view);
viewSlot.add(secondView);
expect(viewSlot.children.length).toEqual(2);
viewSlot.removeAll();
expect(viewSlot.children.length).toEqual(0);
});
});
describe('.removeMany', () => {
it('removes many views from children synchronously', () => {
viewSlot.add(view);
viewSlot.add(secondView);
viewSlot.add(thirdView);
expect(viewSlot.children.length).toEqual(3);
viewSlot.removeMany([view, thirdView]);
expect(viewSlot.children.length).toEqual(1);
viewSlot.removeMany([secondView]);
expect(viewSlot.children.length).toEqual(0);
});
});
describe('.attached', () => {
it('sets attached on the slot', () => {
expect(viewSlot.isAttached).toEqual(false);
viewSlot.attached();
expect(viewSlot.isAttached).toEqual(true);
});
it('sets attached on children', () => {
expect(view.isAttached).toEqual(false);
viewSlot.add(view);
viewSlot.attached();
expect(view.isAttached).toEqual(true);
});
});
describe('.detached', () => {
it('sets detached on the slot', () => {
viewSlot.attached();
expect(viewSlot.isAttached).toEqual(true);
viewSlot.detached();
expect(viewSlot.isAttached).toEqual(false);
});
it('sets detached on children', () => {
viewSlot.attached();
expect(viewSlot.isAttached).toEqual(true);
viewSlot.add(view);
viewSlot.detached();
expect(view.isAttached).toEqual(false);
});
});
});
});