@@ -230,6 +230,88 @@ describe('datepicker', function() {
230
230
expect ( $log . warn ) . not . toHaveBeenCalled ( ) ;
231
231
} ) ;
232
232
233
+ it ( 'should log warning for customClass attribute usage' , function ( ) {
234
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
235
+ $log = _$log_ ;
236
+ $scope = _$rootScope_ . $new ( ) ;
237
+ $compile = _$compile_ ;
238
+ } ) ;
239
+
240
+ $scope . locals = {
241
+ date : new Date ( ) ,
242
+ customClass : 'none'
243
+ } ;
244
+
245
+ spyOn ( $log , 'warn' ) ;
246
+ element = $compile ( '<uib-datepicker ng-model="locals.date" custom-class="locals.customClass"></uib-datepicker>' ) ( $scope ) ;
247
+ $scope . $digest ( ) ;
248
+
249
+ expect ( $log . warn ) . toHaveBeenCalledWith ( 'uib-datepicker customClass attribute usage is deprecated, use datepicker-options attribute instead' ) ;
250
+ } ) ;
251
+
252
+ it ( 'should suppress warning for customClass attribute usage' , function ( ) {
253
+ module ( function ( $provide ) {
254
+ $provide . value ( 'uibDatepickerAttributeWarning' , false ) ;
255
+ } ) ;
256
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
257
+ $log = _$log_ ;
258
+ $scope = _$rootScope_ . $new ( ) ;
259
+ $compile = _$compile_ ;
260
+ } ) ;
261
+
262
+ $scope . locals = {
263
+ date : new Date ( ) ,
264
+ customClass : 'none'
265
+ } ;
266
+
267
+ spyOn ( $log , 'warn' ) ;
268
+ element = $compile ( '<uib-datepicker ng-model="locals.date" custom-class="locals.customClass"></uib-datepicker>' ) ( $scope ) ;
269
+ $scope . $digest ( ) ;
270
+
271
+ expect ( $log . warn ) . not . toHaveBeenCalled ( ) ;
272
+ } ) ;
273
+
274
+ it ( 'should log warning for dateDisabled attribute usage' , function ( ) {
275
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
276
+ $log = _$log_ ;
277
+ $scope = _$rootScope_ . $new ( ) ;
278
+ $compile = _$compile_ ;
279
+ } ) ;
280
+
281
+ $scope . locals = {
282
+ date : new Date ( ) ,
283
+ dateDisabled : false
284
+ } ;
285
+
286
+ spyOn ( $log , 'warn' ) ;
287
+ element = $compile ( '<uib-datepicker ng-model="locals.date" date-disabled="locals.dateDisabled"></uib-datepicker>' ) ( $scope ) ;
288
+ $scope . $digest ( ) ;
289
+
290
+ expect ( $log . warn ) . toHaveBeenCalledWith ( 'uib-datepicker dateDisabled attribute usage is deprecated, use datepicker-options attribute instead' ) ;
291
+ } ) ;
292
+
293
+ it ( 'should suppress warning for dateDisabled attribute usage' , function ( ) {
294
+ module ( function ( $provide ) {
295
+ $provide . value ( 'uibDatepickerAttributeWarning' , false ) ;
296
+ } ) ;
297
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
298
+ $log = _$log_ ;
299
+ $scope = _$rootScope_ . $new ( ) ;
300
+ $compile = _$compile_ ;
301
+ } ) ;
302
+
303
+ $scope . locals = {
304
+ date : new Date ( ) ,
305
+ dateDisabled : false
306
+ } ;
307
+
308
+ spyOn ( $log , 'warn' ) ;
309
+ element = $compile ( '<uib-datepicker ng-model="locals.date" date-disabled="locals.dateDisabled"></uib-datepicker>' ) ( $scope ) ;
310
+ $scope . $digest ( ) ;
311
+
312
+ expect ( $log . warn ) . not . toHaveBeenCalled ( ) ;
313
+ } ) ;
314
+
233
315
it ( 'should log warning for datepickerMode attribute usage' , function ( ) {
234
316
inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
235
317
$log = _$log_ ;
@@ -956,6 +1038,76 @@ describe('datepicker', function() {
956
1038
expect ( $log . warn ) . not . toHaveBeenCalled ( ) ;
957
1039
} ) ;
958
1040
1041
+ it ( 'should log warning for customClass attribute usage' , function ( ) {
1042
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
1043
+ $log = _$log_ ;
1044
+ $scope = _$rootScope_ . $new ( ) ;
1045
+ $compile = _$compile_ ;
1046
+ } ) ;
1047
+
1048
+ $scope . date = new Date ( ) ;
1049
+
1050
+ spyOn ( $log , 'warn' ) ;
1051
+ element = $compile ( '<div><input ng-model="date" uib-datepicker-popup custom-class="true"></div>' ) ( $scope ) ;
1052
+ $scope . $digest ( ) ;
1053
+
1054
+ expect ( $log . warn ) . toHaveBeenCalledWith ( 'uib-datepicker-popup attributes are deprecated and will be removed in UI Bootstrap 1.3, use datepicker-options attribute instead' ) ;
1055
+ } ) ;
1056
+
1057
+ it ( 'should suppress warning for customClass attribute usage' , function ( ) {
1058
+ module ( function ( $provide ) {
1059
+ $provide . value ( 'uibDatepickerPopupAttributeWarning' , false ) ;
1060
+ } ) ;
1061
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
1062
+ $log = _$log_ ;
1063
+ $scope = _$rootScope_ . $new ( ) ;
1064
+ $compile = _$compile_ ;
1065
+ } ) ;
1066
+
1067
+ $scope . date = new Date ( ) ;
1068
+
1069
+ spyOn ( $log , 'warn' ) ;
1070
+ element = $compile ( '<div><input ng-model="date" uib-datepicker-popup custom-class="true"></div>' ) ( $scope ) ;
1071
+ $scope . $digest ( ) ;
1072
+
1073
+ expect ( $log . warn ) . not . toHaveBeenCalled ( ) ;
1074
+ } ) ;
1075
+
1076
+ it ( 'should log warning for dateDisabled attribute usage' , function ( ) {
1077
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
1078
+ $log = _$log_ ;
1079
+ $scope = _$rootScope_ . $new ( ) ;
1080
+ $compile = _$compile_ ;
1081
+ } ) ;
1082
+
1083
+ $scope . date = new Date ( ) ;
1084
+
1085
+ spyOn ( $log , 'warn' ) ;
1086
+ element = $compile ( '<div><input ng-model="date" uib-datepicker-popup date-disabled="true"></div>' ) ( $scope ) ;
1087
+ $scope . $digest ( ) ;
1088
+
1089
+ expect ( $log . warn ) . toHaveBeenCalledWith ( 'uib-datepicker-popup attributes are deprecated and will be removed in UI Bootstrap 1.3, use datepicker-options attribute instead' ) ;
1090
+ } ) ;
1091
+
1092
+ it ( 'should suppress warning for dateDisabled attribute usage' , function ( ) {
1093
+ module ( function ( $provide ) {
1094
+ $provide . value ( 'uibDatepickerPopupAttributeWarning' , false ) ;
1095
+ } ) ;
1096
+ inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
1097
+ $log = _$log_ ;
1098
+ $scope = _$rootScope_ . $new ( ) ;
1099
+ $compile = _$compile_ ;
1100
+ } ) ;
1101
+
1102
+ $scope . date = new Date ( ) ;
1103
+
1104
+ spyOn ( $log , 'warn' ) ;
1105
+ element = $compile ( '<div><input ng-model="date" uib-datepicker-popup date-disabled="true"></div>' ) ( $scope ) ;
1106
+ $scope . $digest ( ) ;
1107
+
1108
+ expect ( $log . warn ) . not . toHaveBeenCalled ( ) ;
1109
+ } ) ;
1110
+
959
1111
it ( 'should log warning for onOpenFocus attribute usage' , function ( ) {
960
1112
inject ( function ( _$log_ , _$rootScope_ , _$compile_ ) {
961
1113
$log = _$log_ ;
@@ -2879,51 +3031,55 @@ describe('datepicker', function() {
2879
3031
2880
3032
describe ( 'date-disabled expression' , function ( ) {
2881
3033
beforeEach ( function ( ) {
2882
- $rootScope . dateDisabledHandler = jasmine . createSpy ( 'dateDisabledHandler' ) ;
2883
- element = $compile ( '<uib-datepicker ng-model="date" date-disabled="dateDisabledHandler(date, mode)"></uib-datepicker>' ) ( $rootScope ) ;
3034
+ $rootScope . options = {
3035
+ dateDisabled : jasmine . createSpy ( 'dateDisabled' )
3036
+ } ;
3037
+ element = $compile ( '<uib-datepicker ng-model="date" datepicker-options="options"></uib-datepicker>' ) ( $rootScope ) ;
2884
3038
$rootScope . $digest ( ) ;
2885
3039
} ) ;
2886
3040
2887
3041
it ( 'executes the dateDisabled expression for each visible day plus one for validation' , function ( ) {
2888
- expect ( $rootScope . dateDisabledHandler . calls . count ( ) ) . toEqual ( 42 + 1 ) ;
3042
+ expect ( $rootScope . options . dateDisabled . calls . count ( ) ) . toEqual ( 42 + 1 ) ;
2889
3043
} ) ;
2890
3044
2891
3045
it ( 'executes the dateDisabled expression for each visible month plus one for validation' , function ( ) {
2892
- $rootScope . dateDisabledHandler . calls . reset ( ) ;
3046
+ $rootScope . options . dateDisabled . calls . reset ( ) ;
2893
3047
clickTitleButton ( ) ;
2894
- expect ( $rootScope . dateDisabledHandler . calls . count ( ) ) . toEqual ( 12 + 1 ) ;
3048
+ expect ( $rootScope . options . dateDisabled . calls . count ( ) ) . toEqual ( 12 + 1 ) ;
2895
3049
} ) ;
2896
3050
2897
3051
it ( 'executes the dateDisabled expression for each visible year plus one for validation' , function ( ) {
2898
3052
clickTitleButton ( ) ;
2899
- $rootScope . dateDisabledHandler . calls . reset ( ) ;
3053
+ $rootScope . options . dateDisabled . calls . reset ( ) ;
2900
3054
clickTitleButton ( ) ;
2901
- expect ( $rootScope . dateDisabledHandler . calls . count ( ) ) . toEqual ( 20 + 1 ) ;
3055
+ expect ( $rootScope . options . dateDisabled . calls . count ( ) ) . toEqual ( 20 + 1 ) ;
2902
3056
} ) ;
2903
3057
} ) ;
2904
3058
2905
3059
describe ( 'custom-class expression' , function ( ) {
2906
3060
beforeEach ( function ( ) {
2907
- $rootScope . customClassHandler = jasmine . createSpy ( 'customClassHandler' ) ;
2908
- element = $compile ( '<uib-datepicker ng-model="date" custom-class="customClassHandler(date, mode)"></uib-datepicker>' ) ( $rootScope ) ;
3061
+ $rootScope . options = {
3062
+ customClass : jasmine . createSpy ( 'customClass' )
3063
+ } ;
3064
+ element = $compile ( '<uib-datepicker ng-model="date" datepicker-options="options"></uib-datepicker>' ) ( $rootScope ) ;
2909
3065
$rootScope . $digest ( ) ;
2910
3066
} ) ;
2911
3067
2912
3068
it ( 'executes the customClass expression for each visible day plus one for validation' , function ( ) {
2913
- expect ( $rootScope . customClassHandler . calls . count ( ) ) . toEqual ( 42 ) ;
3069
+ expect ( $rootScope . options . customClass . calls . count ( ) ) . toEqual ( 42 ) ;
2914
3070
} ) ;
2915
3071
2916
3072
it ( 'executes the customClass expression for each visible month plus one for validation' , function ( ) {
2917
- $rootScope . customClassHandler . calls . reset ( ) ;
3073
+ $rootScope . options . customClass . calls . reset ( ) ;
2918
3074
clickTitleButton ( ) ;
2919
- expect ( $rootScope . customClassHandler . calls . count ( ) ) . toEqual ( 12 ) ;
3075
+ expect ( $rootScope . options . customClass . calls . count ( ) ) . toEqual ( 12 ) ;
2920
3076
} ) ;
2921
3077
2922
3078
it ( 'executes the customClass expression for each visible year plus one for validation' , function ( ) {
2923
3079
clickTitleButton ( ) ;
2924
- $rootScope . customClassHandler . calls . reset ( ) ;
3080
+ $rootScope . options . customClass . calls . reset ( ) ;
2925
3081
clickTitleButton ( ) ;
2926
- expect ( $rootScope . customClassHandler . calls . count ( ) ) . toEqual ( 20 ) ;
3082
+ expect ( $rootScope . options . customClass . calls . count ( ) ) . toEqual ( 20 ) ;
2927
3083
} ) ;
2928
3084
} ) ;
2929
3085
@@ -4654,13 +4810,6 @@ describe('datepicker', function() {
4654
4810
] ) ;
4655
4811
} ) ;
4656
4812
} ) ;
4657
-
4658
- it ( 'should set dateDisabled on the inner datepicker' , function ( ) {
4659
- var wrapElement = $compile ( '<div><input ng-model="date" uib-datepicker-popup is-open="true" date-disabled="dateDisabledHandler(date, mode)"><div>' ) ( $rootScope ) ;
4660
- $rootScope . $digest ( ) ;
4661
- assignElements ( wrapElement ) ;
4662
- expect ( dropdownEl . find ( 'div' ) . attr ( 'date-disabled' ) ) . toBe ( 'dateDisabled({ date: date, mode: mode })' ) ;
4663
- } ) ;
4664
4813
} ) ;
4665
4814
4666
4815
describe ( 'gc' , function ( ) {
0 commit comments