blob: 36d7c44fa1d68e69b6c752225fd731948da0d891 [file] [log] [blame]
Lev Walkin4eceeba2007-07-23 06:48:26 +00001#include <stdio.h>
2#include <assert.h>
3#include <time.h>
4
Lev Walkin44212662004-08-19 13:26:54 +00005#include <GeneralizedTime.c>
Lev Walkin4eceeba2007-07-23 06:48:26 +00006#include <UTCTime.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00007
8static void
Lev Walkin0aca3852004-08-07 03:51:43 +00009check(char *time_str, time_t sample, int as_gmt) {
Lev Walkinf15320b2004-06-03 03:38:44 +000010 UTCTime_t gt;
11 struct tm tm;
12 time_t tloc;
13
Lev Walkin535612a2005-07-03 05:32:40 +000014 gt.buf = (uint8_t *)time_str;
Lev Walkinf15320b2004-06-03 03:38:44 +000015 gt.size = strlen(time_str);
16
Lev Walkin0aca3852004-08-07 03:51:43 +000017 tloc = asn_UT2time(&gt, &tm, as_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +000018 printf("[%s] -> %ld == %ld\n", time_str, (long)tloc, (long)sample);
19 if(tloc != -1)
20 printf("\t%d-%d-%dT%02d:%02d:%02d %ld\n",
21 tm.tm_year + 1900,
22 tm.tm_mon + 1,
23 tm.tm_mday,
24 tm.tm_hour,
25 tm.tm_min,
26 tm.tm_sec,
Lev Walkina460ba32004-10-20 15:40:04 +000027 GMTOFF(tm)
Lev Walkinf15320b2004-06-03 03:38:44 +000028 );
29 assert(tloc == sample);
Lev Walkin0aca3852004-08-07 03:51:43 +000030
Lev Walkina460ba32004-10-20 15:40:04 +000031 assert(tloc == -1 || as_gmt == 0 || GMTOFF(tm) == 0);
Lev Walkin0aca3852004-08-07 03:51:43 +000032
33 if(as_gmt) check(time_str, sample, as_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +000034}
35
Lev Walkindd01a5e2017-10-14 01:45:26 -070036static void
37compare(int lineno, int cmp_control, const char *astr, const char *bstr) {
Vasil Velichkovd346ffd2017-10-19 05:29:25 +030038 UTCTime_t a = {(uint8_t *)strdup(astr), strlen(astr), {0, 0, 0, 0, 0}};
39 UTCTime_t b = {(uint8_t *)strdup(bstr), strlen(bstr), {0, 0, 0, 0, 0}};
Lev Walkindd01a5e2017-10-14 01:45:26 -070040 int cmp_result =
41 asn_DEF_UTCTime.op->compare_struct(&asn_DEF_UTCTime, &a, &b);
42 if(cmp_result != cmp_control) {
43 fprintf(stderr, "%03d: [%s] == [%s] = %d, expected %d\n", lineno, astr,
44 bstr, cmp_result, cmp_control);
45 assert(cmp_result == cmp_control);
46 }
47 ASN_STRUCT_RESET(asn_DEF_UTCTime, &a);
48 ASN_STRUCT_RESET(asn_DEF_UTCTime, &b);
49}
50
Lev Walkinf15320b2004-06-03 03:38:44 +000051int
52main(int ac, char **av) {
53
Lev Walkin44212662004-08-19 13:26:54 +000054 (void)av;
55
Lev Walkin0aca3852004-08-07 03:51:43 +000056 check("0401250", -1, 0);
57 check("0401250930", -1, 0); /* "Z" or "(+|-)hhmm" required */
58 check("04012509300", -1, 0);
59 check("040125093000-", -1, 0);
60 check("040125093007-0", -1, 0);
61 check("040125093007-080", -1, 0);
62 check("0401250930.01Z", -1, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000063
Lev Walkin0aca3852004-08-07 03:51:43 +000064 check("040125093007Z", 1075023007, 0);
65 check("040125093007+00", 1075023007, 0);
66 check("040125093007-0800", 1075051807, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000067
68 if(ac > 1) {
69 /* These will be valid only inside PST time zone */
Lev Walkin0aca3852004-08-07 03:51:43 +000070 check("040125093007", 1075051807, 0);
71 check("040125093000,01", 1075051800, 0);
72 check("040125093000,1234", 1075051800, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000073 }
74
Lev Walkindd01a5e2017-10-14 01:45:26 -070075 compare(__LINE__, 0, "040125093007", "040125093007");
76 compare(__LINE__, 0, "040125093007-0000", "040125093007Z");
77 compare(__LINE__, 1, "040125093008", "040125093007");
78 compare(__LINE__, 1, "040125093008-0000", "040125093007-0000");
79 compare(__LINE__, 0, "040125093008-0000", "040125093008-0000");
80 compare(__LINE__, 1, "040125093008-0000", "040125093007Z");
81 compare(__LINE__, 0, "040125093007-0000", "040125093007+0000");
82 compare(__LINE__, 1, "040125093007-0030", "040125093007Z");
83 compare(__LINE__, -1, "040125093007+0030", "040125093007Z");
84
Lev Walkinf15320b2004-06-03 03:38:44 +000085 return 0;
86}
Lev Walkin0aca3852004-08-07 03:51:43 +000087