core.test.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* global QUnit */
  2. /* eslint global-strict: 0, strict: 0 */
  3. 'use strict';
  4. QUnit.module('admin.core');
  5. QUnit.test('Date.getTwelveHours', function(assert) {
  6. assert.equal(new Date(2011, 0, 1, 0, 0).getTwelveHours(), 12, '0:00');
  7. assert.equal(new Date(2011, 0, 1, 11, 0).getTwelveHours(), 11, '11:00');
  8. assert.equal(new Date(2011, 0, 1, 16, 0).getTwelveHours(), 4, '16:00');
  9. });
  10. QUnit.test('Date.getTwoDigitMonth', function(assert) {
  11. assert.equal(new Date(2011, 0, 1).getTwoDigitMonth(), '01', 'jan 1');
  12. assert.equal(new Date(2011, 9, 1).getTwoDigitMonth(), '10', 'oct 1');
  13. });
  14. QUnit.test('Date.getTwoDigitDate', function(assert) {
  15. assert.equal(new Date(2011, 0, 1).getTwoDigitDate(), '01', 'jan 1');
  16. assert.equal(new Date(2011, 0, 15).getTwoDigitDate(), '15', 'jan 15');
  17. });
  18. QUnit.test('Date.getTwoDigitTwelveHour', function(assert) {
  19. assert.equal(new Date(2011, 0, 1, 0, 0).getTwoDigitTwelveHour(), '12', '0:00');
  20. assert.equal(new Date(2011, 0, 1, 4, 0).getTwoDigitTwelveHour(), '04', '4:00');
  21. assert.equal(new Date(2011, 0, 1, 22, 0).getTwoDigitTwelveHour(), '10', '22:00');
  22. });
  23. QUnit.test('Date.getTwoDigitHour', function(assert) {
  24. assert.equal(new Date(2014, 6, 1, 9, 0).getTwoDigitHour(), '09', '9:00 am is 09');
  25. assert.equal(new Date(2014, 6, 1, 11, 0).getTwoDigitHour(), '11', '11:00 am is 11');
  26. });
  27. QUnit.test('Date.getTwoDigitMinute', function(assert) {
  28. assert.equal(new Date(2014, 6, 1, 0, 5).getTwoDigitMinute(), '05', '12:05 am is 05');
  29. assert.equal(new Date(2014, 6, 1, 0, 15).getTwoDigitMinute(), '15', '12:15 am is 15');
  30. });
  31. QUnit.test('Date.getTwoDigitSecond', function(assert) {
  32. assert.equal(new Date(2014, 6, 1, 0, 0, 2).getTwoDigitSecond(), '02', '12:00:02 am is 02');
  33. assert.equal(new Date(2014, 6, 1, 0, 0, 20).getTwoDigitSecond(), '20', '12:00:20 am is 20');
  34. });
  35. QUnit.test('Date.strftime', function(assert) {
  36. var date = new Date(2014, 6, 1, 11, 0, 5);
  37. assert.equal(date.strftime('%Y-%m-%d %H:%M:%S'), '2014-07-01 11:00:05');
  38. assert.equal(date.strftime('%B %d, %Y'), 'July 01, 2014');
  39. });
  40. QUnit.test('String.strptime', function(assert) {
  41. // Use UTC functions for extracting dates since the calendar uses them as
  42. // well. Month numbering starts with 0 (January).
  43. var firstParsedDate = '1988-02-26'.strptime('%Y-%m-%d');
  44. assert.equal(firstParsedDate.getUTCDate(), 26);
  45. assert.equal(firstParsedDate.getUTCMonth(), 1);
  46. assert.equal(firstParsedDate.getUTCFullYear(), 1988);
  47. // A %y value in the range of [69, 99] is in the previous century.
  48. var secondParsedDate = '26/02/88'.strptime('%d/%m/%y');
  49. assert.equal(secondParsedDate.getUTCDate(), 26);
  50. assert.equal(secondParsedDate.getUTCMonth(), 1);
  51. assert.equal(secondParsedDate.getUTCFullYear(), 1988);
  52. var format = django.get_format('DATE_INPUT_FORMATS')[0];
  53. var thirdParsedDate = '1983-11-20'.strptime(format);
  54. assert.equal(thirdParsedDate.getUTCDate(), 20);
  55. assert.equal(thirdParsedDate.getUTCMonth(), 10);
  56. assert.equal(thirdParsedDate.getUTCFullYear(), 1983);
  57. // A %y value in the range of [00, 68] is in the current century.
  58. var fourthParsedDate = '27/09/68'.strptime('%d/%m/%y');
  59. assert.equal(fourthParsedDate.getUTCDate(), 27);
  60. assert.equal(fourthParsedDate.getUTCMonth(), 8);
  61. assert.equal(fourthParsedDate.getUTCFullYear(), 2068);
  62. // Extracting from a Date object with local time must give the correct
  63. // result. Without proper conversion, timezones from GMT+0100 to GMT+1200
  64. // gives a date one day earlier than necessary, e.g. converting local time
  65. // Feb 26, 1988 00:00:00 EEST is Feb 25, 21:00:00 UTC.
  66. // Checking timezones from GMT+0100 to GMT+1200
  67. var i, tz, date;
  68. for (i = 1; i <= 12; i++) {
  69. tz = i > 9 ? '' + i : '0' + i;
  70. date = new Date(Date.parse('Feb 26, 1988 00:00:00 GMT+' + tz + '00'));
  71. assert.notEqual(date.getUTCDate(), 26);
  72. assert.equal(date.getUTCDate(), 25);
  73. assert.equal(date.getUTCMonth(), 1);
  74. assert.equal(date.getUTCFullYear(), 1988);
  75. }
  76. // Checking timezones from GMT+0000 to GMT-1100
  77. for (i = 0; i <= 11; i++) {
  78. tz = i > 9 ? '' + i : '0' + i;
  79. date = new Date(Date.parse('Feb 26, 1988 00:00:00 GMT-' + tz + '00'));
  80. assert.equal(date.getUTCDate(), 26);
  81. assert.equal(date.getUTCMonth(), 1);
  82. assert.equal(date.getUTCFullYear(), 1988);
  83. }
  84. });