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
|
/*
* SPDX-License-Identifier: ISC
*
* Copyright (c) 2017 Todd C. Miller <Todd.Miller@sudo.ws>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define SUDO_ERROR_WRAP 0
#include "sudo_compat.h"
#include "sudo_util.h"
#include "sudoers_debug.h"
#include "parse.h"
sudo_dso_public int main(int argc, char *argv[]);
const struct gentime_test {
char *gentime;
time_t unixtime;
} tests[] = {
{ "199412161032ZZ", -1 },
{ "199412161032Z", 787573920 },
{ "199412160532-0500", 787573920 },
{ "199412160532-05000", -1 },
{ "199412160532", 787573920 }, /* local time is EST */
{ "20170214083000-0500", 1487079000 },
{ "201702140830-0500", 1487079000 },
{ "201702140830", 1487079000 }, /* local time is EST */
{ "201702140830.3-0500", 1487079018 },
{ "201702140830,3-0500", 1487079018 },
{ "20170214083000.5Z", 1487061000 },
{ "20170214083000,5Z", 1487061000 },
{ "201702142359.4Z", 1487116764 },
{ "201702142359,4Z", 1487116764 },
{ "2017021408.5Z", 1487061000 },
{ "2017021408,5Z", 1487061000 },
{ "20170214Z", -1 },
};
int
main(int argc, char *argv[])
{
const int ntests = nitems(tests);
int i, errors = 0;
time_t result;
initprogname(argc > 0 ? argv[0] : "check_gentime");
/* Do local time tests in Eastern Standard Time. */
putenv("TZ=EST5EST5");
tzset();
for (i = 0; i < ntests; i++) {
result = parse_gentime(tests[i].gentime);
if (result != tests[i].unixtime) {
fprintf(stderr, "check_gentime[%d]: %s: expected %lld, got %lld\n",
i, tests[i].gentime,
(long long)tests[i].unixtime, (long long)result);
errors++;
}
}
printf("check_gentime: %d tests run, %d errors, %d%% success rate\n",
ntests, errors, (ntests - errors) * 100 / ntests);
exit(errors);
}
|