chiark / gitweb /
Tidy up
[disorder] / libtests / t-dateparse.c
CommitLineData
d436bd52
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2008 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20#include "test.h"
21#include <time.h>
22#include "dateparse.h"
23
24static void check_date(time_t when,
835a5b33 25 const char *fmt,
d436bd52
RK
26 struct tm *(*convert)(const time_t *)) {
27 char buffer[128];
28 time_t parsed;
29
835a5b33 30 strftime(buffer, sizeof buffer, fmt, convert(&when));
d436bd52
RK
31 parsed = dateparse(buffer);
32 check_integer(parsed, when);
33 if(parsed != when)
835a5b33 34 fprintf(stderr, "format=%s formatted=%s\n", fmt, buffer);
d436bd52
RK
35}
36
37static void test_dateparse(void) {
38 time_t now = time(0);
39 check_date(now, "%Y-%m-%d %H:%M:%S", localtime);
40#if 0 /* see dateparse.c */
41 check_date(now, "%Y-%m-%d %H:%M:%S %Z", localtime);
42 check_date(now, "%Y-%m-%d %H:%M:%S %Z", gmtime);
43#endif
44 check_date(now, "%c", localtime);
45 check_date(now, "%Ec", localtime);
46 check_date(now, "%X", localtime);
47 check_date(now, "%EX", localtime);
48 check_date(now, "%H:%M:%S", localtime);
49 /* This one needs a bodge: */
50 check_date(now - now % 60, "%H:%M", localtime);
cca956b1
RK
51#if __FreeBSD__
52 fprintf(stderr, "strptime() is broken on FreeBSD - skipping further tests\n");
53 ++skipped;
54#else
3943e9ec
RK
55 /* Reject invalid formats */
56 check_fatal(dateparse("12"));
57 check_fatal(dateparse("12:34:56:23"));
58 /* Reject invalid values */
59 check_fatal(dateparse("25:34"));
60 check_fatal(dateparse("23:61"));
61 check_fatal(dateparse("23:23:62"));
cca956b1 62#endif
d436bd52
RK
63}
64
65TEST(dateparse);
66
67/*
68Local Variables:
69c-basic-offset:2
70comment-column:40
71fill-column:79
72indent-tabs-mode:nil
73End:
74*/