tristandunn-calendar_date_select 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. data/.gitignore +3 -0
  2. data/History.txt +240 -0
  3. data/MIT-LICENSE +20 -0
  4. data/Manifest.txt +42 -0
  5. data/README.txt +18 -0
  6. data/Rakefile +35 -0
  7. data/VERSION +1 -0
  8. data/calendar_date_select.gemspec +96 -0
  9. data/init.rb +1 -0
  10. data/js_test/functional/.tmp_cds_test.html +306 -0
  11. data/js_test/functional/cds_test.html +349 -0
  12. data/js_test/functional/format_iso_date_test.html +52 -0
  13. data/js_test/prototype.js +4184 -0
  14. data/js_test/test.css +40 -0
  15. data/js_test/unit/cds_helper_methods.html +46 -0
  16. data/js_test/unittest.js +564 -0
  17. data/lib/calendar_date_select/calendar_date_select.rb +121 -0
  18. data/lib/calendar_date_select/form_helpers.rb +229 -0
  19. data/lib/calendar_date_select/includes_helper.rb +29 -0
  20. data/lib/calendar_date_select.rb +33 -0
  21. data/public/blank_iframe.html +2 -0
  22. data/public/images/calendar_date_select/calendar.gif +0 -0
  23. data/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
  24. data/public/javascripts/calendar_date_select/format_american.js +35 -0
  25. data/public/javascripts/calendar_date_select/format_danish.js +31 -0
  26. data/public/javascripts/calendar_date_select/format_db.js +27 -0
  27. data/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  28. data/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
  29. data/public/javascripts/calendar_date_select/format_finnish.js +32 -0
  30. data/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
  31. data/public/javascripts/calendar_date_select/format_iso_date.js +29 -0
  32. data/public/javascripts/calendar_date_select/format_italian.js +24 -0
  33. data/public/javascripts/calendar_date_select/locale/ar.js +10 -0
  34. data/public/javascripts/calendar_date_select/locale/da.js +11 -0
  35. data/public/javascripts/calendar_date_select/locale/de.js +11 -0
  36. data/public/javascripts/calendar_date_select/locale/es.js +11 -0
  37. data/public/javascripts/calendar_date_select/locale/fi.js +10 -0
  38. data/public/javascripts/calendar_date_select/locale/fr.js +11 -0
  39. data/public/javascripts/calendar_date_select/locale/it.js +9 -0
  40. data/public/javascripts/calendar_date_select/locale/nl.js +11 -0
  41. data/public/javascripts/calendar_date_select/locale/pl.js +11 -0
  42. data/public/javascripts/calendar_date_select/locale/pt.js +11 -0
  43. data/public/javascripts/calendar_date_select/locale/ru.js +10 -0
  44. data/public/javascripts/calendar_date_select/locale/sl.js +11 -0
  45. data/public/stylesheets/calendar_date_select/blue.css +130 -0
  46. data/public/stylesheets/calendar_date_select/default.css +135 -0
  47. data/public/stylesheets/calendar_date_select/green.css +142 -0
  48. data/public/stylesheets/calendar_date_select/plain.css +128 -0
  49. data/public/stylesheets/calendar_date_select/red.css +135 -0
  50. data/public/stylesheets/calendar_date_select/silver.css +133 -0
  51. data/spec/calendar_date_select/calendar_date_select_spec.rb +14 -0
  52. data/spec/calendar_date_select/form_helpers_spec.rb +203 -0
  53. data/spec/calendar_date_select/includes_helper_spec.rb +46 -0
  54. data/spec/spec_helper.rb +26 -0
  55. metadata +113 -0
@@ -0,0 +1,306 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <title>Calendar Date Select Test Cases</title>
7
+ <script src="../prototype.js" type="text/javascript"></script>
8
+ <script src="../unittest.js" type="text/javascript"></script>
9
+ <!-- other JavaScript includes -->
10
+ <script src="../../public/javascripts/calendar_date_select/calendar_date_select.js" type="text/javascript"></script>
11
+
12
+ <link rel="stylesheet" href="../../public/stylesheets/calendar_date_select/red.css" type="text/css" />
13
+ <link rel="stylesheet" href="../test.css" type="text/css" />
14
+ </head>
15
+ <body>
16
+
17
+ <!-- Log output -->
18
+ <div id="testlog"> </div>
19
+
20
+ <!-- here go any elements you do the testing on -->
21
+ <div id="cds_test_div">
22
+ <input type="text" id="cds_test" />
23
+ </div>
24
+
25
+ <!-- Tests -->
26
+ <script type="text/javascript" language="javascript">
27
+ // <![CDATA[
28
+ new Test.Unit.Runner({
29
+ setup: function() { with(this){
30
+ $("cds_test").value="";
31
+ $("cds_test").disabled = false;
32
+ $("cds_test").readOnly = false;
33
+ }},
34
+ teardown: function() { with(this){
35
+ if (typeof(cds)!="undefined")
36
+ assert(cds.closed,"all tests should close their calendar control");
37
+ }},
38
+ testMixedTime_feedDateWithAndWithoutTime_shouldSetAccordingly: function() { with(this) {
39
+ $A(["January 2, 2007 5:00 pm", "January 2, 2007 0:00 pm"]).each(function(d) {
40
+ $("cds_test").value=d;
41
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
42
+ assertEqual(true, cds.use_time);
43
+ cds.close();
44
+ })
45
+
46
+ $("cds_test").value="January 2, 2007";
47
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
48
+ assertEqual(false, cds.use_time);
49
+ cds.close();
50
+ }},
51
+ testTodayNowButton_mixedMode_shouldSetUseTimeAccordingly: function() { with(this){
52
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
53
+ today_now = $$(".cds_buttons a[href=#]");
54
+ today_now[0].onclick();
55
+ assertEqual(false, cds.use_time, "when clicking today link");
56
+
57
+ today_now[1].onclick();
58
+ assertEqual(true, cds.use_time, "should have been true when clicking now link");
59
+ cds.close();
60
+ }},
61
+ test__selectMar_23_2008__shouldSelectCorrectDate: function() { with(this){
62
+ $("cds_test").value = "Mar 1, 2008"
63
+ cds = new CalendarDateSelect($("cds_test"), {time: "true"});
64
+ cds.updateSelectedDate({month: 2 /*+1*/, day: 23, year: 2008})
65
+
66
+ assertEqual("23", $$('td.selected div').first().innerHTML);
67
+ cds.close();
68
+ }},
69
+ test_updateSelectedDate: function() { with(this){
70
+ $("cds_test").value = "January 1, 2007"
71
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
72
+
73
+ cds.use_time=true;
74
+ cds.updateSelectedDate({hour: ""})
75
+ assertEqual(false, cds.use_time, "when setting hour to ''");
76
+
77
+ cds.use_time=true;
78
+ cds.updateSelectedDate({minute: ""})
79
+ assertEqual(false, cds.use_time, "when setting minute to ''");
80
+
81
+ cds.use_time=false;
82
+ cds.updateSelectedDate({hour: 0})
83
+ assertEqual(true, cds.use_time, "when setting hour to 0");
84
+
85
+ cds.use_time=false;
86
+ cds.updateSelectedDate({minute: 0})
87
+ assertEqual(true, cds.use_time, "when setting minute to 0");
88
+
89
+ cds.close();
90
+ }},
91
+ test_navYear: function() { with(this){
92
+ $("cds_test").value = "January 1, 2007";
93
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
94
+ cds.navYear(1870);
95
+ assertEqual(2007, cds.selected_date.getFullYear());
96
+ assertEqual(1870, cds.date.getFullYear());
97
+ cds.close();
98
+ }},
99
+ test_navMonth: function() { with(this){
100
+ $("cds_test").value = "January 1, 2007";
101
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
102
+ cds.navMonth(5);
103
+ assertEqual(0, cds.selected_date.getMonth());
104
+ assertEqual(5, cds.date.getMonth())
105
+ cds.close();
106
+ }},
107
+ test_callBacks: function() { with(this){
108
+ $("cds_test").up().build("div", {id: "global"});
109
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed",
110
+ before_show: function() { $("global").before_show_called = true},
111
+ after_show: function() { $("global").after_show_called = true},
112
+ before_close: function() { $("global").before_close_called = true},
113
+ after_close: function() { $("global").after_close_called = true},
114
+ after_navigate: function() { $("global").after_navigate_called = true},
115
+ onchange: function() { $("global").onchange_called = true},
116
+ });
117
+ cds.navMonth(1);
118
+ cds.navMonth(10);
119
+ cds.updateSelectedDate({month: 1, day: 3, year: 2007});
120
+ cds.close();
121
+ assert($('global').before_show_called, "before_show wasnt called");
122
+ assert($('global').after_show_called, "after_show wasnt called");
123
+ assert($('global').before_close_called, "before_close wasnt called");
124
+ assert($('global').after_close_called, "after_close wasnt called");
125
+ assert($('global').after_navigate_called, "after_navigate wasnt called");
126
+ assert($('global').onchange_called, "onchange wasnt called");
127
+ $("global").remove();
128
+ }},
129
+ test_disabledElement_cantUpdate: function() {with(this){
130
+ $("cds_test").value = "May 10, 2007";
131
+ $("cds_test").disabled = true;
132
+ cds = new CalendarDateSelect($("cds_test"));
133
+
134
+ runTest = function() {
135
+ cds.updateSelectedDate({day: 1, month:0, year: 2007});
136
+ assertEqual(10, cds.selected_date.getDate())
137
+ }
138
+ runTest();
139
+ $("cds_test").disabled = false;
140
+ $("cds_test").readOnly = true;
141
+ runTest();
142
+
143
+ $("cds_test").readOnly = false;
144
+ cds.close();
145
+ }},
146
+ test_readOnlyElement_forcePopup_shouldUpdate: function() {with(this){
147
+ $("cds_test").value = "May 10, 2007";
148
+ $("cds_test").readOnly = true;
149
+ cds = new CalendarDateSelect($("cds_test"), {popup: "force"});
150
+
151
+ cds.updateSelectedDate({day: 1, month:0, year: 2007});
152
+ assertEqual(1, cds.selected_date.getDate())
153
+
154
+ $("cds_test").readOnly = false;
155
+ cds.close();
156
+ }},
157
+ test_timePassed_notUsingTime_shouldIgnore: function() {with(this) {
158
+ $("cds_test").value = "May 10, 2007 5:00 pm";
159
+ cds = new CalendarDateSelect($("cds_test"), {time:false});
160
+ assert(cds.options.get("close_on_click"), "should set close_on_click to true when not using time")
161
+ assertEqual(false, cds.use_time, "When parsing time");
162
+ cds.today();
163
+ assert(cds.closed, "should close when clicking today");
164
+ assert(!cds.use_time, "Should not use time when calling today");
165
+
166
+ cds = new CalendarDateSelect($("cds_test"), {time:false});
167
+ cds.updateSelectedDate({hours: 5, minutes:30}) // this will close the control
168
+ assertEqual(false, cds.use_time, "When setting hour/minute");
169
+ assert(cds.closed);
170
+ }},
171
+ test_setUseTime_true_notUsingTime_shouldIgnore: function() {with(this) {
172
+ $("cds_test").value = "May 10, 2007 5:00 pm";
173
+ cds = new CalendarDateSelect($("cds_test"), {time:false});
174
+ assertEqual(false, cds.use_time, "When parsing time");
175
+ cds.setUseTime(true); // this will close the control
176
+ assert(! cds.use_time, "After calling setUseTime(true)");
177
+ cds.close();
178
+ }},
179
+ test_setMinute_notOnInterval_usesFloor: function() {with(this){
180
+ $("cds_test").value = "May 10, 2007 5:25 pm";
181
+ cds = new CalendarDateSelect($("cds_test"), {time:true});
182
+ cds.updateSelectedDate({hour: 1, minute: 4});
183
+ assertEqual(0, cds.selected_date.getMinutes());
184
+ assertEqual(1, cds.selected_date.getHours());
185
+
186
+ cds.close();
187
+ }},
188
+ // this checks for a safari 2 bug where safari parses "" as a date back in 1969
189
+ test_parseDate_blankInput_interpretsAsNotSelected: function() {with(this){
190
+ $("cds_test").value = " ";
191
+ cds = new CalendarDateSelect($("cds_test"), {time:true});
192
+ assertEqual(new Date().getFullYear(), cds.selected_date.getFullYear());
193
+ assertEqual(new Date().getFullYear(), cds.date.getFullYear());
194
+ assert(! cds.selection_made)
195
+ cds.close();
196
+ }},
197
+ test_parseDate_timeTrue_noTimePassed_useTimeSetToTrueAnyway: function() {with(this){
198
+ $("cds_test").value = "December 1, 2007 ";
199
+ cds = new CalendarDateSelect($("cds_test"), {time:true});
200
+ assert(cds.use_time)
201
+ cds.close();
202
+ }},
203
+ test_passDivElement__shouldUseChildInputForTargetElement: function() {with(this){
204
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true});
205
+ assertEqual("INPUT", cds.target_element.nodeName)
206
+ cds.close();
207
+ }},
208
+ test__flexibleYearRange__datePassedWayBackWhen__shouldInitYearSelectAroundDate: function() {with(this){
209
+ $("cds_test").value = "July 4, 1776";
210
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true});
211
+ assert(cds.flexibleYearRange(), " should have had a flexibleYearRange");
212
+ assert(cds.year_select.setValue(1776), "Should have allowed me to select 1776");
213
+ cds.close();
214
+ }},
215
+ test__nonflexibleYearRange__dateRangeAtEnds__shouldntAllowNavigationPassedBoundary: function() {with(this){
216
+ $("cds_test").value = "January 1, 2007";
217
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true, year_range: [2007, 2007]});
218
+
219
+ assert(! cds.navYear(2006), "should not allow year navigation outside of boundary");
220
+ assert(! cds.navYear(2008), "should not allow year navigation outside of boundary");
221
+ assert(! cds.navMonth(-1), "shouldnt allow me to go beyond boundary");
222
+ assert(! cds.navMonth(13), "shouldnt allow me to go beyond boundary");
223
+ assert(cds.navMonth(1), "should allow me to be in boundary");
224
+ assert(cds.navYear(2007), "should allow me to be in boundary");
225
+ cds.close();
226
+ }},
227
+ test__nonflexibleYearRange__shouldPopulateRange: function() {with(this){
228
+ $("cds_test").value = "January 1, 2007";
229
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true, year_range: [2007, 2007]});
230
+ assert(cds.year_select.setValue(2007), "should allow me to select 2007");
231
+ cds.close();
232
+ }},
233
+ test__nonflexibleYearRange__initializedWithDateOutsideOfRange__shouldShowNavDateAsClosestToOutsideYear: function() {with(this){
234
+ $("cds_test").value = "January 1, 1900";
235
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true, year_range: [1997, 2007]});
236
+ assertEqual(1997, cds.date.getFullYear(), "When going lesser than year_range");
237
+ cds.close();
238
+
239
+ $("cds_test").value = "January 1, 2010";
240
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true, year_range: [1997, 2007]});
241
+ assertEqual(2007, cds.date.getFullYear(), "When going greater than year_range");
242
+
243
+ cds.close();
244
+ }},
245
+ test__nonflexibleYearRange__initializedWithDateInsideOfRange__shouldShowNavDateAsYear: function() {with(this){
246
+ $("cds_test").value = "January 1, 2005";
247
+ cds = new CalendarDateSelect($("cds_test_div"), {year_range: [1997, 2007]});
248
+ assertEqual(2005, cds.date.getFullYear(), "When going lesser than year_range");
249
+ cds.close();
250
+ }},
251
+ test__flexibleYearRange__goToBoundary__shouldRefreshRange: function() {with(this){
252
+ $("cds_test").value = "January 1, 2007";
253
+ cds = new CalendarDateSelect($("cds_test_div"), {year_range: 10});
254
+ cds.navYear(1997);
255
+ assert(cds.year_select.setValue(1987), "should have refreshed with 1997 as the center");
256
+ cds.navYear(2017);
257
+ assert(cds.year_select.setValue(2027), "should have refreshed with 2027 as the center");
258
+ cds.close();
259
+ }},
260
+ test__should_show_iframe_only_in_ie: function() {with(this){
261
+ cds = new CalendarDateSelect($("cds_test_div"));
262
+
263
+ if (navigator.appName=="Microsoft Internet Explorer")
264
+ assertEqual(1, $$('iframe.ie6_blocker').length)
265
+ else
266
+ assertEqual(0, $$('iframe.ie6_blocker').length)
267
+
268
+ cds.close();
269
+ }},
270
+ test__should_populate_minute_box_according_to_minute_interval: function() {with(this){
271
+ cds = new CalendarDateSelect($("cds_test_div"), {time: true, minute_interval: 10});
272
+ assert(cds.minute_select.setValue(0), "should allow me to select 0 minutes" );
273
+ assert(!cds.minute_select.setValue(5), "should NOT allow me to select 5 minutes");
274
+ assert(cds.minute_select.setValue(10), "should allow me to select 10 minutes" );
275
+ cds.close();
276
+ }},
277
+ test__shouldnt_leak_variables: function() {with (this) {
278
+ var vars = $w("padded2 compare_date str minute hour value e above e_dim e_top e_left matched e_bottom e_height c_pos c_left c_top c_height left_px top_px top_div header_div body_div buttons_div footer_div bottom_div days_tbody row_number cell_index weekday that pre_days use_time m y hover_date x d o")
279
+ vars.each(function(v) {eval(v + " = -100");});
280
+
281
+ cds = new CalendarDateSelect($("cds_test_div"), {time: true});
282
+ cds.navMonth(1);
283
+ cds.navYear(2);
284
+ cds.dayHover($$('.cds_body td').first());
285
+ cds.updateSelectedDate({day:1, month:1, year:2007});
286
+ cds.close();
287
+
288
+ vars.each(function(v) {
289
+ assert(-100 == eval(v), "Variable " + v + " was leaked");
290
+ });
291
+ }},
292
+ test__valid_date__shouldnt_allow_selection_of_invalid_dates_and_should_apply_css: function() {with (this) {
293
+ $('cds_test').value = "December 11, 2007";
294
+ cds = new CalendarDateSelect($("cds_test_div"), {valid_date_check: function(date) { date < new Date("December 13, 2007")}});
295
+ cds.updateSelectedDate({day:13, month:12-1, year:2007});
296
+ cds.close();
297
+
298
+ vars.each(function(v) {
299
+ assert(-100 == eval(v), "Variable " + v + " was leaked");
300
+ });
301
+ }}
302
+ });
303
+ // ]]>
304
+ </script>
305
+ </body>
306
+ </html>
@@ -0,0 +1,349 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <title>Calendar Date Select Test Cases</title>
7
+ <script src="../prototype.js" type="text/javascript"></script>
8
+ <script src="../unittest.js" type="text/javascript"></script>
9
+ <!-- other JavaScript includes -->
10
+ <script src="../../public/javascripts/calendar_date_select/calendar_date_select.js" type="text/javascript"></script>
11
+
12
+ <link rel="stylesheet" href="../../public/stylesheets/calendar_date_select/red.css" type="text/css" />
13
+ <link rel="stylesheet" href="../test.css" type="text/css" />
14
+ </head>
15
+ <body>
16
+
17
+ <!-- Log output -->
18
+ <div id="testlog"> </div>
19
+
20
+ <!-- here go any elements you do the testing on -->
21
+ <div id="cds_test_div">
22
+ <input type="text" id="cds_test" />
23
+ </div>
24
+
25
+ <!-- Tests -->
26
+ <script type="text/javascript" language="javascript">
27
+ // <![CDATA[
28
+ new Test.Unit.Runner({
29
+ setup: function() { with(this){
30
+ $("cds_test").value="";
31
+ $("cds_test").disabled = false;
32
+ $("cds_test").readOnly = false;
33
+ }},
34
+ teardown: function() { with(this){
35
+ if (typeof(cds)!="undefined") assert(cds.closed,"all tests should close their calendar control");
36
+ Date.first_day_of_week = 0;
37
+ Date.weekdays = $w("S M T W T F S")
38
+ }},
39
+ testMixedTime_feedDateWithAndWithoutTime_shouldSetAccordingly: function() { with(this) {
40
+ $A(["January 2, 2007 5:00 pm", "January 2, 2007 0:00 pm"]).each(function(d) {
41
+ $("cds_test").value=d;
42
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
43
+ assertEqual(true, cds.use_time);
44
+ cds.close();
45
+ })
46
+
47
+ $("cds_test").value="January 2, 2007";
48
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
49
+ assertEqual(false, cds.use_time);
50
+ cds.close();
51
+ }},
52
+ testTodayNowButton_mixedMode_shouldSetUseTimeAccordingly: function() { with(this){
53
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
54
+ today_now = $$(".cds_buttons a[href=#]");
55
+ today_now[0].onclick();
56
+ assertEqual(false, cds.use_time, "when clicking today link");
57
+
58
+ today_now[1].onclick();
59
+ assertEqual(true, cds.use_time, "should have been true when clicking now link");
60
+ cds.close();
61
+ }},
62
+ test__selectMar_23_2008__shouldSelectCorrectDate: function() { with(this){
63
+ $("cds_test").value = "Mar 1, 2008"
64
+ cds = new CalendarDateSelect($("cds_test"), {time: "true"});
65
+ cds.updateSelectedDate({month: 2 /*+1*/, day: 23, year: 2008})
66
+
67
+ assertEqual("23", $$('td.selected div').first().innerHTML);
68
+ cds.close();
69
+ }},
70
+ test_updateSelectedDate: function() { with(this){
71
+ $("cds_test").value = "January 1, 2007"
72
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
73
+
74
+ cds.use_time=true;
75
+ cds.updateSelectedDate({hour: ""})
76
+ assertEqual(false, cds.use_time, "when setting hour to ''");
77
+
78
+ cds.use_time=true;
79
+ cds.updateSelectedDate({minute: ""})
80
+ assertEqual(false, cds.use_time, "when setting minute to ''");
81
+
82
+ cds.use_time=false;
83
+ cds.updateSelectedDate({hour: 0})
84
+ assertEqual(true, cds.use_time, "when setting hour to 0");
85
+
86
+ cds.use_time=false;
87
+ cds.updateSelectedDate({minute: 0})
88
+ assertEqual(true, cds.use_time, "when setting minute to 0");
89
+
90
+ cds.close();
91
+ }},
92
+ test_navYear: function() { with(this){
93
+ $("cds_test").value = "January 1, 2007";
94
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
95
+ cds.navYear(1870);
96
+ assertEqual(2007, cds.selected_date.getFullYear());
97
+ assertEqual(1870, cds.date.getFullYear());
98
+ cds.close();
99
+ }},
100
+ test_navMonth: function() { with(this){
101
+ $("cds_test").value = "January 1, 2007";
102
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed"});
103
+ cds.navMonth(5);
104
+ assertEqual(0, cds.selected_date.getMonth());
105
+ assertEqual(5, cds.date.getMonth())
106
+ cds.close();
107
+ }},
108
+ test_callBacks: function() { with(this){
109
+ $("cds_test").up().build("div", {id: "global"});
110
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed",
111
+ before_show: function() { $("global").before_show_called = true},
112
+ after_show: function() { $("global").after_show_called = true},
113
+ before_close: function() { $("global").before_close_called = true},
114
+ after_close: function() { $("global").after_close_called = true},
115
+ after_navigate: function() { $("global").after_navigate_called = true},
116
+ onchange: function() { $("global").onchange_called = true},
117
+ });
118
+ cds.navMonth(1);
119
+ cds.navMonth(10);
120
+ cds.updateSelectedDate({month: 1, day: 3, year: 2007});
121
+ cds.close();
122
+ assert($('global').before_show_called, "before_show wasnt called");
123
+ assert($('global').after_show_called, "after_show wasnt called");
124
+ assert($('global').before_close_called, "before_close wasnt called");
125
+ assert($('global').after_close_called, "after_close wasnt called");
126
+ assert($('global').after_navigate_called, "after_navigate wasnt called");
127
+ assert($('global').onchange_called, "onchange wasnt called");
128
+ $("global").remove();
129
+ }},
130
+ test_onchangeCallbackChangedOnclear: function() { with(this){
131
+ $("cds_test").up().build("div", {id: "global"});
132
+ cds = new CalendarDateSelect($("cds_test"), {time: "mixed",
133
+ onchange: function() { $("global").onchange_called = true},
134
+ });
135
+ $("cds_test").value = "";
136
+ cds.clearDate();
137
+ assert( ! $('global').onchange_called, "onchange was called, when the value wasn't actually changed");
138
+ $("cds_test").value = "boogy";
139
+ cds.clearDate();
140
+ assert( $('global').onchange_called, "onchange wasnt called, but should ahve been");
141
+ cds.close();
142
+ $("global").remove();
143
+ }},
144
+
145
+ test_disabledElement_cantUpdate: function() {with(this){
146
+ $("cds_test").value = "May 10, 2007";
147
+ $("cds_test").disabled = true;
148
+ cds = new CalendarDateSelect($("cds_test"));
149
+
150
+ runTest = function() {
151
+ cds.updateSelectedDate({day: 1, month:0, year: 2007});
152
+ assertEqual(10, cds.selected_date.getDate())
153
+ }
154
+ runTest();
155
+ $("cds_test").disabled = false;
156
+ $("cds_test").readOnly = true;
157
+ runTest();
158
+
159
+ $("cds_test").readOnly = false;
160
+ cds.close();
161
+ }},
162
+ test_readOnlyElement_forcePopup_shouldUpdate: function() {with(this){
163
+ $("cds_test").value = "May 10, 2007";
164
+ $("cds_test").readOnly = true;
165
+ cds = new CalendarDateSelect($("cds_test"), {popup: "force"});
166
+
167
+ cds.updateSelectedDate({day: 1, month:0, year: 2007});
168
+ assertEqual(1, cds.selected_date.getDate())
169
+
170
+ $("cds_test").readOnly = false;
171
+ cds.close();
172
+ }},
173
+ test_timePassed_notUsingTime_shouldIgnore: function() {with(this) {
174
+ $("cds_test").value = "May 10, 2007 5:00 pm";
175
+ cds = new CalendarDateSelect($("cds_test"), {time:false});
176
+ assert(cds.closeOnClick(), "should set close_on_click to true when not using time")
177
+ assertEqual(false, cds.use_time, "When parsing time");
178
+ cds.today();
179
+ assert(cds.closed, "should close when clicking today");
180
+ assert(!cds.use_time, "Should not use time when calling today");
181
+
182
+ cds = new CalendarDateSelect($("cds_test"), {time:false});
183
+ cds.updateSelectedDate({hours: 5, minutes:30}) // this will close the control
184
+ assertEqual(false, cds.use_time, "When setting hour/minute");
185
+ assert(cds.closed);
186
+ }},
187
+ test_setUseTime_true_notUsingTime_shouldIgnore: function() {with(this) {
188
+ $("cds_test").value = "May 10, 2007 5:00 pm";
189
+ cds = new CalendarDateSelect($("cds_test"), {time:false});
190
+ assertEqual(false, cds.use_time, "When parsing time");
191
+ cds.setUseTime(true); // this will close the control
192
+ assert(! cds.use_time, "After calling setUseTime(true)");
193
+ cds.close();
194
+ }},
195
+ test_setMinute_notOnInterval_usesFloor: function() {with(this){
196
+ $("cds_test").value = "May 10, 2007 5:25 pm";
197
+ cds = new CalendarDateSelect($("cds_test"), {time:true});
198
+ cds.updateSelectedDate({hour: 1, minute: 4});
199
+ assertEqual(0, cds.selected_date.getMinutes());
200
+ assertEqual(1, cds.selected_date.getHours());
201
+
202
+ cds.close();
203
+ }},
204
+ // this checks for a safari 2 bug where safari parses "" as a date back in 1969
205
+ test_parseDate_blankInput_interpretsAsNotSelected: function() {with(this){
206
+ $("cds_test").value = " ";
207
+ cds = new CalendarDateSelect($("cds_test"), {time:true});
208
+ assertEqual(new Date().getFullYear(), cds.selected_date.getFullYear());
209
+ assertEqual(new Date().getFullYear(), cds.date.getFullYear());
210
+ assert(! cds.selection_made)
211
+ cds.close();
212
+ }},
213
+ test_parseDate_timeTrue_noTimePassed_useTimeSetToTrueAnyway: function() {with(this){
214
+ $("cds_test").value = "December 1, 2007 ";
215
+ cds = new CalendarDateSelect($("cds_test"), {time:true});
216
+ assert(cds.use_time)
217
+ cds.close();
218
+ }},
219
+ test_passDivElement__shouldUseChildInputForTargetElement: function() {with(this){
220
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true});
221
+ assertEqual("INPUT", cds.target_element.nodeName)
222
+ cds.close();
223
+ }},
224
+ test__flexibleYearRange__datePassedWayBackWhen__shouldInitYearSelectAroundDate: function() {with(this){
225
+ $("cds_test").value = "July 4, 1776";
226
+ cds = new CalendarDateSelect($("cds_test_div"), {time:true});
227
+ assert(cds.flexibleYearRange(), " should have had a flexibleYearRange");
228
+ assert(cds.year_select.setValue(1776), "Should have allowed me to select 1776");
229
+ cds.close();
230
+ }},
231
+ test__nonflexibleYearRange__dateRangeAtEnds__shouldntAllowNavigationPassedBoundary: function() {with(this){
232
+ $("cds_test").value = "January 1, 2007";
233
+ cds = new CalendarDateSelect($("cds_test"), {time:true, year_range: [2007, 2007]});
234
+
235
+ assert(! cds.navYear(2006), "should not allow year navigation outside of boundary");
236
+ assert(! cds.navYear(2008), "should not allow year navigation outside of boundary");
237
+ assert(! cds.navMonth(-1), "shouldnt allow me to go beyond boundary");
238
+ assert(! cds.navMonth(13), "shouldnt allow me to go beyond boundary");
239
+ assert(cds.navMonth(1), "should allow me to be in boundary");
240
+ assert(cds.navYear(2007), "should allow me to be in boundary");
241
+ cds.close();
242
+ }},
243
+ test__nonflexibleYearRange__shouldPopulateRange: function() {with(this){
244
+ $("cds_test").value = "January 1, 2007";
245
+ cds = new CalendarDateSelect($("cds_test"), {time:true, year_range: [2007, 2007]});
246
+ assert(cds.year_select.setValue(2007), "should allow me to select 2007");
247
+ cds.close();
248
+ }},
249
+ test__nonflexibleYearRange__initializedWithDateOutsideOfRange__shouldShowNavDateAsClosestToOutsideYear: function() {with(this){
250
+ $("cds_test").value = "January 1, 1900";
251
+ cds = new CalendarDateSelect($("cds_test"), {time:true, year_range: [1997, 2007]});
252
+ assertEqual(1997, cds.date.getFullYear(), "When going lesser than year_range");
253
+ cds.close();
254
+
255
+ $("cds_test").value = "January 1, 2010";
256
+ cds = new CalendarDateSelect($("cds_test"), {time:true, year_range: [1997, 2007]});
257
+ assertEqual(2007, cds.date.getFullYear(), "When going greater than year_range");
258
+
259
+ cds.close();
260
+ }},
261
+ test__nonflexibleYearRange__initializedWithDateInsideOfRange__shouldShowNavDateAsYear: function() {with(this){
262
+ $("cds_test").value = "January 1, 2005";
263
+ cds = new CalendarDateSelect($("cds_test"), {year_range: [1997, 2007]});
264
+ assertEqual(2005, cds.date.getFullYear(), "When going lesser than year_range");
265
+ cds.close();
266
+ }},
267
+ test__flexibleYearRange__goToBoundary__shouldRefreshRange: function() {with(this){
268
+ $("cds_test").value = "January 1, 2007";
269
+ cds = new CalendarDateSelect($("cds_test"), {year_range: 10});
270
+ cds.navYear(1997);
271
+ assert(cds.year_select.setValue(1987), "should have refreshed with 1997 as the center");
272
+ cds.navYear(2017);
273
+ assert(cds.year_select.setValue(2027), "should have refreshed with 2027 as the center");
274
+ cds.close();
275
+ }},
276
+ test__should_show_iframe_only_in_ie: function() {with(this){
277
+ cds = new CalendarDateSelect($("cds_test"));
278
+
279
+ if (navigator.appName=="Microsoft Internet Explorer")
280
+ assertEqual(1, $$('iframe.ie6_blocker').length)
281
+ else
282
+ assertEqual(0, $$('iframe.ie6_blocker').length)
283
+
284
+ cds.close();
285
+ }},
286
+ test__should_populate_minute_box_according_to_minute_interval: function() {with(this){
287
+ cds = new CalendarDateSelect($("cds_test"), {time: true, minute_interval: 10});
288
+ assert(cds.minute_select.setValue(0), "should allow me to select 0 minutes" );
289
+ assert(!cds.minute_select.setValue(5), "should NOT allow me to select 5 minutes");
290
+ assert(cds.minute_select.setValue(10), "should allow me to select 10 minutes" );
291
+ cds.close();
292
+ }},
293
+ test__shouldnt_leak_variables: function() {with (this) {
294
+ var vars = $w("padded2 compare_date str minute hour value e above e_dim e_top e_left matched e_bottom e_height c_pos c_left c_top c_height left_px top_px top_div header_div body_div buttons_div footer_div bottom_div days_tbody row_number cell_index weekday that pre_days use_time m y hover_date x d o")
295
+ vars.each(function(v) {eval(v + " = -100");});
296
+
297
+ cds = new CalendarDateSelect($("cds_test"), {time: true});
298
+ cds.navMonth(1);
299
+ cds.navYear(2);
300
+ cds.dayHover($$('.cds_body td').first());
301
+ cds.updateSelectedDate({day:1, month:1, year:2007});
302
+ cds.close();
303
+
304
+ vars.each(function(v) {
305
+ assert(-100 == eval(v), "Variable " + v + " was leaked");
306
+ });
307
+ }},
308
+ test__valid_date__shouldnt_allow_selection_of_invalid_dates_and_should_apply_css: function() {with (this) {
309
+ $('cds_test').value = "December 11, 2007";
310
+ cds = new CalendarDateSelect($("cds_test"), {valid_date_check: function(date) { return date < new Date("December 13, 2007")}, time: "mixed"});
311
+ assertEqual("December 11, 2007", $F('cds_test'));
312
+ cds.updateSelectedDate({day:13, month:12-1, year:2007});
313
+ assertEqual("December 11, 2007", $F('cds_test'), "Date should not have been allowed to be selected");
314
+ cds.updateSelectedDate({day:10, month:12-1, year:2007});
315
+ assertEqual("December 10, 2007", $F('cds_test'), "Date should not have been allowed to be selected");
316
+
317
+ day_12_element = $$('.calendar_date_select td')[17];
318
+ day_13_element = $$('.calendar_date_select td')[18];
319
+ assertEqual(12, day_12_element.day); // make sure we have th right one
320
+ assertEqual(13, day_13_element.day); // make sure we have th right one
321
+ assert( ! day_12_element.hasClassName("disabled"), "Day 12 shouldnt be disabled");
322
+ assert(day_13_element.hasClassName("disabled"), "Day 13 should be disabled");
323
+
324
+ cds.close();
325
+ }},
326
+ test__valid_date_check_is_nil__should_show_all_cells_as_enabled: function() {with (this) {
327
+ $('cds_test').value = "December 11, 2007";
328
+ cds = new CalendarDateSelect($("cds_test"));
329
+
330
+ $$('.calendar_date_select td').each(function(e){
331
+ assert( ! e.hasClassName("disabled"));
332
+ });
333
+
334
+ cds.close();
335
+ }},
336
+ test__should_pull_up_dec_07_when_first_day_of_week_is_1: function() {with (this) {
337
+ Date.first_day_of_week = 1;
338
+ Date.weekdays = $w("M T W T F S S");
339
+ $('cds_test').value = "December 1, 2007";
340
+ cds = new CalendarDateSelect($("cds_test"));
341
+
342
+ assertEqual(1, $$(".calendar_date_select").length);
343
+ cds.close();
344
+ }}
345
+ });
346
+ // ]]>
347
+ </script>
348
+ </body>
349
+ </html>