2022-06-14 15:12:22 +00:00
|
|
|
#!/usr/bin/env atf-sh
|
|
|
|
|
|
|
|
. $(atf_get_srcdir)/test_env.sh
|
|
|
|
init_tests \
|
2022-06-14 15:24:26 +00:00
|
|
|
abuild_fetch_help \
|
2022-06-14 15:30:24 +00:00
|
|
|
abuild_fetch_curl_invocation \
|
|
|
|
abuild_fetch_curl_failure
|
2022-06-14 15:24:26 +00:00
|
|
|
|
|
|
|
create_fake_curl() {
|
|
|
|
mkdir bin
|
|
|
|
# fake curl
|
|
|
|
cat > bin/curl <<-EOF
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "[\$\$] Fake curl invoked with: \$@"
|
|
|
|
if [ -n "\$FIFO" ]; then
|
|
|
|
echo "[\$\$] waiting for fifo \$FIFO"
|
|
|
|
cat "\$FIFO"
|
|
|
|
fi
|
|
|
|
exit \${CURL_EXITCODE:-0}
|
|
|
|
EOF
|
|
|
|
chmod +x bin/curl
|
|
|
|
PATH="$PWD/bin:$PATH"
|
|
|
|
}
|
2022-06-14 15:12:22 +00:00
|
|
|
|
|
|
|
abuild_fetch_help_body() {
|
|
|
|
atf_check -s exit:0 \
|
|
|
|
-o not-empty \
|
|
|
|
-e empty \
|
|
|
|
abuild-fetch -h
|
|
|
|
}
|
|
|
|
|
2022-06-14 15:24:26 +00:00
|
|
|
abuild_fetch_curl_invocation_body() {
|
|
|
|
create_fake_curl
|
|
|
|
atf_check -s exit:0 \
|
|
|
|
-o match:"Fake curl invoked" \
|
|
|
|
-e empty \
|
|
|
|
abuild-fetch https://example.com/non-existing
|
|
|
|
}
|
|
|
|
|
2022-06-14 15:30:24 +00:00
|
|
|
abuild_fetch_curl_failure_body() {
|
|
|
|
create_fake_curl
|
|
|
|
# verify that fake curl works
|
|
|
|
CURL_EXITCODE=1 atf_check -s exit:$CURL_EXITCODE \
|
|
|
|
-o match:"Fake curl invoked" \
|
|
|
|
curl
|
|
|
|
CURL_EXITCODE=1 atf_check -s exit:$CURL_EXITCODE \
|
|
|
|
-o match:"Fake curl invoked" \
|
|
|
|
-e empty \
|
|
|
|
abuild-fetch https://example.com/non-existing
|
|
|
|
}
|
|
|
|
|