forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathngEventDirsSpec.js
76 lines (57 loc) · 2.21 KB
/
ngEventDirsSpec.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
'use strict';
describe('event directives', function() {
var element;
afterEach(function() {
dealoc(element);
});
describe('ngSubmit', function() {
it('should get called on form submit', inject(function($rootScope, $compile) {
element = $compile('<form action="" ng-submit="submitted = true">' +
'<input type="submit"/>' +
'</form>')($rootScope);
$rootScope.$digest();
expect($rootScope.submitted).not.toBeDefined();
browserTrigger(element.children()[0]);
expect($rootScope.submitted).toEqual(true);
}));
it('should expose event on form submit', inject(function($rootScope, $compile) {
$rootScope.formSubmission = function(e) {
if (e) {
$rootScope.formSubmitted = 'foo';
}
};
element = $compile('<form action="" ng-submit="formSubmission($event)">' +
'<input type="submit"/>' +
'</form>')($rootScope);
$rootScope.$digest();
expect($rootScope.formSubmitted).not.toBeDefined();
browserTrigger(element.children()[0]);
expect($rootScope.formSubmitted).toEqual('foo');
}));
});
describe('ngBlur', function() {
it('should get called when ngKeydown triggers blur', inject(function($rootScope, $compile) {
$rootScope.blur = function() {
browserTrigger(element, 'blur');
};
element = $compile('<input type="text" ng-blur="blurred = true" ng-keydown="blur()" />')($rootScope);
$rootScope.$digest();
expect($rootScope.blurred).not.toBeDefined();
browserTrigger(element, 'keydown');
expect($rootScope.blurred).toEqual(true);
}));
});
describe('ngFocus', function() {
it('should get called when ngClick triggers focus', inject(function($rootScope, $compile) {
$rootScope.focus = function() {
browserTrigger(element.children()[0], 'focus');
};
element = $compile('<div><input type="text" ng-focus="focused = true" />' +
'<button type="button" ng-click="focus()"></button></div>')($rootScope);
$rootScope.$digest();
expect($rootScope.focused).not.toBeDefined();
browserTrigger(element.children()[1], 'click');
expect($rootScope.focused).toEqual(true);
}));
});
});