2016-07-08 00:39:07 +03:00
#!/bin/bash
#
# Copyright (C) 2016 Red Hat
#
2018-01-30 22:26:26 +03:00
# SPDX-License-Identifier: LGPL-2.0+
#
2016-07-08 00:39:07 +03:00
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
2021-12-07 04:20:55 +03:00
# License along with this library. If not, see <https://www.gnu.org/licenses/>.
2016-07-08 00:39:07 +03:00
set -euo pipefail
. $( dirname $0 ) /libtest.sh
2019-07-30 02:39:12 +03:00
COMMIT_SIGN = ""
if has_gpgme; then
COMMIT_SIGN = " --gpg-homedir= ${ TEST_GPG_KEYHOME } --gpg-sign= ${ TEST_GPG_KEYID_1 } "
fi
2016-07-08 00:39:07 +03:00
2019-07-30 02:39:12 +03:00
echo "1..4"
2018-05-28 18:25:53 +03:00
# Test pulling from a repo which gives error 500 (internal server error) a lot of the time.
2017-09-01 23:15:33 +03:00
setup_fake_remote_repo1 "archive" " ${ COMMIT_SIGN } " --random-500s= 50
2016-07-08 00:39:07 +03:00
2018-05-28 18:25:53 +03:00
pushd ${ test_tmpdir }
2017-09-01 23:15:33 +03:00
ostree_repo_init repo --mode= archive
2016-07-08 00:39:07 +03:00
${ CMD_PREFIX } ostree --repo= repo remote add --set= gpg-verify= false origin $( cat httpd-address) /ostree/gnomerepo
for x in $( seq 200) ; do
if ${ CMD_PREFIX } ostree --repo= repo pull --mirror origin main 2>err.txt; then
echo " Success on iteration ${ x } "
break;
fi
2017-01-09 04:45:58 +03:00
assert_file_has_content err.txt "\(500.*Internal Server Error\)\|\(HTTP 500\)"
2016-07-08 00:39:07 +03:00
done
${ CMD_PREFIX } ostree --repo= repo fsck
${ CMD_PREFIX } ostree --repo= repo rev-parse main
2018-05-28 18:25:53 +03:00
popd
2016-07-08 00:39:07 +03:00
echo "ok repeated pull after 500s"
2018-05-28 18:25:53 +03:00
2018-07-05 19:35:30 +03:00
# Sanity check with no network retries and 408s given, pull should fail.
rm ostree-srv httpd repo -rf
setup_fake_remote_repo1 "archive" " ${ COMMIT_SIGN } " --random-408s= 99
pushd ${ test_tmpdir }
ostree_repo_init repo --mode= archive
${ CMD_PREFIX } ostree --repo= repo remote add --set= gpg-verify= false origin $( cat httpd-address) /ostree/gnomerepo
assert_fail ${ CMD_PREFIX } ostree --repo= repo pull --mirror origin --network-retries= 0 main 2>err.txt
assert_file_has_content err.txt "\(408.*Request Timeout\)\|\(HTTP 408\)"
popd
echo "ok no retries after a 408"
# Test pulling a repo which gives error 408 (request timeout) a lot of the time.
2018-05-28 18:25:53 +03:00
rm ostree-srv httpd repo -rf
setup_fake_remote_repo1 "archive" " ${ COMMIT_SIGN } " --random-408s= 50
pushd ${ test_tmpdir }
ostree_repo_init repo --mode= archive
${ CMD_PREFIX } ostree --repo= repo remote add --set= gpg-verify= false origin $( cat httpd-address) /ostree/gnomerepo
for x in $( seq 40) ; do
2018-07-05 19:35:30 +03:00
if ${ CMD_PREFIX } ostree --repo= repo pull --mirror origin --network-retries= 2 main 2>err.txt; then
2018-05-28 18:25:53 +03:00
echo " Success on iteration ${ x } "
break;
fi
assert_file_has_content err.txt "\(408.*Request Timeout\)\|\(HTTP 408\)"
done
${ CMD_PREFIX } ostree --repo= repo fsck
${ CMD_PREFIX } ostree --repo= repo rev-parse main
popd
echo "ok repeated pull after 408s"
2018-07-05 19:35:30 +03:00
# Test pulling a repo that gives 408s a lot of the time, with many network retries.
rm ostree-srv httpd repo -rf
setup_fake_remote_repo1 "archive" " ${ COMMIT_SIGN } " --random-408s= 50
pushd ${ test_tmpdir }
ostree_repo_init repo --mode= archive
${ CMD_PREFIX } ostree --repo= repo remote add --set= gpg-verify= false origin $( cat httpd-address) /ostree/gnomerepo
2020-03-24 15:24:46 +03:00
# We limit 408s above to 100, so 100 retries should be enough always.
${ CMD_PREFIX } ostree --repo= repo pull --mirror origin --network-retries= 100 main
2018-07-05 21:59:24 +03:00
echo "Success with big number of network retries"
2018-07-05 19:35:30 +03:00
${ CMD_PREFIX } ostree --repo= repo fsck
${ CMD_PREFIX } ostree --repo= repo rev-parse main
popd
echo "ok big number of retries with one 408"