This repository was archived by the owner on Sep 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathval-equalto.ts
82 lines (64 loc) · 2.27 KB
/
val-equalto.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
module ResponsivePath.Validation.Unobtrusive.Tests {
describe('Unit: Directive val-equalto', function () {
beforeEach(module('unobtrusive.validation', 'ngMock'));
var compile: angular.ICompileService;
var rootScope: angular.IRootScopeService;
var validation: ValidationService;
var sce: angular.ISCEService;
beforeEach(inject(($compile: angular.ICompileService, $rootScope: angular.IRootScopeService, _validation_: ValidationService, $sce: angular.ISCEService) => {
compile = $compile;
rootScope = $rootScope;
validation = _validation_;
sce = $sce;
}));
var scope: ng.IScope;
var fieldName: string = 'Obj.Target';
var message: string = 'Invalid';
var form: angular.IAugmentedJQuery;
var element: angular.IAugmentedJQuery;
var matchElement: angular.IAugmentedJQuery;
beforeEach(() => {
scope = rootScope.$new();
form = angular.element('<form name="form"/>');
element = angular.element('<input type="text" data-val="true" name="Obj.Target" ng-model="target" data-val-equalto="Invalid" data-val-equalto-other="*.Other" />');
matchElement = angular.element('<input type="text" data-val="true" name="Obj.Other" ng-model="other" />');
form.append(element);
form.append(matchElement);
compile(form)(scope);
scope['form']['Obj.Other'].$setViewValue('othervalue');
scope.$digest();
});
function isValid() {
expect((<ng.INgModelController>element.controller('ngModel')).$invalid).to.be(false);
}
function isInvalid() {
expect((<ng.INgModelController>element.controller('ngModel')).$invalid).to.be(true);
}
it('fails a null value that does not match',() => {
scope['target'] = null;
scope.$digest();
isInvalid();
});
it('fails an empty value that does not match',() => {
scope['target'] = '';
scope.$digest();
isInvalid();
});
it('passes an empty value that does match',() => {
scope['target'] = '';
scope['other'] = '';
scope.$digest();
isInvalid();
});
it('fails an incorrect value',() => {
scope['target'] = '0';
scope.$digest();
isInvalid();
});
it('passes a correct value',() => {
scope['target'] = 'othervalue';
scope.$digest();
isValid();
});
});
}