2020-12-17 13:02:10 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-01-27 18:35:12 +00:00
|
|
|
# Wait for MySQL to be up and running
|
|
|
|
until mysqladmin ping -h"$DB_HOST" --silent; do
|
|
|
|
>&2 echo "MySQL is unavailable - sleeping"
|
|
|
|
sleep 2
|
|
|
|
done
|
2021-02-01 04:26:27 +00:00
|
|
|
|
2021-01-27 18:35:12 +00:00
|
|
|
>&2 echo "MySQL is up - executing tests"
|
|
|
|
|
2021-02-01 04:26:27 +00:00
|
|
|
# Function to install the test suite.
|
|
|
|
function install {
|
|
|
|
# Delete previous state.
|
|
|
|
rm -f /tmp/.INSTALLED_WC_VERSION
|
2021-02-08 22:33:01 +00:00
|
|
|
rm -f /tmp/.INSTALLED_WP_VERSION
|
|
|
|
|
|
|
|
# Delete any previous installations.
|
|
|
|
rm -rf /tmp/*
|
2021-02-01 04:26:27 +00:00
|
|
|
|
|
|
|
# Run the install script.
|
2021-02-08 22:33:01 +00:00
|
|
|
bin/install-wp-tests.sh $DB_NAME $DB_USER $DB_PASS $DB_HOST $WP_VERSION true
|
2021-02-01 04:26:27 +00:00
|
|
|
|
2021-02-08 22:33:01 +00:00
|
|
|
# Update state.
|
2021-02-01 04:26:27 +00:00
|
|
|
echo "$WC_VERSION" > /tmp/.INSTALLED_WC_VERSION
|
2021-02-08 22:33:01 +00:00
|
|
|
echo "$WP_VERSION" > /tmp/.INSTALLED_WP_VERSION
|
2021-02-01 04:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Run the install script if the installed WooCommerce version is unknown.
|
|
|
|
if [ ! -f /tmp/.INSTALLED_WC_VERSION ]; then
|
|
|
|
install
|
|
|
|
else
|
|
|
|
# Run the install script if the WooCommerce version has changed.
|
|
|
|
INSTALLED_WC_VERSION=`cat /tmp/.INSTALLED_WC_VERSION`
|
|
|
|
if [ "$WC_VERSION" != "$INSTALLED_WC_VERSION" ]; then
|
|
|
|
install
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-02-08 22:33:01 +00:00
|
|
|
# Run the install script if the installed WordPress version is unknown.
|
|
|
|
if [ ! -f /tmp/.INSTALLED_WP_VERSION ]; then
|
|
|
|
install
|
|
|
|
else
|
|
|
|
# Run the install script if the WordPress version has changed.
|
|
|
|
INSTALLED_WP_VERSION=`cat /tmp/.INSTALLED_WP_VERSION`
|
|
|
|
if [ "$WP_VERSION" != "$INSTALLED_WP_VERSION" ]; then
|
|
|
|
install
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-12-17 13:02:10 +00:00
|
|
|
# Run the install script if the WordPress directory is not found.
|
|
|
|
if [ ! -d /tmp/wordpress-tests-lib ]; then
|
2021-02-01 04:26:27 +00:00
|
|
|
install
|
2020-12-17 13:02:10 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec phpunit "$@"
|