From a4e5df7b4757ce0254048de6fba92e71078ef42b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 13 Feb 2020 14:24:52 +0100 Subject: [PATCH] Bug 24643: Add test to cover the timezone Signed-off-by: Jonathan Druart --- t/DateUtils.t | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/t/DateUtils.t b/t/DateUtils.t index df49fcd506..8a606d6cc6 100755 --- a/t/DateUtils.t +++ b/t/DateUtils.t @@ -4,7 +4,7 @@ use DateTime::TimeZone; use C4::Context; -use Test::More tests => 71; +use Test::More tests => 72; use Test::MockModule; use Test::Warn; @@ -131,8 +131,11 @@ cmp_ok( $dt0->epoch(), 'eq', '1325462340', 'dt_from_string handles seconds with $dt0 = dt_from_string( '2012-01-01T23:59:00.00Z', 'rfc3339' ); cmp_ok( $dt0->epoch(), 'eq', '1325462340', 'dt_from_string handles seconds with 2 decimal places' ); -$dt0 = dt_from_string( '2012-01-01T23:59:00.000Z', 'rfc3339' ); -cmp_ok( $dt0->epoch(), 'eq', '1325462340', 'dt_from_string handles seconds with 3 decimal places' ); +$dt0 = dt_from_string( '2012-01-01t23:59:59.999z', 'rfc3339' ); +cmp_ok( $dt0->epoch(), 'eq', '1325462399', 'dt_from_string handles seconds with 3 decimal places' ); + +$dt0 = dt_from_string( '2012-01-01T23:59:59.999Z+02:00', 'rfc3339' ); +cmp_ok( $dt0->epoch(), 'eq', '1325462399', 'dt_from_string handles seconds with 3 decimal places and a timezone' ); # Return undef if passed mysql 0 dates $dt0 = dt_from_string( '0000-00-00', 'iso' ); -- 2.11.0