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 "fspr_file_io.h"
- #include "fspr_file_info.h"
- #include "fspr_errno.h"
- #include "fspr_general.h"
- #include "fspr_poll.h"
- #include "fspr_strings.h"
- #include "fspr_lib.h"
- #include "fspr_mmap.h"
- #include "testutil.h"
- /* Only enable these tests by default on platforms which support sparse
- * files... just Unixes? */
- #if defined(WIN32) || defined(OS2) || defined(NETWARE)
- static void test_nolfs(abts_case *tc, void *data)
- {
- ABTS_NOT_IMPL(tc, "Large Files tests require Sparse file support");
- }
- #elif APR_HAS_LARGE_FILES
- #define USE_LFS_TESTS
- /* Tests which create an 8Gb sparse file and then check it can be used
- * as normal. */
- static fspr_off_t eightGb = APR_INT64_C(2) << 32;
- static int madefile = 0;
- #define PRECOND if (!madefile) { ABTS_NOT_IMPL(tc, "Large file tests not enabled"); return; }
- #define TESTDIR "lfstests"
- #define TESTFILE "large.bin"
- #define TESTFN "lfstests/large.bin"
- static void test_open(abts_case *tc, void *data)
- {
- fspr_file_t *f;
- fspr_status_t rv;
- rv = fspr_dir_make(TESTDIR, APR_OS_DEFAULT, p);
- if (rv && !APR_STATUS_IS_EEXIST(rv)) {
- APR_ASSERT_SUCCESS(tc, "make test directory", rv);
- }
- APR_ASSERT_SUCCESS(tc, "open file",
- fspr_file_open(&f, TESTFN,
- APR_CREATE | APR_WRITE | APR_TRUNCATE,
- APR_OS_DEFAULT, p));
- rv = fspr_file_trunc(f, eightGb);
- APR_ASSERT_SUCCESS(tc, "close large file", fspr_file_close(f));
- /* 8Gb may pass rlimits or filesystem limits */
- if (APR_STATUS_IS_EINVAL(rv)
- #ifdef EFBIG
- || rv == EFBIG
- #endif
- ) {
- ABTS_NOT_IMPL(tc, "Creation of large file (limited by rlimit or fs?)");
- }
- else {
- APR_ASSERT_SUCCESS(tc, "truncate file to 8gb", rv);
- }
- madefile = rv == APR_SUCCESS;
- }
- static void test_reopen(abts_case *tc, void *data)
- {
- fspr_file_t *fh;
- fspr_finfo_t finfo;
- PRECOND;
-
- APR_ASSERT_SUCCESS(tc, "re-open 8Gb file",
- fspr_file_open(&fh, TESTFN, APR_READ, APR_OS_DEFAULT, p));
- APR_ASSERT_SUCCESS(tc, "file_info_get failed",
- fspr_file_info_get(&finfo, APR_FINFO_NORM, fh));
-
- ABTS_ASSERT(tc, "file_info_get gave incorrect size",
- finfo.size == eightGb);
- APR_ASSERT_SUCCESS(tc, "re-close large file", fspr_file_close(fh));
- }
- static void test_stat(abts_case *tc, void *data)
- {
- fspr_finfo_t finfo;
- PRECOND;
- APR_ASSERT_SUCCESS(tc, "stat large file",
- fspr_stat(&finfo, TESTFN, APR_FINFO_NORM, p));
-
- ABTS_ASSERT(tc, "stat gave incorrect size", finfo.size == eightGb);
- }
- static void test_readdir(abts_case *tc, void *data)
- {
- fspr_dir_t *dh;
- fspr_status_t rv;
- PRECOND;
- APR_ASSERT_SUCCESS(tc, "open test directory",
- fspr_dir_open(&dh, TESTDIR, p));
- do {
- fspr_finfo_t finfo;
-
- rv = fspr_dir_read(&finfo, APR_FINFO_NORM, dh);
-
- if (rv == APR_SUCCESS && strcmp(finfo.name, TESTFILE) == 0) {
- ABTS_ASSERT(tc, "fspr_dir_read gave incorrect size for large file",
- finfo.size == eightGb);
- }
- } while (rv == APR_SUCCESS);
-
- if (!APR_STATUS_IS_ENOENT(rv)) {
- APR_ASSERT_SUCCESS(tc, "fspr_dir_read failed", rv);
- }
-
- APR_ASSERT_SUCCESS(tc, "close test directory",
- fspr_dir_close(dh));
- }
- #define TESTSTR "Hello, world."
- static void test_append(abts_case *tc, void *data)
- {
- fspr_file_t *fh;
- fspr_finfo_t finfo;
-
- PRECOND;
- APR_ASSERT_SUCCESS(tc, "open 8Gb file for append",
- fspr_file_open(&fh, TESTFN, APR_WRITE | APR_APPEND,
- APR_OS_DEFAULT, p));
- APR_ASSERT_SUCCESS(tc, "append to 8Gb file",
- fspr_file_write_full(fh, TESTSTR, strlen(TESTSTR), NULL));
- APR_ASSERT_SUCCESS(tc, "file_info_get failed",
- fspr_file_info_get(&finfo, APR_FINFO_NORM, fh));
-
- ABTS_ASSERT(tc, "file_info_get gave incorrect size",
- finfo.size == eightGb + strlen(TESTSTR));
- APR_ASSERT_SUCCESS(tc, "close 8Gb file", fspr_file_close(fh));
- }
- static void test_seek(abts_case *tc, void *data)
- {
- fspr_file_t *fh;
- fspr_off_t pos;
- PRECOND;
-
- APR_ASSERT_SUCCESS(tc, "open 8Gb file for writing",
- fspr_file_open(&fh, TESTFN, APR_WRITE,
- APR_OS_DEFAULT, p));
- pos = 0;
- APR_ASSERT_SUCCESS(tc, "relative seek to end",
- fspr_file_seek(fh, APR_END, &pos));
- ABTS_ASSERT(tc, "seek to END gave 8Gb", pos == eightGb);
-
- pos = eightGb;
- APR_ASSERT_SUCCESS(tc, "seek to 8Gb", fspr_file_seek(fh, APR_SET, &pos));
- ABTS_ASSERT(tc, "seek gave 8Gb offset", pos == eightGb);
- pos = 0;
- APR_ASSERT_SUCCESS(tc, "relative seek to 0", fspr_file_seek(fh, APR_CUR, &pos));
- ABTS_ASSERT(tc, "relative seek gave 8Gb offset", pos == eightGb);
- fspr_file_close(fh);
- }
- static void test_write(abts_case *tc, void *data)
- {
- fspr_file_t *fh;
- fspr_off_t pos = eightGb - 4;
- PRECOND;
- APR_ASSERT_SUCCESS(tc, "re-open 8Gb file",
- fspr_file_open(&fh, TESTFN, APR_WRITE, APR_OS_DEFAULT, p));
- APR_ASSERT_SUCCESS(tc, "seek to 8Gb - 4",
- fspr_file_seek(fh, APR_SET, &pos));
- ABTS_ASSERT(tc, "seek gave 8Gb-4 offset", pos == eightGb - 4);
- APR_ASSERT_SUCCESS(tc, "write magic string to 8Gb-4",
- fspr_file_write_full(fh, "FISH", 4, NULL));
- APR_ASSERT_SUCCESS(tc, "close 8Gb file", fspr_file_close(fh));
- }
- #if APR_HAS_MMAP
- static void test_mmap(abts_case *tc, void *data)
- {
- fspr_mmap_t *map;
- fspr_file_t *fh;
- fspr_size_t len = 16384; /* hopefully a multiple of the page size */
- fspr_off_t off = eightGb - len;
- void *ptr;
- PRECOND;
- APR_ASSERT_SUCCESS(tc, "open 8gb file for mmap",
- fspr_file_open(&fh, TESTFN, APR_READ, APR_OS_DEFAULT, p));
-
- APR_ASSERT_SUCCESS(tc, "mmap 8Gb file",
- fspr_mmap_create(&map, fh, off, len, APR_MMAP_READ, p));
- APR_ASSERT_SUCCESS(tc, "close file", fspr_file_close(fh));
- ABTS_ASSERT(tc, "mapped a 16K block", map->size == len);
-
- APR_ASSERT_SUCCESS(tc, "get pointer into mmaped region",
- fspr_mmap_offset(&ptr, map, len - 4));
- ABTS_ASSERT(tc, "pointer was not NULL", ptr != NULL);
- ABTS_ASSERT(tc, "found the magic string", memcmp(ptr, "FISH", 4) == 0);
- APR_ASSERT_SUCCESS(tc, "delete mmap handle", fspr_mmap_delete(map));
- }
- #endif /* APR_HAS_MMAP */
- static void test_format(abts_case *tc, void *data)
- {
- fspr_off_t off;
- PRECOND;
- off = fspr_atoi64(fspr_off_t_toa(p, eightGb));
- ABTS_ASSERT(tc, "fspr_atoi64 parsed fspr_off_t_toa result incorrectly",
- off == eightGb);
- }
- #else
- static void test_nolfs(abts_case *tc, void *data)
- {
- ABTS_NOT_IMPL(tc, "Large Files not supported");
- }
- #endif
- abts_suite *testlfs(abts_suite *suite)
- {
- suite = ADD_SUITE(suite)
- #ifdef USE_LFS_TESTS
- abts_run_test(suite, test_open, NULL);
- abts_run_test(suite, test_reopen, NULL);
- abts_run_test(suite, test_stat, NULL);
- abts_run_test(suite, test_readdir, NULL);
- abts_run_test(suite, test_seek, NULL);
- abts_run_test(suite, test_append, NULL);
- abts_run_test(suite, test_write, NULL);
- #if APR_HAS_MMAP
- abts_run_test(suite, test_mmap, NULL);
- #endif
- abts_run_test(suite, test_format, NULL);
- #else
- abts_run_test(suite, test_nolfs, NULL);
- #endif
- return suite;
- }
|