hurl/integration/tests_ok/aws_sigv4.sh

14 lines
406 B
Bash
Raw Normal View History

#!/bin/bash
set -Eeuo pipefail
2023-09-02 11:16:24 +03:00
set +eo pipefail
# if curl/libcurl on this system does not support --aws-sigv4
# simply ignore test
# FIXME: remove this workaround once all integration test targets have aws-sigv4 support in libcurl
2023-09-02 11:16:24 +03:00
if curl --aws-sigv4 2>&1 | grep -q 'option --aws-sigv4: is unknown'; then
exit 0
fi
2023-09-02 11:16:24 +03:00
set -Eeuo pipefail
hurl --user someAccessKeyId:someSecretKey tests_ok/aws_sigv4.hurl