| /* |
| * Embedded Linux library |
| * Copyright (C) 2019 Intel Corporation |
| * |
| * SPDX-License-Identifier: LGPL-2.1-or-later |
| */ |
| |
| #ifdef HAVE_CONFIG_H |
| #include <config.h> |
| #endif |
| |
| #define _GNU_SOURCE |
| #include <assert.h> |
| #include <unistd.h> |
| #include <errno.h> |
| #include <fcntl.h> |
| #include <stdlib.h> |
| |
| #include <ell/ell.h> |
| |
| static void test_path_next(const void *data) |
| { |
| char *path; |
| const char *path_str; |
| |
| path_str = l_path_next("Foo:bar", &path); |
| assert(path_str); |
| assert(!strcmp(path, "Foo")); |
| l_free(path); |
| |
| path_str = l_path_next(path_str, &path); |
| assert(path_str); |
| assert(*path_str == '\0'); |
| assert(!strcmp(path, "bar")); |
| l_free(path); |
| |
| path_str = l_path_next("\"foo\\:::bar\\", &path); |
| assert(path_str); |
| assert(!strcmp(path, "\"foo:")); |
| l_free(path); |
| |
| path_str = l_path_next(path_str, &path); |
| assert(path_str); |
| assert(!strcmp(path, "")); |
| l_free(path); |
| |
| path_str = l_path_next(path_str, &path); |
| assert(path_str); |
| assert(!strcmp(path, "bar")); |
| l_free(path); |
| } |
| |
| static void test_path_find(const void *data) |
| { |
| static const char *cant_find = "/foo:/bar:/dir:fr"; |
| static const char *can_find = "/tmp"; |
| char *tmp_path = l_strdup("/tmp/foobarXXXXXX.tmp"); |
| char *base; |
| char *path; |
| int fd; |
| |
| fd = L_TFR(mkostemps(tmp_path, 4, O_CLOEXEC)); |
| assert(fd > 0); |
| L_TFR(close(fd)); |
| base = basename(tmp_path); |
| |
| assert(l_path_find(base, cant_find, F_OK) == NULL); |
| |
| path = l_path_find(base, can_find, F_OK); |
| assert(path); |
| assert(!strcmp(path, tmp_path)); |
| l_free(path); |
| l_free(tmp_path); |
| } |
| |
| int main(int argc, char *argv[]) |
| { |
| l_test_init(&argc, &argv); |
| |
| l_test_add("path/next", test_path_next, NULL); |
| l_test_add("path/find", test_path_find, NULL); |
| |
| return l_test_run(); |
| } |