Download the PHP package valu/wp-testing-tools without Composer

On this page you can find all versions of the php package valu/wp-testing-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-testing-tools

WP Testing Tools

WordPress testing for everyone! 🤗

Testing WordPress plugins is PITA. The wp-browser project makes it possible but it requires a working WordPress installation to be used. Unfortunately setting up one is very laborious which is why many especially smaller plugins omit tests completely. So the humble mission of this project is make that barrier go away completely so there would be no excuses to not write tests for WordPress plugins! 💪

This project contains following components:

Projects using this setup

Starting

For new projects you can just copy all files from plugin/ and rename the "example" strings.

For existing projects you can install this using composer

composer require --dev valu/wp-testing-tools
# You'll want the wp-browser too
composer require --dev lucatume/wp-browser

After installing you can copy the test files to your plugin with

./vendor/bin/wptt-configure

Plugin files

The example plugin is under the plugin/ directory. Lets go through it file by file and explain the purpose of each.

composer.json

This is the main composer file which makes your plugin installable using Composer. Define any library dependencies of your plugin here but do not add other plugins here since your plugin users might want to install those by other means.

In it we define this package as a dev requirement under "require-dev" with "valu/wp-testing-tools": "^0.4.0".

But the most interesting part is the "wp-install" script under "scripts":

wp-install --full --wp-composer-file composer.wp-install.json --env-file .env

This wp-install tool is provided by this package and it actually does the WordPress installation using wp-cli.

It takes few arguments

composer.wp-install.json

Since we cannot add WP plugin dependencies to the main composer.json we can add them here and they get installed & activated to the testing installation automatically.

.env

This file is copied from .env.github or .env.docker depending on the environment. It contains the database credentials and the installation location for WordPress. Checkout their content for more information.

codeception.dist.yml

The Codeception config. You must configure your plugin entry point (among with the ones defined in composer.wp-install.json) to the modules.config.WPLoader.plugins and modules.config.WPLoader.activatePlugins sections to be activated during wpunit tests.

tests/

The directory containing the tests. Please refer to the Codeception and wp-browser documention.

docker/

This directory contains the Docker enviroment configuration. You as the plugin author are not supposed to edit anything under this directory. Any customizations you need should be doable in .env.docker and other extensions points. If you need some help customizing the Docker enviroment feel free to open an issue!

This way the Docker enviroment is upgradeable. Just copy the latest version from this repository when you want to update to the latest version.

The docker directory exposes a run script for working with the enviroment:

The plugin directory will be mounted to /app so you can make changes from the host and they are visible immediately to the container.

plugin.php and src/

These are opinionated take on how to structure WordPress plugins with Composer Autoloading. If you don't care about that or are adapting existing plugin you can just remove these files along with the "autoload" config from composer.json.

But if you do it's highly recommend that you read the comments in plugin.php. It contains information on how to ship your plugin properly to both composer and non-composer users.

Customizing the WP install for Functiontal Tests

You can add a tests/wptt-wp-config.php which is required in the install's wp-config.php if it is readable.

You can also add tests/wptt-mu-plugin.php which is loaded as a mu-plugin in the install if it is readable.

Using XDebug with Docker

Visual Studio Code

Install the PHP Debug extension.

  1. Add launch config to .vscode/launch.json or to the global config:

  2. Start the container with ./docker/run compose

  3. From the VSCode DEBUG AND RUN view start the Docker: PHP Listen for XDebug launch config

  4. Add break points

  5. Start testing shell ./docker/run shell and run the tests with codecept run wpunit

Profit!

PHPStorm

The IDEKEY is "wptt".

Please contribute?


All versions of wp-testing-tools with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package valu/wp-testing-tools contains the following files

Loading the files please wait ....