2012.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. module('Keyboard Navigation 2012', {
  2. setup: function(){
  3. /*
  4. Tests start with picker on March 31, 2012. Fun facts:
  5. * February 1, 2012 was on a Wednesday
  6. * February 29, 2012 was on a Wednesday
  7. * March 1, 2012 was on a Thursday
  8. * March 31, 2012 was on a Saturday
  9. */
  10. this.input = $('<input type="text" value="31-03-2012">')
  11. .appendTo('#qunit-fixture')
  12. .datetimepicker({format: "dd-mm-yyyy", minView: 2, autoclose: true})
  13. .focus(); // Activate for visibility checks
  14. this.dp = this.input.data('datetimepicker')
  15. this.picker = this.dp.picker;
  16. },
  17. teardown: function(){
  18. this.picker.remove();
  19. }
  20. });
  21. test('by day (right/left arrows)', function(){
  22. var target;
  23. equal(this.dp.viewMode, 2);
  24. target = this.picker.find('.datetimepicker-days thead th.switch');
  25. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  26. // Navigation: -1 day, left arrow key
  27. this.input.trigger({
  28. type: 'keydown',
  29. keyCode: 37
  30. });
  31. // Both updated on keyboard navigation
  32. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 30));
  33. datesEqual(this.dp.date, UTCDate(2012, 2, 30));
  34. // Month not changed
  35. target = this.picker.find('.datetimepicker-days thead th.switch');
  36. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  37. // Navigation: +1 day, right arrow key
  38. for (var i=0; i<2; i++)
  39. this.input.trigger({
  40. type: 'keydown',
  41. keyCode: 39
  42. });
  43. datesEqual(this.dp.viewDate, UTCDate(2012, 3, 1));
  44. datesEqual(this.dp.date, UTCDate(2012, 3, 1));
  45. // Month changed: April 1 (this is not a joke!)
  46. target = this.picker.find('.datetimepicker-days thead th.switch');
  47. equal(target.text(), 'April 2012', 'Title is "April 2012"');
  48. });
  49. test('by week (up/down arrows)', function(){
  50. var target;
  51. equal(this.dp.viewMode, 2);
  52. target = this.picker.find('.datetimepicker-days thead th.switch');
  53. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  54. // Navigation: -1 week, up arrow key
  55. this.input.trigger({
  56. type: 'keydown',
  57. keyCode: 38
  58. });
  59. // Both updated on keyboard navigation
  60. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 24));
  61. datesEqual(this.dp.date, UTCDate(2012, 2, 24));
  62. // Month not changed
  63. target = this.picker.find('.datetimepicker-days thead th.switch');
  64. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  65. // Navigation: +1 week, down arrow key
  66. for (var i=0; i<2; i++)
  67. this.input.trigger({
  68. type: 'keydown',
  69. keyCode: 40
  70. });
  71. datesEqual(this.dp.viewDate, UTCDate(2012, 3, 7));
  72. datesEqual(this.dp.date, UTCDate(2012, 3, 7));
  73. target = this.picker.find('.datetimepicker-days thead th.switch');
  74. equal(target.text(), 'April 2012', 'Title is "April 2012"');
  75. });
  76. test('by month, v1 (shift + left/right arrows)', function(){
  77. var target;
  78. equal(this.dp.viewMode, 2);
  79. target = this.picker.find('.datetimepicker-days thead th.switch');
  80. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  81. // Navigation: -1 month, shift + left arrow key
  82. this.input.trigger({
  83. type: 'keydown',
  84. keyCode: 37,
  85. shiftKey: true
  86. });
  87. // Both updated on keyboard navigation, w/ graceful date ends
  88. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 29));
  89. datesEqual(this.dp.date, UTCDate(2012, 1, 29));
  90. // Month not changed
  91. target = this.picker.find('.datetimepicker-days thead th.switch');
  92. equal(target.text(), 'February 2012', 'Title is "February 2012"');
  93. // Navigation: +1 month, shift + right arrow key
  94. for (var i=0; i<2; i++)
  95. this.input.trigger({
  96. type: 'keydown',
  97. keyCode: 39,
  98. shiftKey: true
  99. });
  100. datesEqual(this.dp.viewDate, UTCDate(2012, 3, 29));
  101. datesEqual(this.dp.date, UTCDate(2012, 3, 29));
  102. target = this.picker.find('.datetimepicker-days thead th.switch');
  103. equal(target.text(), 'April 2012', 'Title is "April 2012"');
  104. });
  105. test('by month, v2 (shift + up/down arrows)', function(){
  106. var target;
  107. equal(this.dp.viewMode, 2);
  108. target = this.picker.find('.datetimepicker-days thead th.switch');
  109. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  110. // Navigation: -1 month, shift + up arrow key
  111. this.input.trigger({
  112. type: 'keydown',
  113. keyCode: 38,
  114. shiftKey: true
  115. });
  116. // Both updated on keyboard navigation, w/ graceful date ends
  117. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 29));
  118. datesEqual(this.dp.date, UTCDate(2012, 1, 29));
  119. // Month not changed
  120. target = this.picker.find('.datetimepicker-days thead th.switch');
  121. equal(target.text(), 'February 2012', 'Title is "February 2012"');
  122. // Navigation: +1 month, shift + down arrow key
  123. for (var i=0; i<2; i++)
  124. this.input.trigger({
  125. type: 'keydown',
  126. keyCode: 40,
  127. shiftKey: true
  128. });
  129. datesEqual(this.dp.viewDate, UTCDate(2012, 3, 29));
  130. datesEqual(this.dp.date, UTCDate(2012, 3, 29));
  131. target = this.picker.find('.datetimepicker-days thead th.switch');
  132. equal(target.text(), 'April 2012', 'Title is "April 2012"');
  133. });
  134. test('by year, v1 (ctrl + left/right arrows)', function(){
  135. var target;
  136. equal(this.dp.viewMode, 2);
  137. target = this.picker.find('.datetimepicker-days thead th.switch');
  138. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  139. // Navigation: -1 year, ctrl + left arrow key
  140. this.input.trigger({
  141. type: 'keydown',
  142. keyCode: 37,
  143. ctrlKey: true
  144. });
  145. // Both updated on keyboard navigation
  146. datesEqual(this.dp.viewDate, UTCDate(2011, 2, 31));
  147. datesEqual(this.dp.date, UTCDate(2011, 2, 31));
  148. // Month not changed
  149. target = this.picker.find('.datetimepicker-days thead th.switch');
  150. equal(target.text(), 'March 2011', 'Title is "March 2011"');
  151. // Navigation: +1 year, ctrl + right arrow key
  152. for (var i=0; i<2; i++)
  153. this.input.trigger({
  154. type: 'keydown',
  155. keyCode: 39,
  156. ctrlKey: true
  157. });
  158. datesEqual(this.dp.viewDate, UTCDate(2013, 2, 31));
  159. datesEqual(this.dp.date, UTCDate(2013, 2, 31));
  160. target = this.picker.find('.datetimepicker-days thead th.switch');
  161. equal(target.text(), 'March 2013', 'Title is "March 2013"');
  162. });
  163. test('by year, v2 (ctrl + up/down arrows)', function(){
  164. var target;
  165. equal(this.dp.viewMode, 2);
  166. target = this.picker.find('.datetimepicker-days thead th.switch');
  167. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  168. // Navigation: -1 year, ctrl + up arrow key
  169. this.input.trigger({
  170. type: 'keydown',
  171. keyCode: 38,
  172. ctrlKey: true
  173. });
  174. // Both updated on keyboard navigation
  175. datesEqual(this.dp.viewDate, UTCDate(2011, 2, 31));
  176. datesEqual(this.dp.date, UTCDate(2011, 2, 31));
  177. // Month not changed
  178. target = this.picker.find('.datetimepicker-days thead th.switch');
  179. equal(target.text(), 'March 2011', 'Title is "March 2011"');
  180. // Navigation: +1 year, ctrl + down arrow key
  181. for (var i=0; i<2; i++)
  182. this.input.trigger({
  183. type: 'keydown',
  184. keyCode: 40,
  185. ctrlKey: true
  186. });
  187. datesEqual(this.dp.viewDate, UTCDate(2013, 2, 31));
  188. datesEqual(this.dp.date, UTCDate(2013, 2, 31));
  189. target = this.picker.find('.datetimepicker-days thead th.switch');
  190. equal(target.text(), 'March 2013', 'Title is "March 2013"');
  191. });
  192. test('by year, v3 (ctrl + shift + left/right arrows)', function(){
  193. var target;
  194. equal(this.dp.viewMode, 2);
  195. target = this.picker.find('.datetimepicker-days thead th.switch');
  196. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  197. // Navigation: -1 year, ctrl + left arrow key
  198. this.input.trigger({
  199. type: 'keydown',
  200. keyCode: 37,
  201. ctrlKey: true,
  202. shiftKey: true
  203. });
  204. // Both updated on keyboard navigation
  205. datesEqual(this.dp.viewDate, UTCDate(2011, 2, 31));
  206. datesEqual(this.dp.date, UTCDate(2011, 2, 31));
  207. // Month not changed
  208. target = this.picker.find('.datetimepicker-days thead th.switch');
  209. equal(target.text(), 'March 2011', 'Title is "March 2011"');
  210. // Navigation: +1 year, ctrl + right arrow key
  211. for (var i=0; i<2; i++)
  212. this.input.trigger({
  213. type: 'keydown',
  214. keyCode: 39,
  215. ctrlKey: true,
  216. shiftKey: true
  217. });
  218. datesEqual(this.dp.viewDate, UTCDate(2013, 2, 31));
  219. datesEqual(this.dp.date, UTCDate(2013, 2, 31));
  220. target = this.picker.find('.datetimepicker-days thead th.switch');
  221. equal(target.text(), 'March 2013', 'Title is "March 2013"');
  222. });
  223. test('by year, v4 (ctrl + shift + up/down arrows)', function(){
  224. var target;
  225. equal(this.dp.viewMode, 2);
  226. target = this.picker.find('.datetimepicker-days thead th.switch');
  227. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  228. // Navigation: -1 year, ctrl + up arrow key
  229. this.input.trigger({
  230. type: 'keydown',
  231. keyCode: 38,
  232. ctrlKey: true,
  233. shiftKey: true
  234. });
  235. // Both updated on keyboard navigation
  236. datesEqual(this.dp.viewDate, UTCDate(2011, 2, 31));
  237. datesEqual(this.dp.date, UTCDate(2011, 2, 31));
  238. // Month not changed
  239. target = this.picker.find('.datetimepicker-days thead th.switch');
  240. equal(target.text(), 'March 2011', 'Title is "March 2011"');
  241. // Navigation: +1 year, ctrl + down arrow key
  242. for (var i=0; i<2; i++)
  243. this.input.trigger({
  244. type: 'keydown',
  245. keyCode: 40,
  246. ctrlKey: true,
  247. shiftKey: true
  248. });
  249. datesEqual(this.dp.viewDate, UTCDate(2013, 2, 31));
  250. datesEqual(this.dp.date, UTCDate(2013, 2, 31));
  251. target = this.picker.find('.datetimepicker-days thead th.switch');
  252. equal(target.text(), 'March 2013', 'Title is "March 2013"');
  253. });
  254. test('by year, from leap day', function(){
  255. var target;
  256. equal(this.dp.viewMode, 2);
  257. target = this.picker.find('.datetimepicker-days thead th.switch');
  258. this.input.val('29-02-2012').datetimepicker('update');
  259. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 29));
  260. datesEqual(this.dp.date, UTCDate(2012, 1, 29));
  261. equal(target.text(), 'February 2012', 'Title is "February 2012"');
  262. // Navigation: -1 year
  263. this.input.trigger({
  264. type: 'keydown',
  265. keyCode: 37,
  266. ctrlKey: true
  267. });
  268. // Both updated on keyboard navigation; graceful month-end
  269. datesEqual(this.dp.viewDate, UTCDate(2011, 1, 28));
  270. datesEqual(this.dp.date, UTCDate(2011, 1, 28));
  271. // Month not changed
  272. target = this.picker.find('.datetimepicker-days thead th.switch');
  273. equal(target.text(), 'February 2011', 'Title is "February 2011"');
  274. // Navigation: +1 year, back to leap year
  275. this.input.trigger({
  276. type: 'keydown',
  277. keyCode: 39,
  278. ctrlKey: true
  279. });
  280. // Both updated on keyboard navigation; graceful month-end
  281. datesEqual(this.dp.viewDate, UTCDate(2012, 1, 28));
  282. datesEqual(this.dp.date, UTCDate(2012, 1, 28));
  283. target = this.picker.find('.datetimepicker-days thead th.switch');
  284. equal(target.text(), 'February 2012', 'Title is "February 2012"');
  285. // Navigation: +1 year
  286. this.input.trigger({
  287. type: 'keydown',
  288. keyCode: 39,
  289. ctrlKey: true
  290. });
  291. // Both updated on keyboard navigation; graceful month-end
  292. datesEqual(this.dp.viewDate, UTCDate(2013, 1, 28));
  293. datesEqual(this.dp.date, UTCDate(2013, 1, 28));
  294. target = this.picker.find('.datetimepicker-days thead th.switch');
  295. equal(target.text(), 'February 2013', 'Title is "February 2013"');
  296. });
  297. test('Selection (enter)', function(){
  298. var target;
  299. equal(this.dp.viewMode, 2);
  300. target = this.picker.find('.datetimepicker-days thead th.switch');
  301. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  302. // Navigation: -1 day, left arrow key
  303. this.input.trigger({
  304. type: 'keydown',
  305. keyCode: 37
  306. });
  307. // Both updated on keyboard navigation
  308. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 30));
  309. datesEqual(this.dp.date, UTCDate(2012, 2, 30));
  310. // Month not changed
  311. target = this.picker.find('.datetimepicker-days thead th.switch');
  312. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  313. // Selection: Enter
  314. this.input.trigger({
  315. type: 'keydown',
  316. keyCode: 13
  317. });
  318. // Both updated on keyboard navigation
  319. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 30));
  320. datesEqual(this.dp.date, UTCDate(2012, 2, 30));
  321. // Month not changed
  322. target = this.picker.find('.datetimepicker-days thead th.switch');
  323. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  324. ok(this.picker.is(':not(:visible)'), 'Picker is hidden');
  325. });
  326. test('Toggle hide/show (escape); navigation while hidden is suppressed', function(){
  327. var target;
  328. equal(this.dp.viewMode, 2);
  329. target = this.picker.find('.datetimepicker-days thead th.switch');
  330. equal(target.text(), 'March 2012', 'Title is "March 2012"');
  331. ok(this.picker.is(':visible'), 'Picker is visible');
  332. // Hide
  333. this.input.trigger({
  334. type: 'keydown',
  335. keyCode: 27
  336. });
  337. ok(this.picker.is(':not(:visible)'), 'Picker is hidden');
  338. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 31));
  339. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  340. // left arrow key, *doesn't* navigate
  341. this.input.trigger({
  342. type: 'keydown',
  343. keyCode: 37
  344. });
  345. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 31));
  346. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  347. // Show
  348. this.input.trigger({
  349. type: 'keydown',
  350. keyCode: 27
  351. });
  352. ok(this.picker.is(':visible'), 'Picker is visible');
  353. datesEqual(this.dp.viewDate, UTCDate(2012, 2, 31));
  354. datesEqual(this.dp.date, UTCDate(2012, 2, 31));
  355. });