]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-date.c
time-util: teach parse_timestamp to parse weekdays
[thirdparty/systemd.git] / src / test / test-date.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2012 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <string.h>
23
24 #include "util.h"
25
26 static void test_one(const char *p) {
27 usec_t t, q;
28 char buf[FORMAT_TIMESTAMP_MAX], buf_relative[FORMAT_TIMESTAMP_RELATIVE_MAX];
29
30 assert_se(parse_timestamp(p, &t) >= 0);
31 log_info("%s", format_timestamp(buf, sizeof(buf), t));
32
33 /* Chop off timezone */
34 *strrchr(buf, ' ') = 0;
35
36 assert_se(parse_timestamp(buf, &q) >= 0);
37 assert_se(q == t);
38
39 log_info("%s", strna(format_timestamp_relative(buf_relative, sizeof(buf_relative), t)));
40 assert_se(parse_timestamp(buf, &q) >= 0);
41 }
42
43 int main(int argc, char *argv[]) {
44 test_one("17:41");
45 test_one("18:42:44");
46 test_one("12-10-02 12:13:14");
47 test_one("12-10-2 12:13:14");
48 test_one("12-10-03 12:13");
49 test_one("2012-12-30 18:42");
50 test_one("2012-10-02");
51 test_one("Tue 2012-10-02");
52 test_one("now");
53 test_one("yesterday");
54 test_one("today");
55 test_one("tomorrow");
56 test_one("+2d");
57 test_one("+2y 4d");
58 test_one("5months ago");
59
60 return 0;
61 }