summaryrefslogtreecommitdiffstats
path: root/tests/xtime.c
blob: f853428a68501b9f62bbc753f5ea9a6b3001501e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD

#include "tests.h"
#include "../src/xtime.h"
#include "../src/bfstd.h"
#include "../src/config.h"
#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

static bool tm_equal(const struct tm *tma, const struct tm *tmb) {
	return tma->tm_year == tmb->tm_year
		&& tma->tm_mon == tmb->tm_mon
		&& tma->tm_mday == tmb->tm_mday
		&& tma->tm_hour == tmb->tm_hour
		&& tma->tm_min == tmb->tm_min
		&& tma->tm_sec == tmb->tm_sec
		&& tma->tm_wday == tmb->tm_wday
		&& tma->tm_yday == tmb->tm_yday
		&& tma->tm_isdst == tmb->tm_isdst;
}

/** Check one xgetdate() result. */
static bool check_one_xgetdate(const char *str, int error, time_t expected) {
	struct timespec ts;
	int ret = xgetdate(str, &ts);

	if (error) {
		return bfs_check(ret == -1 && errno == error, "xgetdate('%s'): %s", str, xstrerror(errno));
	} else {
		return bfs_check(ret == 0, "xgetdate('%s'): %s", str, xstrerror(errno))
			&& bfs_check(ts.tv_sec == expected && ts.tv_nsec == 0,
				"xgetdate('%s'): %jd.%09jd != %jd",
				str, (intmax_t)ts.tv_sec, (intmax_t)ts.tv_nsec, (intmax_t)expected);
	}
}

/** xgetdate() tests. */
static bool check_xgetdate(void) {
	bool ret = true;

	ret &= check_one_xgetdate("", EINVAL, 0);
	ret &= check_one_xgetdate("????", EINVAL, 0);
	ret &= check_one_xgetdate("1991", EINVAL, 0);
	ret &= check_one_xgetdate("1991-??", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-??", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14", 0, 692668800);
	ret &= check_one_xgetdate("1991-12-14-", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14T", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14T??", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14T10", 0, 692704800);
	ret &= check_one_xgetdate("1991-12-14T10:??", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14T10:11", 0, 692705460);
	ret &= check_one_xgetdate("1991-12-14T10:11:??", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14T10:11:12", 0, 692705472);
	ret &= check_one_xgetdate("1991-12-14T10Z", 0, 692704800);
	ret &= check_one_xgetdate("1991-12-14T10:11Z", 0, 692705460);
	ret &= check_one_xgetdate("1991-12-14T10:11:12Z", 0, 692705472);
	ret &= check_one_xgetdate("1991-12-14T10:11:12?", EINVAL, 0);
	ret &= check_one_xgetdate("1991-12-14T03-07", 0, 692704800);
	ret &= check_one_xgetdate("1991-12-14T06:41-03:30", 0, 692705460);
	ret &= check_one_xgetdate("1991-12-14T03:11:12-07:00", 0, 692705472);
	ret &= check_one_xgetdate("19911214 031112-0700", 0, 692705472);;

	return ret;
}

#define TM_FORMAT "%04d-%02d-%02d %02d:%02d:%02d (%d/7, %d/365%s)"

#define TM_PRINTF(tm) \
	(1900 + (tm).tm_year), (tm).tm_mon, (tm).tm_mday, \
	(tm).tm_hour, (tm).tm_min, (tm).tm_sec, \
	((tm).tm_wday + 1), ((tm).tm_yday + 1), \
	((tm).tm_isdst ? ((tm).tm_isdst < 0 ? ", DST?" : ", DST") : "")

/** Check one xmktime() result. */
static bool check_one_xmktime(time_t expected) {
	struct tm tm;
	if (xlocaltime(&expected, &tm) != 0) {
		bfs_diag("xlocaltime(%jd): %s", (intmax_t)expected, xstrerror(errno));
		return false;
	}

	time_t actual;
	return bfs_check(xmktime(&tm, &actual) == 0, "xmktime(" TM_FORMAT "): %s", TM_PRINTF(tm), xstrerror(errno))
		&& bfs_check(actual == expected, "xmktime(" TM_FORMAT "): %jd != %jd", TM_PRINTF(tm), (intmax_t)actual, (intmax_t)expected);
}

/** xmktime() tests. */
static bool check_xmktime(void) {
	bool ret = true;

	for (time_t time = -10; time <= 10; ++time) {
		ret &= check_one_xmktime(time);
	}

	return ret;
}

/** Check one xtimegm() result. */
static bool check_one_xtimegm(const struct tm *tm) {
	struct tm tma = *tm, tmb = *tm;
	time_t ta, tb;
	ta = mktime(&tma);
	if (xtimegm(&tmb, &tb) != 0) {
		tb = -1;
	}

	bool ret = true;
	ret &= bfs_check(ta == tb, "%jd != %jd", (intmax_t)ta, (intmax_t)tb);
	ret &= bfs_check(ta == -1 || tm_equal(&tma, &tmb));

	if (!ret) {
		bfs_diag("mktime():  " TM_FORMAT, TM_PRINTF(tma));
		bfs_diag("xtimegm(): " TM_FORMAT, TM_PRINTF(tmb));
		bfs_diag("(input):   " TM_FORMAT, TM_PRINTF(*tm));
	}

	return ret;
}

/** xtimegm() tests. */
static bool check_xtimegm(void) {
	bool ret = true;

	struct tm tm = {
		.tm_isdst = -1,
	};

	for (tm.tm_year =  10; tm.tm_year <= 200; tm.tm_year += 10)
	for (tm.tm_mon  =  -3; tm.tm_mon  <=  15; tm.tm_mon  +=  3)
	for (tm.tm_mday = -31; tm.tm_mday <=  61; tm.tm_mday +=  4)
	for (tm.tm_hour =  -1; tm.tm_hour <=  24; tm.tm_hour +=  5)
	for (tm.tm_min  =  -1; tm.tm_min  <=  60; tm.tm_min  += 31)
	for (tm.tm_sec  = -60; tm.tm_sec  <= 120; tm.tm_sec  +=  5) {
		ret &= check_one_xtimegm(&tm);
	}

	return ret;
}

bool check_xtime(void) {
	if (setenv("TZ", "UTC0", true) != 0) {
		perror("setenv()");
		return false;
	}
	tzset();

	bool ret = true;
	ret &= check_xgetdate();
	ret &= check_xmktime();
	ret &= check_xtimegm();
	return ret;
}