2015-04-07 00:06:31 +00:00
|
|
|
define( [
|
2016-04-03 15:11:33 +00:00
|
|
|
"qunit",
|
2015-04-07 14:30:07 +00:00
|
|
|
"jquery",
|
2015-04-07 00:06:31 +00:00
|
|
|
"lib/helper",
|
2015-07-15 01:58:04 +00:00
|
|
|
"ui/widgets/datepicker"
|
2016-04-03 15:11:33 +00:00
|
|
|
], function( QUnit, $, helper ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
2015-04-07 00:06:31 +00:00
|
|
|
|
2015-04-07 14:30:07 +00:00
|
|
|
return $.extend( helper, {
|
2015-08-24 13:00:11 +00:00
|
|
|
addMonths: function( date, offset ) {
|
|
|
|
var maxDay = 32 - new Date( date.getFullYear(), date.getMonth() + offset, 32 ).getDate();
|
|
|
|
date.setDate( Math.min( date.getDate(), maxDay ) );
|
|
|
|
date.setMonth( date.getMonth() + offset );
|
2012-11-03 20:17:16 +00:00
|
|
|
return date;
|
|
|
|
},
|
2015-04-07 14:30:07 +00:00
|
|
|
|
2016-04-03 15:11:33 +00:00
|
|
|
equalsDate: function( assert, d1, d2, message ) {
|
2015-08-24 13:00:11 +00:00
|
|
|
if ( !d1 || !d2 ) {
|
2016-04-03 15:11:33 +00:00
|
|
|
assert.ok( false, message + " - missing date" );
|
2012-11-03 20:17:16 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-08-24 13:00:11 +00:00
|
|
|
d1 = new Date( d1.getFullYear(), d1.getMonth(), d1.getDate() );
|
|
|
|
d2 = new Date( d2.getFullYear(), d2.getMonth(), d2.getDate() );
|
2016-04-03 15:11:33 +00:00
|
|
|
assert.equal( d1.toString(), d2.toString(), message );
|
2012-11-03 20:17:16 +00:00
|
|
|
},
|
2015-04-07 14:30:07 +00:00
|
|
|
|
2020-05-16 07:16:24 +00:00
|
|
|
beforeAfterEach: function() {
|
|
|
|
return {
|
|
|
|
afterEach: helper.moduleAfterEach
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2013-04-14 21:07:24 +00:00
|
|
|
init: function( id, options ) {
|
|
|
|
$.datepicker.setDefaults( $.datepicker.regional[ "" ] );
|
|
|
|
return $( id ).datepicker( $.extend( { showAnim: "" }, options || {} ) );
|
|
|
|
},
|
2015-04-07 14:30:07 +00:00
|
|
|
|
2013-04-14 21:07:24 +00:00
|
|
|
initNewInput: function( options ) {
|
|
|
|
var id = $( "<input>" ).appendTo( "#qunit-fixture" );
|
2015-04-07 14:30:07 +00:00
|
|
|
return this.init( id, options );
|
2012-11-03 20:17:16 +00:00
|
|
|
},
|
2015-04-07 00:06:31 +00:00
|
|
|
|
2015-04-07 14:30:07 +00:00
|
|
|
PROP_NAME: "datepicker"
|
|
|
|
} );
|
2015-04-07 00:06:31 +00:00
|
|
|
|
|
|
|
} );
|