diff options
author | louiz’ <louiz@louiz.org> | 2016-10-11 00:18:48 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-11 00:20:43 +0200 |
commit | 548e4ad473e7be22f971184312cc5ce9b8fe56b7 (patch) | |
tree | 3b7be9c89c931bb49ad9bc7e14d6e21a446e90f0 /tests | |
parent | 116472920ce4bcd4c9512db67108cdbf9895e8ad (diff) | |
download | biboumi-548e4ad473e7be22f971184312cc5ce9b8fe56b7.tar.gz biboumi-548e4ad473e7be22f971184312cc5ce9b8fe56b7.tar.bz2 biboumi-548e4ad473e7be22f971184312cc5ce9b8fe56b7.tar.xz biboumi-548e4ad473e7be22f971184312cc5ce9b8fe56b7.zip |
Parse the timezone myself, instead of using the broken strptime
See
https://lab.louiz.org/louiz/biboumi/issues/3215
https://github.com/andikleen/glibc/blob/master/time/strptime_l.c#L746-L747
for why strptime() sucks
We use std::get_time now, to parse the date and time. And we parse the
timezone by hand.
fix #3215
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/utils.cpp b/tests/utils.cpp index a18fc81..48951da 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -124,7 +124,19 @@ TEST_CASE("time_to_string") TEST_CASE("parse_datetime") { - CHECK(utils::parse_datetime("1970-01-01T00:00:00z") == 0); + CHECK(utils::parse_datetime("1970-01-01T00:00:00Z") == 0); + + const int twenty_three_hours = 82800; + CHECK(utils::parse_datetime("1970-01-01T23:00:12Z") == twenty_three_hours + 12); + CHECK(utils::parse_datetime("1970-01-01T23:00:12Z") == utils::parse_datetime("1970-01-01T23:00:12+00:00")); + CHECK(utils::parse_datetime("1970-01-01T23:00:12Z") == utils::parse_datetime("1970-01-01T23:00:12-00:00")); + CHECK(utils::parse_datetime("1970-01-02T00:00:12Z") == utils::parse_datetime("1970-01-01T23:00:12-01:00")); + CHECK(utils::parse_datetime("1970-01-02T00:00:12Z") == utils::parse_datetime("1970-01-02T01:00:12+01:00")); + CHECK(utils::parse_datetime("2016-08-29T14:29:29Z") == 1472480969); + CHECK(utils::parse_datetime("blah") == -1); -}
\ No newline at end of file + CHECK(utils::parse_datetime("1970-01-02T00:00:12B") == -1); + CHECK(utils::parse_datetime("1970-01-02T00:00:12*00:00") == -1); + CHECK(utils::parse_datetime("1970-01-02T00:00:12+0000") == -1); +} |