@@ -2452,6 +2452,16 @@ describe('input', function() {
2452
2452
expect ( inputElm ) . toBeValid ( ) ;
2453
2453
} ) ;
2454
2454
2455
+ it ( 'should only accept empty values when maxlength is 0' , function ( ) {
2456
+ compileInput ( '<input type="text" ng-model="value" ng-maxlength="0" />' ) ;
2457
+
2458
+ changeInputValueTo ( '' ) ;
2459
+ expect ( inputElm ) . toBeValid ( ) ;
2460
+
2461
+ changeInputValueTo ( 'a' ) ;
2462
+ expect ( inputElm ) . toBeInvalid ( ) ;
2463
+ } ) ;
2464
+
2455
2465
it ( 'should accept values of any length when maxlength is negative' , function ( ) {
2456
2466
compileInput ( '<input type="text" ng-model="value" ng-maxlength="-1" />' ) ;
2457
2467
@@ -2462,6 +2472,27 @@ describe('input', function() {
2462
2472
expect ( inputElm ) . toBeValid ( ) ;
2463
2473
} ) ;
2464
2474
2475
+ it ( 'should accept values of any length when maxlength is non-numeric' , function ( ) {
2476
+ compileInput ( '<input type="text" ng-model="value" ng-maxlength="{{maxlength}}" />' ) ;
2477
+ changeInputValueTo ( 'aaaaaaaaaa' ) ;
2478
+
2479
+ scope . $apply ( 'maxlength = "5"' ) ;
2480
+ expect ( inputElm ) . toBeInvalid ( ) ;
2481
+
2482
+ scope . $apply ( 'maxlength = "abc"' ) ;
2483
+ expect ( inputElm ) . toBeValid ( ) ;
2484
+
2485
+ scope . $apply ( 'maxlength = ""' ) ;
2486
+ expect ( inputElm ) . toBeValid ( ) ;
2487
+
2488
+ scope . $apply ( 'maxlength = null' ) ;
2489
+ expect ( inputElm ) . toBeValid ( ) ;
2490
+
2491
+ scope . someObj = { } ;
2492
+ scope . $apply ( 'maxlength = someObj' ) ;
2493
+ expect ( inputElm ) . toBeValid ( ) ;
2494
+ } ) ;
2495
+
2465
2496
it ( 'should listen on ng-maxlength when maxlength is observed' , function ( ) {
2466
2497
var value = 0 ;
2467
2498
compileInput ( '<input type="text" ng-model="value" ng-maxlength="max" attr-capture />' ) ;
0 commit comments