gmid/regress/regress

71 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2021-01-22 17:48:04 +01:00
#!/bin/sh
rm -f gmid.pid
2021-01-22 17:48:04 +01:00
. ./lib.sh
. ./tests.sh
2021-01-22 17:48:04 +01:00
trap 'onexit' INT TERM EXIT
if [ $# -ne 0 ]; then
while [ $# -ne 0 ]; do
run_test $1
shift
done
tests_done
fi
# Run standalone unit tests.
run_test test_punycode
run_test test_iri
2024-04-04 15:07:09 +02:00
# Run configuration dumping test.
run_test test_dump_config
if [ "${SKIP_RUNTIME_TESTS:-0}" -eq 1 ]; then
echo
echo "======================"
echo "runtime tests skipped!"
echo "======================"
echo
tests_done
fi
2023-07-25 22:27:31 +02:00
# Run regression tests for the gemexp binary.
2023-07-25 22:26:26 +02:00
run_test test_gemexp
# Run regression tests for the gmid binary.
run_test test_static_files
run_test test_directory_redirect
run_test test_serve_big_files
run_test test_dont_execute_scripts
run_test test_custom_mime
run_test test_default_type
run_test test_custom_lang
run_test test_parse_custom_lang_per_location
run_test test_custom_index
run_test test_custom_index_default_type_per_location
run_test test_auto_index
run_test test_block
run_test test_block_return_fmt
run_test test_require_client_ca
run_test test_root_inside_location
run_test test_root_inside_location_with_redirect
2023-06-09 12:46:50 +02:00
run_test test_fastcgi
run_test test_fastcgi_inside_location
run_test test_fastcgi_deprecated_syntax
run_test test_macro_expansion
run_test test_proxy_relay_to
run_test test_proxy_with_certs
# run_test test_unknown_host # XXX: breaks on some distro
2022-02-26 15:02:45 +01:00
run_test test_include_mime
2023-07-24 10:51:35 +02:00
run_test test_log_file
# TODO: add test that uses only a TLSv1.2 or TLSv1.3
2023-07-01 16:11:21 +02:00
# TODO: add a test that attempt to serve a non-regular file
# TODO: add a test where the index is not a regular file
tests_done