component.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. module('Component', {
  2. setup: function(){
  3. this.component = $('<div class="input-group date" id="datetimepicker">'+
  4. '<input size="16" type="text" value="12-02-2012" readonly>'+
  5. '<span class="input-group-addon"><span class="glyphicon glyphicon-th"></span></span>'+
  6. '</div>')
  7. .appendTo('#qunit-fixture')
  8. .datetimepicker({format: "dd-mm-yyyy", viewSelect: 2});
  9. this.input = this.component.find('input');
  10. this.addon = this.component.find('.input-group-addon');
  11. this.dp = this.component.data('datetimepicker');
  12. this.picker = this.dp.picker;
  13. },
  14. teardown: function(){
  15. this.picker.remove();
  16. }
  17. });
  18. test('Component gets date/viewDate from input value', function(){
  19. datesEqual(this.dp.date, UTCDate(2012, 1, 12));
  20. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 12));
  21. });
  22. test('Activation by component', function(){
  23. ok(!this.picker.is(':visible'));
  24. this.addon.click();
  25. ok(this.picker.is(':visible'));
  26. });
  27. test('simple keyboard nav test', function(){
  28. var target;
  29. // Keyboard nav only works with non-readonly inputs
  30. this.input.removeAttr('readonly');
  31. equal(this.dp.viewMode, 2);
  32. target = this.picker.find('.datetimepicker-days thead th.switch');
  33. equal(target.text(), 'February 2012', 'Title is "February 2012"');
  34. datesEqual(this.dp.date, UTCDate(2012, 1, 12));
  35. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 12));
  36. // Focus/open
  37. this.addon.click();
  38. // Navigation: -1 day, left arrow key
  39. this.input.trigger({
  40. type: 'keydown',
  41. keyCode: 37
  42. });
  43. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 11));
  44. datesEqual(this.dp.date, UTCDate(2012, 1, 11));
  45. // Month not changed
  46. target = this.picker.find('.datetimepicker-days thead th.switch');
  47. equal(target.text(), 'February 2012', 'Title is "February 2012"');
  48. // Navigation: +1 month, shift + right arrow key
  49. this.input.trigger({
  50. type: 'keydown',
  51. keyCode: 39,
  52. shiftKey: true
  53. });
  54. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 11));
  55. datesEqual(this.dp.date, UTCDate(2012, 2, 11));
  56. target = this.picker.find('.datetimepicker-days thead th.switch');
  57. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  58. // Navigation: -1 year, ctrl + left arrow key
  59. this.input.trigger({
  60. type: 'keydown',
  61. keyCode: 37,
  62. ctrlKey: true
  63. });
  64. datesEqual(this.dp.viewDate, UTCDate(2011, 2, 11));
  65. datesEqual(this.dp.date, UTCDate(2011, 2, 11));
  66. target = this.picker.find('.datetimepicker-days thead th.switch');
  67. equal(target.text(), 'March 2011', 'Title is "March 2011"');
  68. });
  69. test('setValue', function(){
  70. this.dp.date = UTCDate(2012, 2, 13)
  71. this.dp.setValue()
  72. datesEqual(this.dp.date, UTCDate(2012, 2, 13));
  73. equal(this.input.val(), '13-03-2012');
  74. });
  75. test('update', function(){
  76. this.input.val('13-03-2012');
  77. this.dp.update()
  78. datesEqual(this.dp.date, UTCDate(2012, 2, 13));
  79. });
  80. test('Navigating to/from decade view', function(){
  81. var target;
  82. this.addon.click();
  83. this.input.val('31-03-2012');
  84. this.dp.update();
  85. equal(this.dp.viewMode, 2);
  86. target = this.picker.find('.datetimepicker-days thead th.switch');
  87. ok(target.is(':visible'), 'View switcher is visible');
  88. target.click();
  89. ok(this.picker.find('.datetimepicker-months').is(':visible'), 'Month picker is visible');
  90. equal(this.dp.viewMode, 3);
  91. // Not modified when switching modes
  92. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 31));
  93. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  94. target = this.picker.find('.datetimepicker-months thead th.switch');
  95. ok(target.is(':visible'), 'View switcher is visible');
  96. target.click();
  97. ok(this.picker.find('.datetimepicker-years').is(':visible'), 'Year picker is visible');
  98. equal(this.dp.viewMode, 4);
  99. // Not modified when switching modes
  100. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 31));
  101. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  102. // Change years to test internal state changes
  103. target = this.picker.find('.datetimepicker-years tbody span:contains(2011)');
  104. target.click();
  105. equal(this.dp.viewMode, 3);
  106. // Only viewDate modified
  107. datesEqual(this.dp.viewDate, UTCDate(2011, 2, 1));
  108. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  109. target = this.picker.find('.datetimepicker-months tbody span:contains(Apr)');
  110. target.click();
  111. equal(this.dp.viewMode, 2);
  112. // Only viewDate modified
  113. datesEqual(this.dp.viewDate, UTCDate(2011, 3, 1));
  114. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  115. });
  116. test('Selecting date resets viewDate and date', function(){
  117. var target;
  118. this.addon.click();
  119. this.input.val('31-03-2012');
  120. this.dp.update();
  121. // Rendered correctly
  122. equal(this.dp.viewMode, 2);
  123. target = this.picker.find('.datetimepicker-days tbody td:first');
  124. equal(target.text(), '26'); // Should be Feb 26
  125. // Updated internally on click
  126. target.click();
  127. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 26))
  128. datesEqual(this.dp.date, UTCDate(2012, 1, 26))
  129. // Re-rendered on click
  130. target = this.picker.find('.datetimepicker-days tbody td:first');
  131. equal(target.text(), '29'); // Should be Jan 29
  132. });
  133. test('Highlight in month', function() {
  134. // custom setup for specifically bootstrap 2
  135. var component = $('<div class="input-group date" id="datetimepicker">' +
  136. '<input size="16" type="text" value="12-02-2012" readonly>' +
  137. '<span class="input-group-addon"><span class="glyphicon glyphicon-th"></span></span>' +
  138. '</div>')
  139. .appendTo('#qunit-fixture')
  140. .datetimepicker({format: "dd-mm-yyyy", bootcssVer: 2}),
  141. addon = component.find('.input-group-addon'),
  142. picker = component.data('datetimepicker').picker;
  143. addon.click();
  144. equal(picker.find('.datetimepicker-months .month.active').text(), 'Feb');
  145. picker.remove();
  146. // test bootstrap 3 as well
  147. this.addon.click();
  148. equal(this.picker.find('.datetimepicker-months .month.active').text(), 'Feb');
  149. });