36d7c44fa1d68e69b6c752225fd731948da0d891
[com/asn1c.git] / tests / tests-skeletons / check-UTCTime.c
1 #include <stdio.h>
2 #include <assert.h>
3 #include <time.h>
4
5 #include <GeneralizedTime.c>
6 #include <UTCTime.h>
7
8 static void
9 check(char *time_str, time_t sample, int as_gmt) {
10         UTCTime_t gt;
11         struct tm tm;
12         time_t tloc;
13
14         gt.buf = (uint8_t *)time_str;
15         gt.size = strlen(time_str);
16
17         tloc = asn_UT2time(&gt, &tm, as_gmt);
18         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,
27                 GMTOFF(tm)
28         );
29         assert(tloc == sample);
30
31         assert(tloc == -1 || as_gmt == 0 || GMTOFF(tm) == 0);
32
33         if(as_gmt) check(time_str, sample, as_gmt);
34 }
35
36 static void
37 compare(int lineno, int cmp_control, const char *astr, const char *bstr) {
38     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}};
40     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
51 int
52 main(int ac, char **av) {
53
54         (void)av;
55
56         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);
63
64         check("040125093007Z", 1075023007, 0);
65         check("040125093007+00", 1075023007, 0);
66         check("040125093007-0800", 1075051807, 0);
67
68         if(ac > 1) {
69                 /* These will be valid only inside PST time zone */
70                 check("040125093007", 1075051807, 0);
71                 check("040125093000,01", 1075051800, 0);
72                 check("040125093000,1234", 1075051800, 0);
73         }
74
75     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
85         return 0;
86 }
87