123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* 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_info.h"
- #include "fspr_errno.h"
- #include "fspr_pools.h"
- #include "fspr_tables.h"
- #if defined(WIN32) || defined(NETWARE) || defined(OS2)
- #define PSEP ";"
- #define DSEP "\\"
- #else
- #define PSEP ":"
- #define DSEP "/"
- #endif
- #define PX ""
- #define P1 "first path"
- #define P2 "second" DSEP "path"
- #define P3 "th ird" DSEP "path"
- #define P4 "fourth" DSEP "pa th"
- #define P5 "fifthpath"
- static const char *parts_in[] = { P1, P2, P3, PX, P4, P5 };
- static const char *path_in = P1 PSEP P2 PSEP P3 PSEP PX PSEP P4 PSEP P5;
- static const int parts_in_count = sizeof(parts_in)/sizeof(*parts_in);
- static const char *parts_out[] = { P1, P2, P3, P4, P5 };
- static const char *path_out = P1 PSEP P2 PSEP P3 PSEP P4 PSEP P5;
- static const int parts_out_count = sizeof(parts_out)/sizeof(*parts_out);
- static void list_split_multi(abts_case *tc, void *data)
- {
- int i;
- fspr_status_t rv;
- fspr_array_header_t *pathelts;
- pathelts = NULL;
- rv = fspr_filepath_list_split(&pathelts, path_in, p);
- ABTS_PTR_NOTNULL(tc, pathelts);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_INT_EQUAL(tc, parts_out_count, pathelts->nelts);
- for (i = 0; i < pathelts->nelts; ++i)
- ABTS_STR_EQUAL(tc, parts_out[i], ((char**)pathelts->elts)[i]);
- }
- static void list_split_single(abts_case *tc, void *data)
- {
- int i;
- fspr_status_t rv;
- fspr_array_header_t *pathelts;
- for (i = 0; i < parts_in_count; ++i)
- {
- pathelts = NULL;
- rv = fspr_filepath_list_split(&pathelts, parts_in[i], p);
- ABTS_PTR_NOTNULL(tc, pathelts);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- if (parts_in[i][0] == '\0')
- ABTS_INT_EQUAL(tc, 0, pathelts->nelts);
- else
- {
- ABTS_INT_EQUAL(tc, 1, pathelts->nelts);
- ABTS_STR_EQUAL(tc, parts_in[i], *(char**)pathelts->elts);
- }
- }
- }
- static void list_merge_multi(abts_case *tc, void *data)
- {
- int i;
- char *liststr;
- fspr_status_t rv;
- fspr_array_header_t *pathelts;
- pathelts = fspr_array_make(p, parts_in_count, sizeof(const char*));
- for (i = 0; i < parts_in_count; ++i)
- *(const char**)fspr_array_push(pathelts) = parts_in[i];
- liststr = NULL;
- rv = fspr_filepath_list_merge(&liststr, pathelts, p);
- ABTS_PTR_NOTNULL(tc, liststr);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, liststr, path_out);
- }
- static void list_merge_single(abts_case *tc, void *data)
- {
- int i;
- char *liststr;
- fspr_status_t rv;
- fspr_array_header_t *pathelts;
- pathelts = fspr_array_make(p, 1, sizeof(const char*));
- fspr_array_push(pathelts);
- for (i = 0; i < parts_in_count; ++i)
- {
- *(const char**)pathelts->elts = parts_in[i];
- liststr = NULL;
- rv = fspr_filepath_list_merge(&liststr, pathelts, p);
- if (parts_in[i][0] == '\0')
- ABTS_PTR_EQUAL(tc, NULL, liststr);
- else
- {
- ABTS_PTR_NOTNULL(tc, liststr);
- ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, liststr, parts_in[i]);
- }
- }
- }
- abts_suite *testpath(abts_suite *suite)
- {
- suite = ADD_SUITE(suite)
- abts_run_test(suite, list_split_multi, NULL);
- abts_run_test(suite, list_split_single, NULL);
- abts_run_test(suite, list_merge_multi, NULL);
- abts_run_test(suite, list_merge_single, NULL);
- return suite;
- }
|