forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathngRefSpec.js
561 lines (458 loc) · 17.7 KB
/
ngRefSpec.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
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
'use strict';
describe('ngRef', function() {
beforeEach(function() {
jasmine.addMatchers({
toEqualJq: function(util) {
return {
compare: function(actual, expected) {
// Jquery <= 2.2 objects add a context property that is irrelevant for equality
if (actual && actual.hasOwnProperty('context')) {
delete actual.context;
}
if (expected && expected.hasOwnProperty('context')) {
delete expected.context;
}
return {
pass: util.equals(actual, expected)
};
}
};
}
});
});
describe('on a component', function() {
var myComponentController, attributeDirectiveController, $rootScope, $compile;
beforeEach(module(function($compileProvider) {
$compileProvider.component('myComponent', {
template: 'foo',
controller: function() {
myComponentController = this;
}
});
$compileProvider.directive('attributeDirective', function() {
return {
restrict: 'A',
controller: function() {
attributeDirectiveController = this;
}
};
});
}));
beforeEach(inject(function(_$compile_, _$rootScope_) {
$rootScope = _$rootScope_;
$compile = _$compile_;
}));
it('should bind in the current scope the controller of a component', function() {
$rootScope.$ctrl = 'undamaged';
$compile('<my-component ng-ref="myComponentRef"></my-component>')($rootScope);
expect($rootScope.$ctrl).toBe('undamaged');
expect($rootScope.myComponentRef).toBe(myComponentController);
});
it('should throw if the expression is not assignable', function() {
expect(function() {
$compile('<my-component ng-ref="\'hello\'"></my-component>')($rootScope);
}).toThrowMinErr('ngRef', 'nonassign', 'Expression in ngRef="\'hello\'" is non-assignable!');
});
it('should work with non:normalized entity name', function() {
$compile('<my:component ng-ref="myComponent1"></my:component>')($rootScope);
expect($rootScope.myComponent1).toBe(myComponentController);
});
it('should work with data-non-normalized entity name', function() {
$compile('<data-my-component ng-ref="myComponent2"></data-my-component>')($rootScope);
expect($rootScope.myComponent2).toBe(myComponentController);
});
it('should work with x-non-normalized entity name', function() {
$compile('<x-my-component ng-ref="myComponent3"></x-my-component>')($rootScope);
expect($rootScope.myComponent3).toBe(myComponentController);
});
it('should work with data-non-normalized attribute name', function() {
$compile('<my-component data-ng-ref="myComponent1"></my-component>')($rootScope);
expect($rootScope.myComponent1).toBe(myComponentController);
});
it('should work with x-non-normalized attribute name', function() {
$compile('<my-component x-ng-ref="myComponent2"></my-component>')($rootScope);
expect($rootScope.myComponent2).toBe(myComponentController);
});
it('should not bind the controller of an attribute directive', function() {
$compile('<my-component attribute-directive-1 ng-ref="myComponentRef"></my-component>')($rootScope);
expect($rootScope.myComponentRef).toBe(myComponentController);
});
it('should not leak to parent scopes', function() {
var template =
'<div ng-if="true">' +
'<my-component ng-ref="myComponent"></my-component>' +
'</div>';
$compile(template)($rootScope);
expect($rootScope.myComponent).toBe(undefined);
});
it('should nullify the variable once the component is destroyed', function() {
var template = '<div><my-component ng-ref="myComponent"></my-component></div>';
var element = $compile(template)($rootScope);
expect($rootScope.myComponent).toBe(myComponentController);
var componentElement = element.children();
var isolateScope = componentElement.isolateScope();
componentElement.remove();
isolateScope.$destroy();
expect($rootScope.myComponent).toBe(null);
});
it('should be compatible with entering/leaving components', inject(function($animate) {
var template = '<my-component ng-ref="myComponent"></my-component>';
$rootScope.$ctrl = {};
var parent = $compile('<div></div>')($rootScope);
var leaving = $compile(template)($rootScope);
var leavingController = myComponentController;
$animate.enter(leaving, parent);
expect($rootScope.myComponent).toBe(leavingController);
var entering = $compile(template)($rootScope);
var enteringController = myComponentController;
$animate.enter(entering, parent);
$animate.leave(leaving, parent);
expect($rootScope.myComponent).toBe(enteringController);
}));
it('should allow binding to a nested property', function() {
$rootScope.obj = {};
$compile('<my-component ng-ref="obj.myComponent"></my-component>')($rootScope);
expect($rootScope.obj.myComponent).toBe(myComponentController);
});
});
it('should bind the jqlite wrapped DOM element if there is no component', inject(function($compile, $rootScope) {
var el = $compile('<span ng-ref="mySpan">my text</span>')($rootScope);
expect($rootScope.mySpan).toEqualJq(el);
expect($rootScope.mySpan[0].textContent).toBe('my text');
}));
it('should nullify the expression value if the DOM element is destroyed', inject(function($compile, $rootScope) {
var element = $compile('<div><span ng-ref="mySpan">my text</span></div>')($rootScope);
element.children().remove();
expect($rootScope.mySpan).toBe(null);
}));
it('should bind the controller of an element directive', function() {
var myDirectiveController;
module(function($compileProvider) {
$compileProvider.directive('myDirective', function() {
return {
controller: function() {
myDirectiveController = this;
}
};
});
});
inject(function($compile, $rootScope) {
$compile('<my-directive ng-ref="myDirective"></my-directive>')($rootScope);
expect($rootScope.myDirective).toBe(myDirectiveController);
});
});
describe('ngRefRead', function() {
it('should bind the element instead of the controller of a component if ngRefRead="$element" is set', function() {
module(function($compileProvider) {
$compileProvider.component('myComponent', {
template: 'my text',
controller: function() {}
});
});
inject(function($compile, $rootScope) {
var el = $compile('<my-component ng-ref="myEl" ng-ref-read="$element"></my-component>')($rootScope);
expect($rootScope.myEl).toEqualJq(el);
expect($rootScope.myEl[0].textContent).toBe('my text');
});
});
it('should bind the element instead an element-directive controller if ngRefRead="$element" is set', function() {
module(function($compileProvider) {
$compileProvider.directive('myDirective', function() {
return {
restrict: 'E',
template: 'my text',
controller: function() {}
};
});
});
inject(function($compile, $rootScope) {
var el = $compile('<my-directive ng-ref="myEl" ng-ref-read="$element"></my-directive>')($rootScope);
expect($rootScope.myEl).toEqualJq(el);
expect($rootScope.myEl[0].textContent).toBe('my text');
});
});
it('should bind an attribute-directive controller if ngRefRead="controllerName" is set', function() {
var attrDirective1Controller;
module(function($compileProvider) {
$compileProvider.directive('elementDirective', function() {
return {
restrict: 'E',
template: 'my text',
controller: function() {}
};
});
$compileProvider.directive('attributeDirective1', function() {
return {
restrict: 'A',
controller: function() {
attrDirective1Controller = this;
}
};
});
$compileProvider.directive('attributeDirective2', function() {
return {
restrict: 'A',
controller: function() {}
};
});
});
inject(function($compile, $rootScope) {
var el = $compile('<element-directive' +
'attribute-directive-1' +
'attribute-directive-2' +
'ng-ref="myController"' +
'ng-ref-read="$element"></element-directive>')($rootScope);
expect($rootScope.myController).toBe(attrDirective1Controller);
});
});
it('should throw if no controller is found for the ngRefRead value', function() {
module(function($compileProvider) {
$compileProvider.directive('elementDirective', function() {
return {
restrict: 'E',
template: 'my text',
controller: function() {}
};
});
});
inject(function($compile, $rootScope) {
expect(function() {
$compile('<element-directive ' +
'ng-ref="myController"' +
'ng-ref-read="attribute"></element-directive>')($rootScope);
}).toThrowMinErr('ngRef', 'noctrl', 'The controller for ngRefRead="attribute" could not be found on ngRef="myController"');
});
});
});
it('should bind the jqlite element if the controller is on an attribute-directive', function() {
var myDirectiveController;
module(function($compileProvider) {
$compileProvider.directive('myDirective', function() {
return {
restrict: 'A',
template: 'my text',
controller: function() {
myDirectiveController = this;
}
};
});
});
inject(function($compile, $rootScope) {
var el = $compile('<div my-directive ng-ref="myEl"></div>')($rootScope);
expect(myDirectiveController).toBeDefined();
expect($rootScope.myEl).toEqualJq(el);
expect($rootScope.myEl[0].textContent).toBe('my text');
});
});
it('should bind the jqlite element if the controller is on an class-directive', function() {
var myDirectiveController;
module(function($compileProvider) {
$compileProvider.directive('myDirective', function() {
return {
restrict: 'C',
template: 'my text',
controller: function() {
myDirectiveController = this;
}
};
});
});
inject(function($compile, $rootScope) {
var el = $compile('<div class="my-directive" ng-ref="myEl"></div>')($rootScope);
expect(myDirectiveController).toBeDefined();
expect($rootScope.myEl).toEqualJq(el);
expect($rootScope.myEl[0].textContent).toBe('my text');
});
});
describe('transclusion', function() {
it('should work with simple transclusion', function() {
module(function($compileProvider) {
$compileProvider
.component('myComponent', {
transclude: true,
template: '<ng-transclude></ng-transclude>',
controller: function() {
this.text = 'SUCCESS';
}
});
});
inject(function($compile, $rootScope) {
var template = '<my-component ng-ref="myComponent">{{myComponent.text}}</my-component>';
var element = $compile(template)($rootScope);
$rootScope.$apply();
expect(element.text()).toBe('SUCCESS');
dealoc(element);
});
});
it('should be compatible with element transclude components', function() {
module(function($compileProvider) {
$compileProvider
.component('myComponent', {
transclude: 'element',
controller: function($animate, $element, $transclude) {
this.text = 'SUCCESS';
this.$postLink = function() {
$transclude(function(clone, newScope) {
$animate.enter(clone, $element.parent(), $element);
});
};
}
});
});
inject(function($compile, $rootScope) {
var template =
'<div>' +
'<my-component ng-ref="myComponent">' +
'{{myComponent.text}}' +
'</my-component>' +
'</div>';
var element = $compile(template)($rootScope);
$rootScope.$apply();
expect(element.text()).toBe('SUCCESS');
dealoc(element);
});
});
it('should be compatible with ngIf and transclusion on same element', function() {
module(function($compileProvider) {
$compileProvider.component('myComponent', {
template: '<ng-transclude></ng-transclude>',
transclude: true,
controller: function($scope) {
this.text = 'SUCCESS';
}
});
});
inject(function($compile, $rootScope) {
var template =
'<div>' +
'<my-component ng-if="present" ng-ref="myComponent" >' +
'{{myComponent.text}}' +
'</my-component>' +
'</div>';
var element = $compile(template)($rootScope);
$rootScope.$apply('present = false');
expect(element.text()).toBe('');
$rootScope.$apply('present = true');
expect(element.text()).toBe('SUCCESS');
$rootScope.$apply('present = false');
expect(element.text()).toBe('');
$rootScope.$apply('present = true');
expect(element.text()).toBe('SUCCESS');
dealoc(element);
});
});
it('should be compatible with element transclude & destroy components', function() {
var myComponentController;
module(function($compileProvider) {
$compileProvider
.component('myTranscludingComponent', {
transclude: 'element',
controller: function($animate, $element, $transclude) {
myComponentController = this;
var currentClone, currentScope;
this.transclude = function(text) {
this.text = text;
$transclude(function(clone, newScope) {
currentClone = clone;
currentScope = newScope;
$animate.enter(clone, $element.parent(), $element);
});
};
this.destroy = function() {
currentClone.remove();
currentScope.$destroy();
};
}
});
});
inject(function($compile, $rootScope) {
var template =
'<div>' +
'<my-transcluding-component ng-ref="myComponent">' +
'{{myComponent.text}}' +
'</my-transcluding-component>' +
'</div>';
var element = $compile(template)($rootScope);
$rootScope.$apply();
expect(element.text()).toBe('');
myComponentController.transclude('transcludedOk');
$rootScope.$apply();
expect(element.text()).toBe('transcludedOk');
myComponentController.destroy();
$rootScope.$apply();
expect(element.text()).toBe('');
});
});
it('should be compatible with element transclude directives', function() {
module(function($compileProvider) {
$compileProvider
.directive('myDirective', function($animate) {
return {
transclude: 'element',
controller: function() {
this.text = 'SUCCESS';
},
link: function(scope, element, attrs, ctrl, $transclude) {
$transclude(function(clone, newScope) {
$animate.enter(clone, element.parent(), element);
});
}
};
});
});
inject(function($compile, $rootScope) {
var template =
'<div>' +
'<my-directive ng-ref="myDirective">' +
'{{myDirective.text}}' +
'</my-directive>' +
'</div>';
var element = $compile(template)($rootScope);
$rootScope.$apply();
expect(element.text()).toBe('SUCCESS');
dealoc(element);
});
});
});
it('should work with components with templates via $http', function() {
module(function($compileProvider) {
$compileProvider.component('httpComponent', {
templateUrl: 'template.html',
controller: function() {
this.me = true;
}
});
});
inject(function($compile, $httpBackend, $rootScope) {
var template = '<div><http-component ng-ref="controller"></http-component></div>';
var element = $compile(template)($rootScope);
$httpBackend.expect('GET', 'template.html').respond('ok');
$rootScope.$apply();
expect($rootScope.controller).toBeUndefined();
$httpBackend.flush();
expect($rootScope.controller.me).toBe(true);
dealoc(element);
});
});
it('should work with ngRepeat-ed components', function() {
var controllers = [];
module(function($compileProvider) {
$compileProvider.component('myComponent', {
template: 'foo',
controller: function() {
controllers.push(this);
}
});
});
inject(function($compile, $rootScope) {
$rootScope.elements = [0,1,2,3,4];
$rootScope.controllers = []; // Initialize the array because ngRepeat creates a child scope
var template = '<div><my-component ng-repeat="(key, el) in elements" ng-ref="controllers[key]"></my-component></div>';
var element = $compile(template)($rootScope);
$rootScope.$apply();
expect($rootScope.controllers).toEqual(controllers);
$rootScope.$apply('elements = []');
expect($rootScope.controllers).toEqual([null, null, null, null, null]);
});
});
});