1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var { handleDeleteOccurrencePrompt } = ChromeUtils.import(
"resource://testing-common/calendar/CalendarUtils.jsm"
);
var { menulistSelect } = ChromeUtils.import(
"resource://testing-common/calendar/ItemEditingHelpers.jsm"
);
var { saveAndCloseItemDialog, setData } = ChromeUtils.import(
"resource://testing-common/calendar/ItemEditingHelpers.jsm"
);
var { setCalendarView, dayView, weekView, multiweekView, monthView } = CalendarTestUtils;
const HOUR = 8;
add_task(async function testLastDayOfMonthRecurrence() {
let calendar = CalendarTestUtils.createCalendar();
registerCleanupFunction(() => {
CalendarTestUtils.removeCalendar(calendar);
});
await setCalendarView(window, "day");
await CalendarTestUtils.goToDate(window, 2008, 1, 31); // Start with a leap year.
// Create monthly recurring event.
let eventBox = dayView.getHourBoxAt(window, HOUR);
let { dialogWindow, iframeWindow } = await CalendarTestUtils.editNewEvent(window, eventBox);
await setData(dialogWindow, iframeWindow, { title: "Event", repeat: setRecurrence });
await saveAndCloseItemDialog(dialogWindow);
// data tuple: [year, month, day, row in month view]
// note: Month starts here with 1 for January.
let checkingData = [
[2008, 1, 31, 5],
[2008, 2, 29, 5],
[2008, 3, 31, 6],
[2008, 4, 30, 5],
[2008, 5, 31, 5],
[2008, 6, 30, 5],
[2008, 7, 31, 5],
[2008, 8, 31, 6],
[2008, 9, 30, 5],
[2008, 10, 31, 5],
[2008, 11, 30, 6],
[2008, 12, 31, 5],
[2009, 1, 31, 5],
[2009, 2, 28, 4],
[2009, 3, 31, 5],
];
// Check all dates.
for (let [y, m, d, correctRow] of checkingData) {
let date = new Date(Date.UTC(y, m - 1, d));
let column = date.getUTCDay() + 1;
await CalendarTestUtils.goToDate(window, y, m, d);
// day view
await setCalendarView(window, "day");
await dayView.waitForEventBoxAt(window, 1);
// week view
await setCalendarView(window, "week");
await weekView.waitForEventBoxAt(window, column, 1);
// multiweek view
await setCalendarView(window, "multiweek");
await multiweekView.waitForItemAt(window, 1, column, 1);
// month view
await setCalendarView(window, "month");
await monthView.waitForItemAt(window, correctRow, column, 1);
}
// Delete event.
await CalendarTestUtils.goToDate(
window,
checkingData[0][0],
checkingData[0][1],
checkingData[0][2]
);
await setCalendarView(window, "day");
let box = await dayView.waitForEventBoxAt(window, 1);
EventUtils.synthesizeMouseAtCenter(box, {}, window);
await handleDeleteOccurrencePrompt(window, box, true);
await dayView.waitForNoEventBoxAt(window, 1);
Assert.ok(true, "Test ran to completion");
});
async function setRecurrence(recurrenceWindow) {
let recurrenceDocument = recurrenceWindow.document;
// monthly
await menulistSelect(recurrenceDocument.getElementById("period-list"), "2");
// last day of month
EventUtils.synthesizeMouseAtCenter(
recurrenceDocument.getElementById("montly-period-relative-date-radio"),
{},
recurrenceWindow
);
await menulistSelect(recurrenceDocument.getElementById("monthly-ordinal"), "-1");
await menulistSelect(recurrenceDocument.getElementById("monthly-weekday"), "-1");
let button = recurrenceDocument.querySelector("dialog").getButton("accept");
button.scrollIntoView();
// Close dialog.
EventUtils.synthesizeMouseAtCenter(button, {}, recurrenceWindow);
}
|