Bugzilla – Attachment 116299 Details for
Bug 24850
Koha::DateUtils ignores offsets in RFC3339 datetimes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24850: Correct tests for offset handling in RFC3339 dates
Bug-24850-Correct-tests-for-offset-handling-in-RFC.patch (text/plain), 1.43 KB, created by
David Cook
on 2021-02-04 03:51:21 UTC
(
hide
)
Description:
Bug 24850: Correct tests for offset handling in RFC3339 dates
Filename:
MIME Type:
Creator:
David Cook
Created:
2021-02-04 03:51:21 UTC
Size:
1.43 KB
patch
obsolete
>From 8f02d84eb2ec9f5ead8a6c76b61484112ee7fcb4 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 11 Mar 2020 15:57:07 +0000 >Subject: [PATCH] Bug 24850: Correct tests for offset handling in RFC3339 dates > >The tests were incorrectly passing for RFC3339 dates passed with an >offset. This patch corrects the test. > >Test plan: >1/ Read the change >2/ Agree the change adheres to the RFC >3/ Run the test and varify it now fails >3/ Signoff > >Signed-off-by: David Cook <dcook@prosentient.com.au> >--- > t/DateUtils.t | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/t/DateUtils.t b/t/DateUtils.t >index 5b00c77124..72c57ea6e6 100755 >--- a/t/DateUtils.t >+++ b/t/DateUtils.t >@@ -134,8 +134,8 @@ cmp_ok( $dt0->epoch(), 'eq', '1325462340', 'dt_from_string handles seconds with > $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' ); >+$dt0 = dt_from_string( '2012-01-01T23:59:59.999+02:00', 'rfc3339' ); >+cmp_ok( $dt0->epoch(), 'eq', '1325455199', '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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24850
:
100585
|
100586
|
100587
|
100592
|
100593
|
100594
|
100595
|
100678
|
100679
|
100680
|
100681
|
100881
|
100901
|
100902
|
100903
|
100904
|
100905
|
101803
|
101804
|
101805
|
101806
|
101807
|
101808
|
101837
|
101838
|
101839
|
101840
|
101841
|
101842
|
101843
|
101844
|
115851
|
115852
|
115853
|
115854
|
115855
|
115856
|
115857
|
116299
|
116300
|
116301
|
116302
|
116303
|
116304
|
116305
|
116355
|
116356
|
116357
|
116358
|
116359
|
116360
|
116361
|
116511
|
126182
|
126183
|
126184
|
126185
|
126186
|
126187
|
126188
|
126189
|
127231
|
127232
|
127235
|
127236
|
127239
|
127240
|
127241
|
127242
|
127243
|
127244