summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gmail.com>2020-10-16 13:47:22 +0000
committerMichael Catanzaro <mcatanzaro@gnome.org>2020-10-16 13:51:20 +0000
commit6ec67cd393a601ac34537b8c88fbdaec4b66ab69 (patch)
treeb4a3883e058a5eb666dc0e860f48aadc723b5dbb
parentc014614a9b3f23ae5da8cb8c83e989d776a08c8f (diff)
downloadglib-cherry-pick-b5429b7e.tar.gz
Merge branch 'six-days-to-eom' into 'master'cherry-pick-b5429b7e
Fix the 6-days-until-the-end-of-the-month bug Closes #2215 See merge request GNOME/glib!1683 (cherry picked from commit b5429b7e30f07c7abd4f78b2bf8c98442ceb5be3) 411aa464 Add a test for the 6-days-until-EOM bug da007790 Fix the 6-days-until-the-end-of-the-month bug
-rw-r--r--glib/gtimezone.c6
-rw-r--r--glib/tests/gdatetime.c38
2 files changed, 43 insertions, 1 deletions
diff --git a/glib/gtimezone.c b/glib/gtimezone.c
index 3c555dbc7..96510138e 100644
--- a/glib/gtimezone.c
+++ b/glib/gtimezone.c
@@ -1042,7 +1042,11 @@ find_relative_date (TimeZoneDate *buffer)
/* week is 1 <= w <= 5, we need 0-based */
days = 7 * (buffer->week - 1) + wday - first_wday;
- while (days > days_in_month)
+ /* "days" is a 0-based offset from the 1st of the month.
+ * Adding days == days_in_month would bring us into the next month,
+ * hence the ">=" instead of just ">".
+ */
+ while (days >= days_in_month)
days -= 7;
g_date_add_days (&date, days);
diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c
index e0541877c..4ea0fc6f4 100644
--- a/glib/tests/gdatetime.c
+++ b/glib/tests/gdatetime.c
@@ -2193,6 +2193,43 @@ test_z (void)
}
static void
+test_6_days_until_end_of_the_month (void)
+{
+ GTimeZone *tz;
+ GDateTime *dt;
+ gchar *p;
+
+ g_test_bug ("https://gitlab.gnome.org/GNOME/glib/-/issues/2215");
+
+#ifdef G_OS_UNIX
+ /* This is the footertz string from `Europe/Paris` from tzdata 2020b. It’s
+ * used by GLib when the tzdata file was compiled with `zic -b slim`, which is
+ * the default in tzcode ≥2020b.
+ *
+ * The `M10.5.0` part indicates that the summer time end transition happens on
+ * the Sunday (`0`) in the last week (`5`) of October (`10`). That’s 6 days
+ * before the end of the month, and hence was triggering issue #2215.
+ *
+ * References:
+ * - https://tools.ietf.org/id/draft-murchison-tzdist-tzif-15.html#rfc.section.3.3
+ * - https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html#tag_08_03
+ */
+ tz = g_time_zone_new ("CET-1CEST,M3.5.0,M10.5.0/3");
+#elif defined (G_OS_WIN32)
+ tz = g_time_zone_new ("Romance Standard Time");
+#endif
+ dt = g_date_time_new (tz, 2020, 10, 5, 1, 1, 1);
+
+ p = g_date_time_format (dt, "%Y-%m-%d %H:%M:%S%z");
+ /* Incorrect output is "2020-10-05 01:01:01+0100" */
+ g_assert_cmpstr (p, ==, "2020-10-05 01:01:01+0200");
+ g_free (p);
+
+ g_date_time_unref (dt);
+ g_time_zone_unref (tz);
+}
+
+static void
test_format_iso8601 (void)
{
GTimeZone *tz = NULL;
@@ -2836,6 +2873,7 @@ main (gint argc,
g_test_add_func ("/GDateTime/new_from_iso8601/2", test_GDateTime_new_from_iso8601_2);
g_test_add_func ("/GDateTime/new_full", test_GDateTime_new_full);
g_test_add_func ("/GDateTime/now", test_GDateTime_now);
+ g_test_add_func ("/GDateTime/test-6-days-until-end-of-the-month", test_6_days_until_end_of_the_month);
g_test_add_func ("/GDateTime/printf", test_GDateTime_printf);
g_test_add_func ("/GDateTime/non_utf8_printf", test_non_utf8_printf);
g_test_add_func ("/GDateTime/format_unrepresentable", test_format_unrepresentable);