This is a framework of feature modules for WordPress that are shared across plugins.
Many of these were refactored from the deprecated plugin framework v2.
Git repository: https://github.com/tangibleinc/framework
Add as a production dependency in tangible.config.js.
export default {
install: [
{
git: 'git@github.com:tangibleinc/framework',
dest: 'vendor/tangible/framework',
branch: 'main',
},
]
}Run npm run install or npx roll install.
Alternatively, add in composer.json and run composer update.
{
"repositories": [
{
"type": "vcs",
"url": "git@github.com:tangibleinc/framework"
}
],
"require": {
"tangible/framework": "dev-main"
},
"minimum-stability": "dev"
}After loading the framework, its newest version instance is ready on plugins_loaded action.
use tangible\framework;
require_once __DIR__ . '/vendor/tangible/framework/index.php';
add_action('plugins_loaded', function() {
// Newest version of Framework is ready
});During plugin activation, such as after install or update, WordPress runs the plugins_loaded action before loading plugins and modules, short-circuiting the version comparison logic. This can cause an older version of a module to load with missing features.
It is recommended to check for the constant WP_SANDBOX_SCRAPING, and skip loading the rest of the plugin when it's defined.
if (defined('WP_SANDBOX_SCRAPING')) return;
// ..Register with Framework and load the rest of plugin..This guarantees the availability of the newest version of all modules. For more details, see:
- https://developer.wordpress.org/reference/functions/register_activation_hook/#more-information
- https://github.com/WordPress/wordpress-develop/blob/8a52d746e9bb85604f6a309a87d22296ce1c4280/src/wp-admin/includes/plugin.php#L2381C10-L2381C31
Prerequisites: Git, Node (version 18 and above)
Clone the repository and install dependencies.
git clone git@github.com:tangibleinc/framework.git
cd framework
npm installBuild for development - watch files for changes and rebuild
npm run devBuild for production
npm run buildFormat to code standard
npm run formatWatch files for changes and rebuild.
npm run dev [module1 module2..]Press CTRL + C to stop.
Builds minified bundles with source maps.
npm run build [module1 module2..]Format files to code standard with Prettier and PHP Beautify.
npm run format [module1 module2..]Start a local dev site using wp-now.
npm run nowPress CTRL + C to stop.
Optionally, install dev dependencies such as third-party plugins before starting the site.
npm run install:devTo keep them updated, run:
npm run update:devCreate a file named .wp-env.override.json to customize the WordPress environment. This file is listed in .gitignore so it's local to your setup.
Mainly it's useful for mounting local folders into the virtual file system. For example, to link another plugin in the parent directory:
{
"mappings": {
"wp-content/plugins/example-plugin": "../example-plugin"
}
}This plugin comes with a suite of unit and integration tests.
The test environment is started by running:
npm run startThis uses wp-env to set up a local dev and test site, optionally switching between multiple PHP versions. It requires Docker to be installed. There are instructions available for installing Docker on Windows, macOS, and Linux.
Visit http://localhost:8888 to see the dev site, and http://localhost:8889 for the test site, whose database is cleared on every run.
Before running tests, install PHPUnit as a dev dependency using Composer inside the container.
npm run composer:installComposer will add and remove folders in the vendor folder, based on composer.json and composer.lock. If you have any existing Git repositories, ensure they don't have any work in progress before running the above command.
Run the tests:
npm run testFor each PHP version:
npm run test:7.4
npm run test:8.2The version-specific commands take a while to start, but afterwards you can run npm run env:test to re-run tests in the same environment.
To stop the Docker process:
npm run stopTo remove Docker containers, volumes, images associated with the test environment.
npm run env:destroyTo run more than one instance of wp-env, set different ports for the dev and test sites:
WP_ENV_PORT=3333 WP_ENV_TESTS_PORT=3334 npm run env:startThis repository includes NPM scripts to run the tests with PHP versions 8.2 and 7.4. We need to maintain compatibility with PHP 7.4, as WordPress itself only has “beta support” for PHP 8.x. See https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/ for more information.
If you’re on Windows, you might have to use Windows Subsystem for Linux to run the tests (see this comment).
The folder /tests/e2e contains end-to-end-tests using Playwright and WordPress E2E Testing Utils.
Before the first time you run it, install the browser engine.
npx playwright install chromiumRun the tests. This will start the local WordPress environment with wp-env as needed. Then Playwright starts a browser engine to interact with the test site.
npm run test:e2eThere is a "Watch mode", where it will watch the test files for changes and re-run them. This provides a helpful feedback loop when writing tests, as a kind of test-driven development. Press CTRL + C to stop the process.
npm run test:e2e:watchA common usage is to have terminal sessions open with npm run dev (build assets and watch to rebuild) and npm run tdd (run tests and watch to re-run).
There's also "UI mode" that opens a browser interface to see the tests run.
npm run test:e2e:uiHere are the common utilities used to write the tests.
test- https://playwright.dev/docs/api/class-testexpect- https://playwright.dev/docs/api/class-genericassertionsadmin- https://github.com/WordPress/gutenberg/tree/trunk/packages/e2e-test-utils-playwright/src/adminpage- https://playwright.dev/docs/api/class-pagerequest- https://playwright.dev/docs/api/class-apirequestcontext
Examples of how to write end-to-end tests:
- WordPress E2E tests - https://github.com/WordPress/wordpress-develop/blob/trunk/tests/e2e
- Gutenberg E2E tests - https://github.com/WordPress/gutenberg/tree/trunk/test/e2e