diff --git a/ci/test_mapserver_image.sh b/ci/test_mapserver_image.sh index 82ababcb828789be59f0cc2ebb989219efb54b10..9bb7591b0d95d56c94b186d0af0bc0eb20d8d8e9 100755 --- a/ci/test_mapserver_image.sh +++ b/ci/test_mapserver_image.sh @@ -45,6 +45,12 @@ curl_index() { curl --fail -sS --max-time 5 "http://localhost:8888/" >/dev/null } +curl_layer_times() { + debug "Starting curl basic time request..." + # NOTE: The time doesn't actually exist and no image data is available. A blank image should be returned + curl --fail -sS "http://localhost:8888/wms_times/g16/abi/radf/C01" >/dev/null +} + curl_empty_tile() { debug "Starting curl basic mapfile request..." # NOTE: The time doesn't actually exist and no image data is available. A blank image should be returned @@ -56,6 +62,7 @@ run_basic_shapefile_tests() { debug "Starting shapefile tests..." start_test_container || sf_exit_status=1 curl_index || sf_exit_status=1 + curl_layer_times || sf_exit_status=1 curl_empty_tile || sf_exit_status=1 kill_test_container @@ -68,6 +75,7 @@ run_basic_postgres_tests() { start_test_container -e POSTGRES_HOST=localhost -e POSTGRES_PASSWORD_FILE="/secrets/fake_file" || pg_exit_status=1 add_shapefile_content curl_index || pg_exit_status=1 +# curl_layer_times || sf_exit_status=1 curl_empty_tile || pg_exit_status=1 kill_test_container