chiark / gitweb /
Avoid play.py looping indefinitely.
[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);
3943e9ec
RK
51 /* Reject invalid formats */
52 check_fatal(dateparse("12"));
53 check_fatal(dateparse("12:34:56:23"));
54 /* Reject invalid values */
55 check_fatal(dateparse("25:34"));
56 check_fatal(dateparse("23:61"));
57 check_fatal(dateparse("23:23:62"));
d436bd52
RK
58}
59
60TEST(dateparse);
61
62/*
63Local Variables:
64c-basic-offset:2
65comment-column:40
66fill-column:79
67indent-tabs-mode:nil
68End:
69*/