1 /*        $NetBSD: parse_time-test.c,v 1.2 2017/01/28 21:31:50 christos Exp $   */
2 
3 /*
4  * Copyright (c) 2004 Kungliga Tekniska Högskolan
5  * (Royal Institute of Technology, Stockholm, Sweden).
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * 3. Neither the name of the Institute nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include <config.h>
37 
38 #include <krb5/roken.h>
39 #include <krb5/parse_time.h>
40 #include "test-mem.h"
41 #include "err.h"
42 
43 static struct testcase {
44     size_t size;
45     int    val;
46     char  *str;
47 } tests[] = {
48     { 8, 1,                   "1 second" },
49     { 17, 61,                 "1 minute 1 second" },
50     { 18, 62,                 "1 minute 2 seconds" },
51     { 8, 60,                  "1 minute" },
52     { 6, 3600,                "1 hour" },
53     { 15, 3601,               "1 hour 1 second" },
54     { 16, 3602,               "1 hour 2 seconds" },
55     { 9, 300,                 "5 minutes" },
56 };
57 
58 int
main(int argc,char ** argv)59 main(int argc, char **argv)
60 {
61     size_t sz;
62     size_t buf_sz;
63     int i, j;
64 
65     for (i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) {
66           char *buf;
67 
68           sz = unparse_time(tests[i].val, NULL, 0);
69           if  (sz != tests[i].size)
70               errx(1, "sz (%lu) != tests[%d].size (%lu)",
71                      (unsigned long)sz, i, (unsigned long)tests[i].size);
72 
73           for (buf_sz = 0; buf_sz < tests[i].size + 2; buf_sz++) {
74 
75               buf = rk_test_mem_alloc(RK_TM_OVERRUN, "overrun",
76                                             NULL, buf_sz);
77               sz = unparse_time(tests[i].val, buf, buf_sz);
78               if (sz != tests[i].size)
79                     errx(1, "sz (%lu) != tests[%d].size (%lu) with in size %lu",
80                          (unsigned long)sz, i,
81                          (unsigned long)tests[i].size,
82                          (unsigned long)buf_sz);
83               if (buf_sz > 0 && memcmp(buf, tests[i].str, buf_sz - 1) != 0)
84                     errx(1, "test %i wrong result %s vs %s", i, buf, tests[i].str);
85               if (buf_sz > 0 && buf[buf_sz - 1] != '\0')
86                     errx(1, "test %i not zero terminated", i);
87               rk_test_mem_free("overrun");
88 
89               buf = rk_test_mem_alloc(RK_TM_UNDERRUN, "underrun",
90                                             NULL, tests[i].size);
91               sz = unparse_time(tests[i].val, buf, min(buf_sz, tests[i].size));
92               if (sz != tests[i].size)
93                     errx(1, "sz (%lu) != tests[%d].size (%lu) with insize %lu",
94                          (unsigned long)sz, i,
95                          (unsigned long)tests[i].size,
96                          (unsigned long)buf_sz);
97               if (buf_sz > 0 && strncmp(buf, tests[i].str, min(buf_sz, tests[i].size) - 1) != 0)
98                     errx(1, "test %i wrong result %s vs %s", i, buf, tests[i].str);
99               if (buf_sz > 0 && buf[min(buf_sz, tests[i].size) - 1] != '\0')
100                     errx(1, "test %i not zero terminated", i);
101               rk_test_mem_free("underrun");
102           }
103 
104           buf = rk_test_mem_alloc(RK_TM_OVERRUN, "overrun",
105                                         tests[i].str, tests[i].size + 1);
106           j = parse_time(buf, "s");
107           if (j != tests[i].val)
108               errx(1, "parse_time failed for test %d", i);
109           rk_test_mem_free("overrun");
110 
111           buf = rk_test_mem_alloc(RK_TM_UNDERRUN, "underrun",
112                                         tests[i].str, tests[i].size + 1);
113           j = parse_time(buf, "s");
114           if (j != tests[i].val)
115               errx(1, "parse_time failed for test %d", i);
116           rk_test_mem_free("underrun");
117 
118     }
119     return 0;
120 }
121