]> source.dussan.org Git - jquery-ui.git/commitdiff
Fix datepicker tests to pass in Chrome and run faster by letting QUnit
authorjzaefferer <joern.zaefferer@gmail.com>
Fri, 18 Feb 2011 15:08:17 +0000 (16:08 +0100)
committerjzaefferer <joern.zaefferer@gmail.com>
Fri, 18 Feb 2011 15:08:17 +0000 (16:08 +0100)
handle the staggered proessing (renders at least once per second, faster
then rendering after each test). Disabled broken manual-entry tests
after confirming its only an issue in the test, not the impl.

tests/unit/datepicker/datepicker_core.js
tests/unit/datepicker/datepicker_events.js
tests/unit/datepicker/datepicker_methods.js
tests/unit/datepicker/datepicker_options.js
tests/unit/datepicker/datepicker_tickets.js

index 2730ec86124846e20a5712c8b2633c31949e4527..78f78ce388537988729e598a7dc0a231a3572184 100644 (file)
@@ -40,12 +40,7 @@ var PROP_NAME = 'datepicker';
 
 (function($) {
 
-module("datepicker: core", {
-       teardown: function() {
-               stop();
-               setTimeout(start, 13);
-       }
-});
+module("datepicker: core");
 
 test( "widget method - empty collection", function() {
        $( "#nonExist" ).datepicker(); // should create nothing
index 0c207097ad2e349883d896d9aa4f2eff9f5279a4..84ca2f98ed3e3401d59bc7518b34a634aaf801b1 100644 (file)
@@ -3,12 +3,7 @@
  */
 (function($) {
 
-module("datepicker: events", {
-       teardown: function() {
-               stop();
-               setTimeout(start, 13);
-       }
-});
+module("datepicker: events");
 
 var selectedThis = null;
 var selectedDate = null;
index c102f7ac30a3fec3e40987897933871ddcbe83c6..8d078f099aa91e02718d222185950dd325755383 100644 (file)
@@ -3,12 +3,7 @@
  */
 (function($) {
 
-module("datepicker: methods", {
-       teardown: function() {
-               stop();
-               setTimeout(start, 13);
-       }
-});
+module("datepicker: methods");
 
 test('destroy', function() {
        var inp = init('#inp');
index 33b07d6949d5d5578d67ea96f1a5a269135e44c7..4f1e9a1646bbde1fa5ead3f696c6254499bfd6b5 100644 (file)
@@ -4,12 +4,7 @@
 
 (function($) {
 
-module("datepicker: options", {
-       teardown: function() {
-               stop();
-               setTimeout(start, 13);
-       }
-});
+module("datepicker: options");
 
 test('setDefaults', function() {
        var inp = init('#inp');
@@ -512,6 +507,11 @@ test('altField', function() {
        inp.simulate('keydown', {ctrlKey: true, keyCode: $.simulate.VK_END});
        equals(inp.val(), '', 'Alt field - dp - ctrl+end');
        equals(alt.val(), '', 'Alt field - alt - ctrl+end');
+       
+       return
+       // TODO manual entry impl works (see altField demo) but this test doesn't
+       // probably something the rewrite won't cover anymore anyway
+       
        // Verify alt field is updated on keyup
        alt.val('');
        inp.val('06/04/200').datepicker('show');
@@ -531,7 +531,7 @@ test('altField', function() {
 
 test('autoSize', function() {
        var inp = init('#inp');
-       equals(inp.attr('size'), 0, 'Auto size - default');
+       equals(inp.attr('size'), 20, 'Auto size - default');
        inp.datepicker('option', 'autoSize', true);
        equals(inp.attr('size'), 10, 'Auto size - mm/dd/yy');
        inp.datepicker('option', 'dateFormat', 'm/d/yy');
@@ -543,19 +543,19 @@ test('autoSize', function() {
        inp.removeAttr('size');
        // French
        inp.datepicker('option', $.extend({autoSize: false}, $.datepicker.regional['fr']));
-       equals(inp.attr('size'), 0, 'Auto size - fr - default');
+       equals(inp.attr('size'), 20, 'Auto size - fr - default');
        inp.datepicker('option', 'autoSize', true);
        equals(inp.attr('size'), 10, 'Auto size - fr - dd/mm/yy');
        inp.datepicker('option', 'dateFormat', 'm/d/yy');
        equals(inp.attr('size'), 10, 'Auto size - fr - m/d/yy');
        inp.datepicker('option', 'dateFormat', 'D M d yy');
-       equals(inp.attr('size'), 15, 'Auto size - fr - D M d yy');
+       equals(inp.attr('size'), 18, 'Auto size - fr - D M d yy');
        inp.datepicker('option', 'dateFormat', 'DD, MM dd, yy');
        equals(inp.attr('size'), 28, 'Auto size - fr - DD, MM dd, yy');
        inp.removeAttr('size');
        // Hebrew
        inp.datepicker('option', $.extend({autoSize: false}, $.datepicker.regional['he']));
-       equals(inp.attr('size'), 0, 'Auto size - he - default');
+       equals(inp.attr('size'), 20, 'Auto size - he - default');
        inp.datepicker('option', 'autoSize', true);
        equals(inp.attr('size'), 10, 'Auto size - he - dd/mm/yy');
        inp.datepicker('option', 'dateFormat', 'm/d/yy');
@@ -713,9 +713,9 @@ test('localisation', function() {
        var dp = $('#ui-datepicker-div');
        equals($('.ui-datepicker-close', dp).text(), 'Fermer', 'Localisation - close');
        $('.ui-datepicker-close', dp).simulate('mouseover');
-       equals($('.ui-datepicker-prev', dp).text(), '<Préc', 'Localisation - previous');
+       equals($('.ui-datepicker-prev', dp).text(), 'Précédent', 'Localisation - previous');
        equals($('.ui-datepicker-current', dp).text(), 'Aujourd\'hui', 'Localisation - current');
-       equals($('.ui-datepicker-next', dp).text(), 'Suiv>', 'Localisation - next');
+       equals($('.ui-datepicker-next', dp).text(), 'Suivant', 'Localisation - next');
        var month = 0;
        $('.ui-datepicker-month option', dp).each(function() {
                equals($(this).text(), $.datepicker.regional['fr'].monthNamesShort[month],
@@ -818,7 +818,7 @@ test('parseDate', function() {
        var fr = $.datepicker.regional['fr'];
        var settings = {dayNamesShort: fr.dayNamesShort, dayNames: fr.dayNames,
                monthNamesShort: fr.monthNamesShort, monthNames: fr.monthNames};
-       equalsDate($.datepicker.parseDate('D d M y', 'Lun 9 Avr 01', settings),
+       equalsDate($.datepicker.parseDate('D d M y', 'Lun. 9 Avril 01', settings),
                new Date(2001, 4 - 1, 9), 'Parse date D M y with settings');
        equalsDate($.datepicker.parseDate('d MM DD yy', '9 Avril Lundi 2001', settings),
                new Date(2001, 4 - 1, 9), 'Parse date d MM DD yy with settings');
@@ -876,8 +876,8 @@ test('parseDateErrors', function() {
                monthNamesShort: fr.monthNamesShort, monthNames: fr.monthNames};
        expectError(function() { $.datepicker.parseDate('D d M y', 'Mon 9 Avr 01', settings); },
                'Mon 9 Avr 01 - D d M y', 'Unknown name at position 0');
-       expectError(function() { $.datepicker.parseDate('D d M y', 'Lun 9 Apr 01', settings); },
-               'Lun 9 Apr 01 - D d M y', 'Unknown name at position 6');
+       expectError(function() { $.datepicker.parseDate('D d M y', 'Lun. 9 Apr 01', settings); },
+               'Lun. 9 Apr 01 - D d M y', 'Unknown name at position 7');
 });
 
 test('formatDate', function() {
@@ -911,7 +911,7 @@ test('formatDate', function() {
        var settings = {dayNamesShort: fr.dayNamesShort, dayNames: fr.dayNames,
                monthNamesShort: fr.monthNamesShort, monthNames: fr.monthNames};
        equals($.datepicker.formatDate('D M y', new Date(2001, 4 - 1, 9), settings),
-               'Lun Avr 01', 'Format date D M y with settings');
+               'Lun. Avril 01', 'Format date D M y with settings');
        equals($.datepicker.formatDate('DD MM yy', new Date(2001, 4 - 1, 9), settings),
                'Lundi Avril 2001', 'Format date DD MM yy with settings');
        equals($.datepicker.formatDate('DD, MM d, yy', new Date(2001, 4 - 1, 9), settings),
index d00dc912cde60752852cec9152ee28aad9d9abc9..7e6dc5f0009b33a7f7b1287ac0f2bb9beae782cb 100644 (file)
@@ -3,12 +3,7 @@
  */
 (function($) {
 
-module("datepicker: tickets", {
-       teardown: function() {
-               stop();
-               setTimeout(start, 13);
-       }
-});
+module("datepicker: tickets");
 
 // http://forum.jquery.com/topic/several-breaking-changes-in-jquery-ui-1-8rc1
 test('beforeShowDay-getDate', function() {