aboutsummaryrefslogtreecommitdiff
path: root/tests/date.test
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-11-10 18:21:51 -0800
committerRob Landley <rob@landley.net>2015-11-12 21:26:56 -0600
commitd885b528f2d26435ecff83da9e50e815ac73605b (patch)
tree848304ecf9db6e945195fea21c4c97df84fcf20c /tests/date.test
parent26ec1c05b0eef896b59fe3c870f6885fa7edf4ae (diff)
downloadtoybox-d885b528f2d26435ecff83da9e50e815ac73605b.tar.gz
Fix year parsing in date(1).
Four-digit years were being mangled by the code for two-digit years. Move all the two-digit year code into the "we only saw two digits" case. Add some new tests and fix existing tests.
Diffstat (limited to 'tests/date.test')
-rw-r--r--tests/date.test8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/date.test b/tests/date.test
index 94a41579..62c0ed63 100644
--- a/tests/date.test
+++ b/tests/date.test
@@ -14,9 +14,13 @@ testing "date -d 06021234" "TZ=UTC date -d 06021234 2>&1" "Sun Jun 2 12:34:00 U
testing "date -d 060212341982" "TZ=UTC date -d 060212341982 2>&1" "Sun Jun 2 12:34:00 UTC 1982\n" "" ""
testing "date -d 123" "TZ=UTC date -d 123 2>&1" "date: bad date '123'\n" "" ""
+# Test parsing 2- and 4-digit years.
+testing "date -d 1110143115.30" "TZ=UTC date -d 1110143115.30 2>&1" "Sun Nov 10 14:31:30 UTC 1915\n" "" ""
+testing "date -d 111014312015.30" "TZ=UTC date -d 111014312015.30 2>&1" "Sun Nov 10 14:31:30 UTC 2015\n" "" ""
+
# Accidentally given a Unix time, we should trivially reject that.
testing "date Unix time missing @" "TZ=UTC date 1438053157 2>&1" \
- "date: bad date '1438053157'; Tue February 38 05:31:00 UTC 2057 != Sun Mar 10 05:31:00 UTC 2058\n" "" ""
+ "date: bad date '1438053157'; Wed February 38 05:31:00 UTC 2057 != Sun Mar 10 05:31:00 UTC 2058\n" "" ""
# But some invalid dates are more subtle, like Febuary 29th in a non-leap year.
testing "date Feb 29th" "TZ=UTC date 022900001975 2>&1" \
- "date: bad date '022900001975'; Tue Feb 29 00:00:00 UTC 2075 != Fri Mar 1 00:00:00 UTC 2075\n" "" ""
+ "date: bad date '022900001975'; Wed Feb 29 00:00:00 UTC 1975 != Sat Mar 1 00:00:00 UTC 1975\n" "" ""