add unit test #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHPUnit Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_ROOT_PASSWORD: rootpassword | |
MYSQL_DATABASE: wordpress_test | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Setup WordPress Test Suite | |
run: | | |
mkdir -p /home/runner/wordpress-tests | |
cd /home/runner/wordpress-tests | |
git clone --depth=1 https://github.com/WordPress/wordpress-develop.git | |
cd wordpress-develop | |
composer install | |
cp wp-tests-config-sample.php wp-tests-config.php | |
sed -i "s/youremptytestdbnamehere/wordpress_test/g" wp-tests-config.php | |
sed -i "s/yourusernamehere/root/g" wp-tests-config.php | |
sed -i "s/yourpasswordhere/rootpassword/g" wp-tests-config.php | |
sed -i "s/localhost/127.0.0.1/g" wp-tests-config.php | |
env: | |
WP_TESTS_PATH: /home/runner/wordpress-tests/wordpress-develop/tests/phpunit | |
- uses: actions/checkout@v2 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
extensions: mbstring, intl, mysqli, zip | |
tools: composer:v2 | |
- name: Update Composer dependencies | |
run: | | |
composer update --no-interaction --no-progress | |
composer require woocommerce/woocommerce:^7.0 --no-interaction --no-progress | |
- name: Install dependencies | |
run: composer install --no-interaction --no-progress | |
- name: Run PHPUnit tests | |
env: | |
COMPOSER_PROCESS_TIMEOUT: 0 | |
COMPOSER_NO_INTERACTION: 1 | |
COMPOSER_NO_AUDIT: 1 | |
WP_TESTS_PATH: /home/runner/wordpress-tests/wordpress-develop/tests/phpunit | |
WP_PHPUNIT__DIR: /home/runner/wordpress-tests/wordpress-develop/tests/phpunit | |
DB_NAME: wordpress_test | |
DB_USER: root | |
DB_PASSWORD: rootpassword | |
DB_HOST: 127.0.0.1 | |
run: | | |
# Wait for MySQL to be ready | |
while ! mysqladmin ping -h"$DB_HOST" -u"$DB_USER" -p"$DB_PASSWORD" --silent; do | |
echo "Waiting for MySQL to be ready..." | |
sleep 2 | |
done | |
# Set WP_PLUGIN_DIR environment variable | |
export WP_PLUGIN_DIR=/home/runner/wordpress-tests/wordpress-develop/src/wp-content/plugins | |
# Run PHPUnit tests | |
vendor/bin/phpunit --bootstrap tests/bootstrap.php --debug |