1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
#!/bin/bash
# Tests C library functions and types.
#
# Version: 20170722
EXIT_SUCCESS=0;
EXIT_FAILURE=1;
EXIT_IGNORE=77;
LIBRARY_TESTS="allocation_table attached_file_io_handle column_definition data_array data_array_entry data_block descriptors_index error index index_node index_value io_handle item item_descriptor item_tree item_values local_descriptor_node local_descriptor_value local_descriptors multi_value name_to_id_map_entry notify offsets_index record_entry record_set reference_descriptor table table_block_index table_index_value value_type";
LIBRARY_TESTS_WITH_INPUT="file support";
OPTION_SETS="";
INPUT_GLOB="*";
run_test()
{
local TEST_NAME=$1;
local TEST_DESCRIPTION="Testing: ${TEST_NAME}";
local TEST_EXECUTABLE="./pff_test_${TEST_NAME}";
if ! test -x "${TEST_EXECUTABLE}";
then
TEST_EXECUTABLE="${TEST_EXECUTABLE}.exe";
fi
# TODO: add support for TEST_PROFILE and OPTION_SETS?
run_test_with_arguments "${TEST_DESCRIPTION}" "${TEST_EXECUTABLE}";
local RESULT=$?;
return ${RESULT};
}
run_test_with_input()
{
local TEST_NAME=$1;
local TEST_DESCRIPTION="Testing: ${TEST_NAME}";
local TEST_EXECUTABLE="./pff_test_${TEST_NAME}";
if ! test -x "${TEST_EXECUTABLE}";
then
TEST_EXECUTABLE="${TEST_EXECUTABLE}.exe";
fi
run_test_on_input_directory "libpff" "${TEST_DESCRIPTION}" "default" "${OPTION_SETS}" "${TEST_EXECUTABLE}" "input" "${INPUT_GLOB}";
local RESULT=$?;
return ${RESULT};
}
if ! test -z ${SKIP_LIBRARY_TESTS};
then
exit ${EXIT_IGNORE};
fi
TEST_RUNNER="tests/test_runner.sh";
if ! test -f "${TEST_RUNNER}";
then
TEST_RUNNER="./test_runner.sh";
fi
if ! test -f "${TEST_RUNNER}";
then
echo "Missing test runner: ${TEST_RUNNER}";
exit ${EXIT_FAILURE};
fi
source ${TEST_RUNNER};
RESULT=${EXIT_IGNORE};
for TEST_NAME in ${LIBRARY_TESTS};
do
run_test "${TEST_NAME}";
RESULT=$?;
if test ${RESULT} -ne ${EXIT_SUCCESS};
then
break;
fi
done
if test ${RESULT} -ne ${EXIT_SUCCESS} && test ${RESULT} -ne ${EXIT_IGNORE};
then
exit ${RESULT};
fi
for TEST_NAME in ${LIBRARY_TESTS_WITH_INPUT};
do
if test -d "input";
then
run_test_with_input "${TEST_NAME}";
RESULT=$?;
else
run_test "${TEST_NAME}";
RESULT=$?;
fi
if test ${RESULT} -ne ${EXIT_SUCCESS};
then
break;
fi
done
exit ${RESULT};
|