2016-10-17 16:11:24 -04:00
|
|
|
#!/bin/sh -xe
|
2019-05-31 21:09:17 -04:00
|
|
|
#
|
|
|
|
|
# This script is useful for testing that the packages we've built for a release
|
|
|
|
|
# work on a variety of systems. For an example of the kinds of problems that
|
|
|
|
|
# can occur, see https://github.com/certbot/certbot/issues/3455.
|
2016-10-17 16:11:24 -04:00
|
|
|
|
2019-02-14 18:26:44 -05:00
|
|
|
REPO_ROOT="letsencrypt"
|
|
|
|
|
LE_AUTO="$REPO_ROOT/letsencrypt-auto-source/letsencrypt-auto"
|
2018-01-25 01:38:36 -05:00
|
|
|
LE_AUTO="$LE_AUTO --debug --no-self-upgrade --non-interactive"
|
2019-11-13 19:23:29 -05:00
|
|
|
MODULES="acme certbot certbot-apache certbot-nginx"
|
2019-02-14 18:26:44 -05:00
|
|
|
PIP_INSTALL="$REPO_ROOT/tools/pip_install.py"
|
2016-10-17 16:11:24 -04:00
|
|
|
VENV_NAME=venv
|
|
|
|
|
|
|
|
|
|
# *-auto respects VENV_PATH
|
2018-01-25 01:38:36 -05:00
|
|
|
$LE_AUTO --os-packages-only
|
|
|
|
|
LE_AUTO_SUDO="" VENV_PATH="$VENV_NAME" $LE_AUTO --no-bootstrap --version
|
2016-10-17 16:11:24 -04:00
|
|
|
. $VENV_NAME/bin/activate
|
2019-02-14 18:26:44 -05:00
|
|
|
"$PIP_INSTALL" pytest
|
2016-10-17 16:11:24 -04:00
|
|
|
|
2019-11-20 18:47:07 -05:00
|
|
|
# To run tests that aren't packaged in modules, run pytest
|
|
|
|
|
# from the repo root. The directory structure should still
|
|
|
|
|
# cause the installed packages to be tested while using
|
|
|
|
|
# the tests available in the subdirectories.
|
|
|
|
|
cd $REPO_ROOT
|
2016-10-17 16:11:24 -04:00
|
|
|
|
|
|
|
|
for module in $MODULES ; do
|
|
|
|
|
echo testing $module
|
2019-11-13 19:23:29 -05:00
|
|
|
pytest -v $module
|
2016-10-17 16:11:24 -04:00
|
|
|
done
|