mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
Improve GDate test coverage
This commit is contained in:
parent
5e6d86877d
commit
3de604d438
@ -67,6 +67,8 @@ test_julian_constructor (void)
|
||||
d2 = g_date_new_julian (5000);
|
||||
g_assert_cmpint (g_date_get_julian (d1), ==, 4000);
|
||||
g_assert_cmpint (g_date_days_between (d1, d2), ==, 1000);
|
||||
g_assert_cmpint (g_date_get_year (d1), ==, 11);
|
||||
g_assert_cmpint (g_date_get_day (d2), ==, 9);
|
||||
g_date_free (d1);
|
||||
g_date_free (d2);
|
||||
}
|
||||
@ -130,6 +132,39 @@ test_parse (void)
|
||||
g_assert_cmpint (g_date_get_day (d), ==, 10);
|
||||
g_assert_cmpint (g_date_get_year (d), ==, 2000);
|
||||
|
||||
g_date_set_parse (d, "2001 10 1");
|
||||
g_assert (g_date_valid (d));
|
||||
g_assert_cmpint (g_date_get_month (d), ==, 10);
|
||||
g_assert_cmpint (g_date_get_day (d), ==, 1);
|
||||
g_assert_cmpint (g_date_get_year (d), ==, 2001);
|
||||
|
||||
g_date_set_parse (d, "2001 10");
|
||||
g_assert (!g_date_valid (d));
|
||||
|
||||
g_date_set_parse (d, "2001 10 1 1");
|
||||
g_assert (!g_date_valid (d));
|
||||
|
||||
g_date_set_parse (d, "March 1999");
|
||||
g_assert (g_date_valid (d));
|
||||
g_assert_cmpint (g_date_get_month (d), ==, 3);
|
||||
g_assert_cmpint (g_date_get_day (d), ==, 1);
|
||||
g_assert_cmpint (g_date_get_year (d), ==, 1999);
|
||||
|
||||
g_date_set_parse (d, "10 Sep 1087");
|
||||
g_assert (g_date_valid (d));
|
||||
g_assert_cmpint (g_date_get_month (d), ==, 9);
|
||||
g_assert_cmpint (g_date_get_day (d), ==, 10);
|
||||
g_assert_cmpint (g_date_get_year (d), ==, 1087);
|
||||
|
||||
g_date_set_parse (d, "19990301");
|
||||
g_assert (g_date_valid (d));
|
||||
g_assert_cmpint (g_date_get_month (d), ==, 3);
|
||||
g_assert_cmpint (g_date_get_day (d), ==, 1);
|
||||
g_assert_cmpint (g_date_get_year (d), ==, 1999);
|
||||
|
||||
g_date_set_parse (d, "20011320");
|
||||
g_assert (!g_date_valid (d));
|
||||
|
||||
g_date_free (d);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user