/* 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/. */ /** * Tests calendar internationalisation for Japanese (Japan). * The week starts on Sunday, and Saturday and Sunday are the days off. * No DST applies. */ const longDays = ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"]; const shortDays = ["日", "月", "火", "水", "木", "金", "土"]; const narrowDays = shortDays; const daysOff = [true, false, false, false, false, false, true]; add_setup(function () { Assert.equal( Services.prefs.getIntPref("calendar.week.start"), 0, "the week should start on Sunday" ); Assert.ok(Services.prefs.getBoolPref("calendar.week.d0sundaysoff"), "Sunday should be a day off"); Assert.ok( !Services.prefs.getBoolPref("calendar.week.d1mondaysoff"), "Monday should not be a day off" ); Assert.ok( !Services.prefs.getBoolPref("calendar.week.d2tuesdaysoff"), "Tuesday should not be a day off" ); Assert.ok( !Services.prefs.getBoolPref("calendar.week.d3wednesdaysoff"), "Wednesday should not be a day off" ); Assert.ok( !Services.prefs.getBoolPref("calendar.week.d4thursdaysoff"), "Thursday should not be a day off" ); Assert.ok( !Services.prefs.getBoolPref("calendar.week.d5fridaysoff"), "Friday should not be a day off" ); Assert.ok( Services.prefs.getBoolPref("calendar.week.d6saturdaysoff"), "Saturday should be a day off" ); Assert.equal(cal.dtz.defaultTimezone, "Asia/Tokyo", "the timezone should be set from the OS"); const january = cal.createDateTime("20240101T120000").getInTimezone(cal.dtz.defaultTimezone); Assert.equal(january.timezoneOffset, 9 * 3600, "the UTC offset should be +9 hours in January"); const july = cal.createDateTime("20240701T120000").getInTimezone(cal.dtz.defaultTimezone); Assert.equal(july.timezoneOffset, 9 * 3600, "the UTC offset should be +9 hours in July"); }); add_task(async function testWeekView() { await subtestWeekView(longDays, shortDays, daysOff); }); add_task(async function testMultiweekView() { await subtestMultiweekView(longDays, shortDays, daysOff); }); add_task(async function testMonthView() { await subtestMonthView(longDays, shortDays, daysOff); }); add_task(function testMinimonth() { subtestMinimonth(narrowDays); }); add_task(async function testIntervalDescription() { await subtestIntervalDescription( "2024/10/19土曜日", "2024/10/13~2024/10/19", "2024/10/13~2024/11/09", "2024年10月" ); }); add_task(async function testPrint() { await subtestPrint(shortDays, "2024年12月", "2024年10月~12月"); });