mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
* Use newer boulder config * Use ACMEv2 endpoint if requested * Add v2 integration tests * Work with unset variables * Add wildcard issuance test * quote domains
33 lines
1.3 KiB
Bash
Executable File
33 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Download and run Boulder instance for integration testing
|
|
set -xe
|
|
|
|
# Clone Boulder into a GOPATH-style directory structure even if Go isn't
|
|
# installed, because Boulder's docker-compose.yml file wll look for it there.
|
|
export GOPATH=${GOPATH:-$HOME/gopath}
|
|
BOULDERPATH=${BOULDERPATH:-$GOPATH/src/github.com/letsencrypt/boulder}
|
|
if [ ! -d ${BOULDERPATH} ]; then
|
|
git clone --depth=1 https://github.com/letsencrypt/boulder ${BOULDERPATH}
|
|
fi
|
|
|
|
cd ${BOULDERPATH}
|
|
FAKE_DNS=$(ifconfig docker0 | grep "inet addr:" | cut -d: -f2 | awk '{ print $1}')
|
|
[ -z "$FAKE_DNS" ] && FAKE_DNS=$(ifconfig docker0 | grep "inet " | xargs | cut -d ' ' -f 2)
|
|
[ -z "$FAKE_DNS" ] && FAKE_DNS=$(ip addr show dev docker0 | grep "inet " | xargs | cut -d ' ' -f 2 | cut -d '/' -f 1)
|
|
[ -z "$FAKE_DNS" ] && echo Unable to find the IP for docker0 && exit 1
|
|
sed -i "s/FAKE_DNS: .*/FAKE_DNS: ${FAKE_DNS}/" docker-compose.yml
|
|
|
|
# If we're testing against ACMEv2, we need to use a newer boulder config for
|
|
# now. See https://github.com/letsencrypt/boulder#quickstart.
|
|
if [ "$BOULDER_INTEGRATION" = "v2" ]; then
|
|
sed -i 's/BOULDER_CONFIG_DIR: .*/BOULDER_CONFIG_DIR: test\/config-next/' docker-compose.yml
|
|
fi
|
|
|
|
docker-compose up -d
|
|
|
|
set +x # reduce verbosity while waiting for boulder
|
|
until curl http://localhost:4000/directory 2>/dev/null; do
|
|
echo waiting for boulder
|
|
sleep 1
|
|
done
|