Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(input): ngMinlength/ngMaxlength should not invalidate non-stringlike values #6002

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/ng/directive/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,8 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
if (attr.ngMinlength) {
var minlength = int(attr.ngMinlength);
var minLengthValidator = function(value) {
return validate(ctrl, 'minlength', ctrl.$isEmpty(value) || value.length >= minlength, value);
return validate(ctrl, 'minlength', ctrl.$isEmpty(value) ||
(!isDefined(value.length) || value.length >= minlength), value);
};

ctrl.$parsers.push(minLengthValidator);
Expand All @@ -1009,7 +1010,8 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
if (attr.ngMaxlength) {
var maxlength = int(attr.ngMaxlength);
var maxLengthValidator = function(value) {
return validate(ctrl, 'maxlength', ctrl.$isEmpty(value) || value.length <= maxlength, value);
return validate(ctrl, 'maxlength', ctrl.$isEmpty(value) ||
(!isDefined(value.length) || value.length <= maxlength), value);
};

ctrl.$parsers.push(maxLengthValidator);
Expand Down
56 changes: 56 additions & 0 deletions test/ng/directive/inputSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,34 @@ describe('input', function() {
changeInputValueTo('aaa');
expect(scope.value).toBe('aaa');
});


it('should invalidate model values shorter than given minlength', function() {
compileInput('<input type="text" ng-model="value" ng-minlength="5" />');

scope.$apply(function() {
scope.value = "1234";
});

expect(inputElm).toBeInvalid();

scope.$apply(function() {
scope.value = "123456789";
});

expect(inputElm).toBeValid();
});


it('should not invalidate model-values which are not string-like or array-like', function() {
compileInput('<input type="text" ng-model="value" ng-minlength="3" />');

scope.$apply(function() {
scope.value = 10;
});

expect(inputElm).toBeValid();
});
});


Expand All @@ -758,6 +786,34 @@ describe('input', function() {
changeInputValueTo('aaa');
expect(scope.value).toBe('aaa');
});


it('should invalidate model values longer than given maxlength', function() {
compileInput('<input type="text" ng-model="value" ng-maxlength="5" />');

scope.$apply(function() {
scope.value = "123456789";
});

expect(inputElm).toBeInvalid();

scope.$apply(function() {
scope.value = "1234";
});

expect(inputElm).toBeValid();
});


it('should not invalidate model-values which are not string-like or array-like', function() {
compileInput('<input type="text" ng-model="value" ng-maxlength="3" />');

scope.$apply(function() {
scope.value = 1000;
});

expect(inputElm).toBeValid();
});
});


Expand Down