forked from hodgepodgers/ng-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ng-intl-tel-input.directive.spec.js
156 lines (139 loc) · 5.61 KB
/
ng-intl-tel-input.directive.spec.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
describe('ng-intl-tel-input', function () {
var $scope, form, doc, element;
beforeEach(module('ngIntlTelInput'));
beforeEach(inject(function ($compile, $rootScope) {
$scope = $rootScope;
doc = angular.element(
'<form name="form">' +
'<label for="tel">Telephone</label>' +
'<input ng-model="model.tel" type="text" name="tel" ng-intl-tel-input />' +
'</form>'
);
$scope.model = {tel: ''};
$compile(doc)($scope);
$scope.$digest();
form = $scope.form;
element = doc.find('input').eq(0);
}));
it('should apply the intl-tel-input jquery plugin to text fields', function () {
expect(doc.find('.intl-tel-input').length).toEqual(1);
});
it('should apply the intl-tel-input jquery plugin to tel fields', inject(function ($compile, $rootScope) {
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" type="tel" name="tel" ng-intl-tel-input />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
expect(doc.find('.intl-tel-input').length).toEqual(1);
}));
it('should apply the intl-tel-input jquery plugin to text and tel fields', inject(function ($compile, $rootScope) {
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" type="password" name="tel" ng-intl-tel-input />' +
'<input ng-model="model.tel" type="email" name="tel" ng-intl-tel-input />' +
'<input ng-model="model.tel" type="number" name="tel" ng-intl-tel-input />' +
'<input ng-model="model.tel" type="date" name="tel" ng-intl-tel-input />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
expect(doc.find('.intl-tel-input').length).toEqual(0);
}));
it('should set the field as invalid with bad input', function () {
angular.element(element).val('07400 123456').trigger('input');
$scope.$digest();
expect(form.tel.$error.ngIntlTelInput).toBeDefined();
expect(form.tel.$valid).toBe(false);
});
it('should set the field as invalid with input longer than > 0', function () {
angular.element(element).val('1').trigger('input');
$scope.$digest();
expect(form.tel.$error.ngIntlTelInput).toBeDefined();
expect(form.tel.$valid).toBe(false);
});
it('should set the field as valid with good input', function () {
angular.element(element).val('2103128425').trigger('input');
$scope.$digest();
expect(form.tel.$error.ngIntlTelInput).toBeUndefined();
expect(form.tel.$valid).toBe(true);
});
it('should set the field as valid with empty input', function () {
angular.element(element).val('').trigger('input');
$scope.$digest();
expect(form.tel.$error.ngIntlTelInput).toBeUndefined();
expect(form.tel.$valid).toBe(true);
});
it('should set the model value to the full phone number with dial code', function () {
angular.element(element).val('2103128425').trigger('input');
$scope.$digest();
expect($scope.model.tel).toEqual('+12103128425');
});
it('should set the model value to the full phone number with dial code and plus sign prefix', function () {
angular.element(element).val('+12103128425').trigger('input');
$scope.$digest();
expect($scope.model.tel).toEqual('+12103128425');
});
it('should not set the model value when invalid', function () {
angular.element(element).val('07400 123456').trigger('input');
$scope.$digest();
expect($scope.model.tel).toBeUndefined();
});
it('should set the initial country', inject(function ($compile) {
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" type="text" name="tel" ng-intl-tel-input data-initial-country="af" />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
element = doc.find('input').eq(0);
expect(element.intlTelInput('getSelectedCountryData').iso2).toEqual('af');
}));
it('should set the country when model value is present', inject(function ($compile) {
$scope.model.tel = '447400123456';
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" type="text" name="tel" ng-intl-tel-input />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
element = doc.find('input').eq(0);
expect(element.intlTelInput('getSelectedCountryData').iso2).toEqual('gb');
}));
it('should set the country when model value is present with plus sign prefix', inject(function ($compile) {
$scope.model.tel = '+447400123456';
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" type="text" name="tel" ng-intl-tel-input />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
element = doc.find('input').eq(0);
expect(element.intlTelInput('getSelectedCountryData').iso2).toEqual('gb');
}));
it('should apply the intl-tel-input jquery plugin to input fields without a type declaration', inject(function ($compile) {
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" name="tel" ng-intl-tel-input />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
expect(doc.find('.intl-tel-input').length).toEqual(1);
}));
it('should set the selected country data when data-selected-country attribute is present', inject(function ($compile) {
$scope.model.selectedCountry = null;
doc = angular.element(
'<form name="form">' +
'<input ng-model="model.tel" type="text" name="tel" ng-intl-tel-input data-selected-country="model.selectedCountry" />' +
'</form>'
);
$compile(doc)($scope);
$scope.$digest();
expect($scope.model.selectedCountry.iso2).toEqual('us');
}));
});