123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* 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 "testflock.h"
- #include "testutil.h"
- #include "fspr_pools.h"
- #include "fspr_thread_proc.h"
- #include "fspr_file_io.h"
- #include "fspr_file_info.h"
- #include "fspr_general.h"
- #include "fspr_strings.h"
- static int launch_reader(abts_case *tc)
- {
- fspr_proc_t proc = {0};
- fspr_procattr_t *procattr;
- const char *args[2];
- fspr_status_t rv;
- fspr_exit_why_e why;
- int exitcode;
- rv = fspr_procattr_create(&procattr, p);
- APR_ASSERT_SUCCESS(tc, "Couldn't create procattr", rv);
- rv = fspr_procattr_io_set(procattr, APR_NO_PIPE, APR_NO_PIPE,
- APR_NO_PIPE);
- APR_ASSERT_SUCCESS(tc, "Couldn't set io in procattr", rv);
- rv = fspr_procattr_error_check_set(procattr, 1);
- APR_ASSERT_SUCCESS(tc, "Couldn't set error check in procattr", rv);
- args[0] = "tryread" EXTENSION;
- args[1] = NULL;
- rv = fspr_proc_create(&proc, "./tryread" EXTENSION, args, NULL, procattr, p);
- APR_ASSERT_SUCCESS(tc, "Couldn't launch program", rv);
- ABTS_ASSERT(tc, "wait for child process",
- fspr_proc_wait(&proc, &exitcode, &why, APR_WAIT) == APR_CHILD_DONE);
- ABTS_ASSERT(tc, "child terminated normally", why == APR_PROC_EXIT);
- return exitcode;
- }
- static void test_withlock(abts_case *tc, void *data)
- {
- fspr_file_t *file;
- fspr_status_t rv;
- int code;
-
- rv = fspr_file_open(&file, TESTFILE, APR_WRITE|APR_CREATE,
- APR_OS_DEFAULT, p);
- APR_ASSERT_SUCCESS(tc, "Could not create file.", rv);
- ABTS_PTR_NOTNULL(tc, file);
- rv = fspr_file_lock(file, APR_FLOCK_EXCLUSIVE);
- APR_ASSERT_SUCCESS(tc, "Could not lock the file.", rv);
- ABTS_PTR_NOTNULL(tc, file);
- code = launch_reader(tc);
- ABTS_INT_EQUAL(tc, FAILED_READ, code);
- (void) fspr_file_close(file);
- }
- static void test_withoutlock(abts_case *tc, void *data)
- {
- int code;
-
- code = launch_reader(tc);
- ABTS_INT_EQUAL(tc, SUCCESSFUL_READ, code);
- }
- static void remove_lockfile(abts_case *tc, void *data)
- {
- APR_ASSERT_SUCCESS(tc, "Couldn't remove lock file.",
- fspr_file_remove(TESTFILE, p));
- }
-
- abts_suite *testflock(abts_suite *suite)
- {
- suite = ADD_SUITE(suite)
- abts_run_test(suite, test_withlock, NULL);
- abts_run_test(suite, test_withoutlock, NULL);
- abts_run_test(suite, remove_lockfile, NULL);
- return suite;
- }
|