blob: 79cddc2245e208e686f972cecf0d3388e7e65a67 (
plain)
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
|
/* 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/. */
function run_test() {
do_calendar_startup(run_next_test);
}
// check tz database version
add_task(async function version_test() {
ok(cal.timezoneService.version, "service should provide timezone version");
});
// check whether all tz definitions have all properties
add_task(async function zone_test() {
function resolveZone(aZoneId) {
let timezone = cal.timezoneService.getTimezone(aZoneId);
equal(aZoneId, timezone.tzid, "Zone test " + aZoneId);
ok(
timezone.icalComponent.serializeToICS().startsWith("BEGIN:VTIMEZONE"),
"VTIMEZONE test " + aZoneId
);
}
let foundZone = false;
for (let zone of cal.timezoneService.timezoneIds) {
foundZone = true;
resolveZone(zone);
}
ok(foundZone, "There is at least one timezone");
});
|