-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #956 from WordPress/add/plugins-test-suite
Add test suite for Plugins folder
- Loading branch information
Showing
4 changed files
with
106 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Unit Testing for Test Plugin | ||
|
||
on: | ||
push: | ||
branches: | ||
- trunk | ||
- 'release/**' | ||
# Only run if PHP-related files changed. | ||
paths: | ||
- '.github/workflows/php-test-plugins.yml' | ||
- '**.php' | ||
- '.wp-env.json' | ||
- '**/package.json' | ||
- 'package-lock.json' | ||
- 'phpunit.xml.dist' | ||
- 'tests/multisite.xml' | ||
- 'composer.json' | ||
- 'composer.lock' | ||
pull_request: | ||
branches: | ||
- trunk | ||
- 'release/**' | ||
- 'feature/**' | ||
# Only run if PHP-related files changed. | ||
paths: | ||
- '.github/workflows/php-test-plugins.yml' | ||
- '**.php' | ||
- '.wp-env.json' | ||
- '**/package.json' | ||
- 'package-lock.json' | ||
- 'phpunit.xml.dist' | ||
- 'tests/multisite.xml' | ||
- 'composer.json' | ||
- 'composer.lock' | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
php-test-plugins: | ||
name: "PHP ${{ matrix.php }} / WP ${{ matrix.wp }}" | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ['8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0'] | ||
wp: [ 'latest' ] | ||
include: | ||
- php: '7.4' | ||
wp: '6.3' | ||
- php: '8.3' | ||
wp: 'trunk' | ||
env: | ||
WP_ENV_PHP_VERSION: ${{ matrix.php }} | ||
WP_ENV_CORE: ${{ matrix.wp == 'trunk' && 'WordPress/WordPress' || format( 'https://wordpress.org/wordpress-{0}.zip', matrix.wp ) }} | ||
steps: | ||
- uses: styfle/[email protected] | ||
- uses: actions/checkout@v3 | ||
- name: Setup Node.js (.nvmrc) | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: npm | ||
- name: npm install | ||
run: npm ci | ||
- name: Install WordPress | ||
run: npm run wp-env start | ||
# Note that `composer update` is required instead of `composer install` | ||
# for the sake of PHP versions older than 8.1, which is the version of | ||
# PHP that the composer.lock was created for. | ||
- name: Composer update | ||
run: npm run wp-env run tests-cli -- --env-cwd="wp-content/plugins/$(basename $(pwd))" composer update --no-interaction | ||
- name: Running single site unit tests | ||
run: npm run test-php -- -- -- --testsuite test-plugin | ||
- name: Running multisite unit tests | ||
run: npm run test-php-multisite -- -- -- --testsuite test-plugin |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/** | ||
* Class Plugin Test Suite | ||
* | ||
* @package performance-lab | ||
*/ | ||
|
||
/** | ||
* Plugin test case. | ||
*/ | ||
class PluginTest extends WP_UnitTestCase { | ||
|
||
public function test_plugin_does_not_fatal() { | ||
$this->assertTrue( true ); | ||
} | ||
|
||
public function test_another_plugin_does_not_fatal() { | ||
$this->assertTrue( true ); | ||
} | ||
} |