test/utils.c

Wed, 07 Jan 2026 22:31:05 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 07 Jan 2026 22:31:05 +0100
branch
dav-2
changeset 896
2c765c286536
parent 895
87638f19f6dd
child 897
d684ba9e2da0
permissions
-rw-r--r--

add test for util_path_isrelated

792
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
4 * Copyright 2023 Olaf Wintermann. All rights reserved.
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28
895
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
29 #include <cx/test.h>
889
42cdbf9bbd49 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 879
diff changeset
30
792
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
31 #include <libidav/utils.h>
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
32
895
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
33 CX_TEST(test_util_parse_creationdate) {
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
34 CX_TEST_DO {
889
42cdbf9bbd49 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 879
diff changeset
35
895
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
36 time_t t1 = util_parse_creationdate("2012-11-29T21:35:36Z");
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
37 time_t t2 = util_parse_creationdate("2023-09-17T13:03:00+02:00");
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
38
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
39 struct tm *tm = gmtime(&t1);
896
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
40 CX_TEST_ASSERTM(tm->tm_year == 112, "t1: wrong year");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
41 CX_TEST_ASSERTM(tm->tm_mon == 10, "t1: wrong month");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
42 CX_TEST_ASSERTM(tm->tm_mday == 29, "t1: wrong day");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
43 CX_TEST_ASSERTM(tm->tm_hour == 21, "t1: wrong hour");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
44 CX_TEST_ASSERTM(tm->tm_min == 35, "t1: wrong minute");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
45 CX_TEST_ASSERTM(tm->tm_sec == 36, "t1: wrong second");
895
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
46
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
47 tm = gmtime(&t2);
896
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
48 CX_TEST_ASSERTM(tm->tm_year == 123, "t2: wrong year");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
49 CX_TEST_ASSERTM(tm->tm_mon == 8, "t2: wrong month");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
50 CX_TEST_ASSERTM(tm->tm_mday == 17, "t2: wrong day");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
51 CX_TEST_ASSERTM(tm->tm_hour == 11, "t2: wrong hour");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
52 CX_TEST_ASSERTM(tm->tm_min == 03, "t2: wrong minute");
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
53 CX_TEST_ASSERTM(tm->tm_sec == 0, "t2: wrong second");
895
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
54
87638f19f6dd port tests to UCX4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 889
diff changeset
55 }
792
4e4e5bbad164 add tests for util_parse_creationdate
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
56 }
896
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
57
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
58 CX_TEST(test_util_path_isrelated) {
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
59 CX_TEST_DO {
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
60 CX_TEST_ASSERT(util_path_isrelated("/", "/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
61 CX_TEST_ASSERT(util_path_isrelated("/", "/test"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
62 CX_TEST_ASSERT(util_path_isrelated("/", "/test/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
63 CX_TEST_ASSERT(util_path_isrelated("/", "/test/sub"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
64 CX_TEST_ASSERT(util_path_isrelated("/", "/test/sub/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
65 CX_TEST_ASSERT(util_path_isrelated("/dir1/", "/dir1"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
66 CX_TEST_ASSERT(util_path_isrelated("/dir1/", "/dir1/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
67 CX_TEST_ASSERT(util_path_isrelated("/abc/test/123/", "/abc/test/123"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
68 CX_TEST_ASSERT(util_path_isrelated("/abc/test/123/", "/abc/test/123/test/sub/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
69
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
70 CX_TEST_ASSERT(!util_path_isrelated("/dir1/", "/dir2/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
71 CX_TEST_ASSERT(!util_path_isrelated("/dir1/", "/dir2"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
72 CX_TEST_ASSERT(!util_path_isrelated("/dir1", "/dir2/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
73 CX_TEST_ASSERT(!util_path_isrelated("/abc/123/test1", "/abc/123/xxx"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
74 CX_TEST_ASSERT(!util_path_isrelated("/abc/123/test1", "/abc/zzz/123/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
75 CX_TEST_ASSERT(!util_path_isrelated("/dir1/", "/"));
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
76 }
2c765c286536 add test for util_path_isrelated
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 895
diff changeset
77 }

mercurial