123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- /* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "testutil.h"
- #include "fspr_file_io.h"
- #include "fspr_file_info.h"
- #include "fspr_errno.h"
- #include "fspr_general.h"
- #include "fspr_pools.h"
- #include "fspr_lib.h"
- #if WIN32
- #define ABS_ROOT "C:/"
- #elif defined(NETWARE)
- #define ABS_ROOT "SYS:/"
- #else
- #define ABS_ROOT "/"
- #endif
- static void merge_aboveroot(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- char errmsg[256];
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo", ABS_ROOT"bar", APR_FILEPATH_NOTABOVEROOT,
- p);
- fspr_strerror(rv, errmsg, sizeof(errmsg));
- ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_EABOVEROOT(rv));
- ABTS_PTR_EQUAL(tc, NULL, dstpath);
- ABTS_STR_EQUAL(tc, "The given path was above the root path", errmsg);
- }
- static void merge_belowroot(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo", ABS_ROOT"foo/bar",
- APR_FILEPATH_NOTABOVEROOT, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, ABS_ROOT"foo/bar", dstpath);
- }
- static void merge_noflag(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo", ABS_ROOT"foo/bar", 0, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, ABS_ROOT"foo/bar", dstpath);
- }
- static void merge_dotdot(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../baz", 0, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, ABS_ROOT"foo/baz", dstpath);
- rv = fspr_filepath_merge(&dstpath, "", "../test", 0, p);
- ABTS_INT_EQUAL(tc, 0, APR_SUCCESS);
- ABTS_STR_EQUAL(tc, "../test", dstpath);
- /* Very dangerous assumptions here about what the cwd is. However, let's assume
- * that the testall is invoked from within apr/test/ so the following test should
- * return ../test unless a previously fixed bug remains or the developer changes
- * the case of the test directory:
- */
- rv = fspr_filepath_merge(&dstpath, "", "../test", APR_FILEPATH_TRUENAME, p);
- ABTS_INT_EQUAL(tc, 0, APR_SUCCESS);
- ABTS_STR_EQUAL(tc, "../test", dstpath);
- }
- static void merge_dotdot_dotdot_dotdot(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, "",
- "../../..", APR_FILEPATH_TRUENAME, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, "../../..", dstpath);
- rv = fspr_filepath_merge(&dstpath, "",
- "../../../", APR_FILEPATH_TRUENAME, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, "../../../", dstpath);
- }
- static void merge_secure(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../bar/baz", 0, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, ABS_ROOT"foo/bar/baz", dstpath);
- }
- static void merge_notrel(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../baz",
- APR_FILEPATH_NOTRELATIVE, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, ABS_ROOT"foo/baz", dstpath);
- }
- static void merge_notrelfail(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- char errmsg[256];
- rv = fspr_filepath_merge(&dstpath, "foo/bar", "../baz",
- APR_FILEPATH_NOTRELATIVE, p);
- fspr_strerror(rv, errmsg, sizeof(errmsg));
- ABTS_PTR_EQUAL(tc, NULL, dstpath);
- ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_ERELATIVE(rv));
- ABTS_STR_EQUAL(tc, "The given path is relative", errmsg);
- }
- static void merge_notabsfail(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- char errmsg[256];
- rv = fspr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../baz",
- APR_FILEPATH_NOTABSOLUTE, p);
- fspr_strerror(rv, errmsg, sizeof(errmsg));
- ABTS_PTR_EQUAL(tc, NULL, dstpath);
- ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_EABSOLUTE(rv));
- ABTS_STR_EQUAL(tc, "The given path is absolute", errmsg);
- }
- static void merge_notabs(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- char *dstpath = NULL;
- rv = fspr_filepath_merge(&dstpath, "foo/bar", "../baz",
- APR_FILEPATH_NOTABSOLUTE, p);
- ABTS_PTR_NOTNULL(tc, dstpath);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, "foo/baz", dstpath);
- }
- static void root_absolute(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- const char *root = NULL;
- const char *path = ABS_ROOT"foo/bar";
- rv = fspr_filepath_root(&root, &path, 0, p);
- ABTS_PTR_NOTNULL(tc, root);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, ABS_ROOT, root);
- }
- static void root_relative(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- const char *root = NULL;
- const char *path = "foo/bar";
- char errmsg[256];
- rv = fspr_filepath_root(&root, &path, 0, p);
- fspr_strerror(rv, errmsg, sizeof(errmsg));
- ABTS_PTR_EQUAL(tc, NULL, root);
- ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_ERELATIVE(rv));
- ABTS_STR_EQUAL(tc, "The given path is relative", errmsg);
- }
- static void root_from_slash(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- const char *root = NULL;
- const char *path = "//";
- rv = fspr_filepath_root(&root, &path, APR_FILEPATH_TRUENAME, p);
- #if defined(WIN32) || defined(OS2)
- ABTS_INT_EQUAL(tc, APR_EINCOMPLETE, rv);
- ABTS_STR_EQUAL(tc, "//", root);
- #else
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, "/", root);
- #endif
- ABTS_STR_EQUAL(tc, "", path);
- }
- static void root_from_cwd_and_back(abts_case *tc, void *data)
- {
- fspr_status_t rv;
- const char *root = NULL;
- const char *path = "//";
- char *origpath;
- char *testpath;
- ABTS_INT_EQUAL(tc, APR_SUCCESS, fspr_filepath_get(&origpath, 0, p));
- path = origpath;
- rv = fspr_filepath_root(&root, &path, APR_FILEPATH_TRUENAME, p);
- #if defined(WIN32) || defined(OS2)
- ABTS_INT_EQUAL(tc, origpath[0], root[0]);
- ABTS_INT_EQUAL(tc, ':', root[1]);
- ABTS_INT_EQUAL(tc, '/', root[2]);
- ABTS_INT_EQUAL(tc, 0, root[3]);
- ABTS_STR_EQUAL(tc, origpath + 3, path);
- #elif defined(NETWARE)
- ABTS_INT_EQUAL(tc, origpath[0], root[0]);
- {
- char *pt = strchr(root, ':');
- ABTS_PTR_NOTNULL(tc, pt);
- ABTS_INT_EQUAL(tc, ':', pt[0]);
- ABTS_INT_EQUAL(tc, '/', pt[1]);
- ABTS_INT_EQUAL(tc, 0, pt[2]);
- pt = strchr(origpath, ':');
- ABTS_PTR_NOTNULL(tc, pt);
- ABTS_STR_EQUAL(tc, (pt+2), path);
- }
- #else
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, "/", root);
- ABTS_STR_EQUAL(tc, origpath + 1, path);
- #endif
- rv = fspr_filepath_merge(&testpath, root, path,
- APR_FILEPATH_TRUENAME
- | APR_FILEPATH_NOTABOVEROOT
- | APR_FILEPATH_NOTRELATIVE, p);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, origpath, testpath);
- }
- abts_suite *testnames(abts_suite *suite)
- {
- suite = ADD_SUITE(suite)
- abts_run_test(suite, merge_aboveroot, NULL);
- abts_run_test(suite, merge_belowroot, NULL);
- abts_run_test(suite, merge_noflag, NULL);
- abts_run_test(suite, merge_dotdot, NULL);
- abts_run_test(suite, merge_secure, NULL);
- abts_run_test(suite, merge_notrel, NULL);
- abts_run_test(suite, merge_notrelfail, NULL);
- abts_run_test(suite, merge_notabs, NULL);
- abts_run_test(suite, merge_notabsfail, NULL);
- abts_run_test(suite, merge_dotdot_dotdot_dotdot, NULL);
- abts_run_test(suite, root_absolute, NULL);
- abts_run_test(suite, root_relative, NULL);
- abts_run_test(suite, root_from_slash, NULL);
- abts_run_test(suite, root_from_cwd_and_back, NULL);
- return suite;
- }
|