I'll quickly point out here that Nikolay's wordpress-tests is mainly to help with testing plugins, it could also be used for testing themes[1]. It is not used for testing the WordPress code itself, there is a separate project for that, and that's what the Automated_Testing on the WordPress codex is talking about.
[1] There are also other guidelines for testing WordPress themes on the WordPress Codex.
Plugin Test Example
Here are my notes on getting unit testing working for plugins using Nikolay's wordpress-tests.
The plugin we will be using is fairly simple, hopefully this gets you going in the right direction.
For this example lets assume you have your WordPress development environment setup and your plugin is installed and running on this environment. You also have PHPUnit installed.
The dev site is at the following location:
/Sites/wordpress-core
And our plugin is installed in the usual location:
/Sites/wordpress-core/wp-content/plugins/my-plugin
Right now our plugin contains the following files:
/Sites/wordpress-core/wp-content/plugins/my-plugin/my-plugin.php
Contents of my-plugin.php:
<?php if ( ! defined( 'ABSPATH' ) ) exit;
/*
Plugin Name: My Plugin
Description: Example using <a href="https://github.com/nb/wordpress-tests">WordPress Tests</a> in your plugin.
Author: ampt
Version: 0.0.1
*/
if ( ! class_exists( 'My_Plugin' ) ) :
class My_Plugin {
/**
* Setup our filters
*
* @return void
*/
public function __construct() {
add_filter( 'the_content', array( $this, 'append_content' ) );
}
/**
* Appends "Hello WordPress Unit Tests" to the content of every post
*
* @param string $content
* @return string
*/
public function append_content( $content ) {
return $content . "<p>Hello WordPress Unit Tests</p>";
}
}
$GLOBALS['my_plugin'] = new My_Plugin();
endif;
Now we need to setup our and begin writing our tests. Create a new file phpunit.xml in the /Sites/wordpress-core/wp-content/plugins/my-plugin/ directory with the following contents:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="MyPlugin Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
The phpunit.xml file tells PHPUnit where to find our tests and to load tests/bootstrap.php before running any tests. Now lets create the bootstrap.php file so in your plugin directory create the tests directory and then create the file bootstrap.php in the tests directory. Add the following to tests/bootstrap.php:
<?php
// Load WordPress test environment
// https://github.com/nb/wordpress-tests
//
// The path to wordpress-tests
$path = '/path/to/wordpress-tests/bootstrap.php';
if( file_exists( $path ) ) {
require_once $path;
} else {
exit( "Couldn't find path to wordpress-tests/bootstrap.php\n" );
}
You'll notice in bootstrap.php that $path is not set properly, we'll handle that below. But first we need to get a copy of wordpress-tests. For this example we'll clone the copy into /src:
cd /src
git clone https://github.com/nb/wordpress-tests.git
So now we should have the following:
Our WordPress development site:
/Sites/wordpress-core
Our plugin:
/Sites/wordpress-core/wp-content/plugins/my-plugin
And a copy of wordpress-tests:
/src/wordpress-tests
Next we need to create a new database that will be used just for testing. I'll assume you know how to do this. For reference the database I'm using is called wordpress_tests.
Now we need to setup the configuration for wordpress-tests. Open the file /src/wordpress-tests/unittests-config-sample.php and save it as /src/wordpress-tests/unittests-config.php. Now update the config file you just saved (unittests-config.php):
<?php
/* Path to the WordPress codebase you'd like to test. Add a backslash in the end. */
define( 'ABSPATH', '/Sites/wordpress-core' );
define( 'DB_NAME', 'wordpress_tests' );
define( 'DB_USER', 'your_username' );
define( 'DB_PASSWORD', 'your_password' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8' );
define( 'DB_COLLATE', '' );
define( 'WPLANG', '' );
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_DISPLAY', true );
/* Cron tries to make an HTTP request to the blog, which always fails, because tests are run in CLI mode only */
define( 'DISABLE_WP_CRON', true );
$table_prefix = 'wp_';
The main thing to highlight in the config file is that we set ABSPATH to the location of our WordPress development install at /Sites/wordpress-core. Fill in the database details that you setup for testing.
Now remember that we need to set the $path variable in tests/bootstrap.php file. So open it up and update it to:
<?php
// Load WordPress test environment
// https://github.com/nb/wordpress-tests
//
// The path to wordpress-tests
$path = '/src/wordpress-tests/bootstrap.php';
if( file_exists( $path ) ) {
require_once $path;
} else {
exit( "Couldn't find path to wordpress-tests/bootstrap.php\n" );
}
Great, now our test environment is setup. We can start writing some tests. Create the following file /Sites/wordpress-core/wp-content/plugins/my-plugin/tests/MyPlugin/MyPluginTest.php and place the following code in it:
<?php
/**
* MyPlugin Tests
*/
class MyPluginTest extends WP_UnitTestCase {
public $plugin_slug = 'my-plugin';
public function setUp() {
parent::setUp();
$this->my_plugin = $GLOBALS['my_plugin'];
}
public function testAppendContent() {
$this->assertEquals( "<p>Hello WordPress Unit Tests</p>", $this->my_plugin->append_content(''), '->append_content() appends text' );
}
/**
* A contrived example using some WordPress functionality
*/
public function testPostTitle() {
// This will simulate running WordPress' main query.
// See wordpress-tests/lib/testcase.php
$this->go_to('http://example.org/?p=1');
// Now that the main query has run, we can do tests that are more functional in nature
/* @var $wp_query WP_Query */
global $wp_query;
$post = $wp_query->get_queried_object();
$this->assertEquals('Hello world!', $post->post_title );
}
}
The test checks that our plugin actually appends the string <p>Hello WordPress Unit Tests</p>. Theres also a contrived example that shows how to simulate running WordPress' main query so one is able to do functional tests.
Now from the my-plugin directory you can run PHPUnit:
cd /Sites/wordpress-core/wp-content/plugins/my-plugin
phpunit
Hopefully you see the green bar telling you that all your tests pass. Congratulations!
For reference here are the files in my-plugin now:
/Sites/wordpress-core/wp-content/plugins/my-plugin/my-plugin.php
/Sites/wordpress-core/wp-content/plugins/my-plugin/phpunit.xml
/Sites/wordpress-core/wp-content/plugins/my-plugin/tests/bootstrap.php
/Sites/wordpress-core/wp-content/plugins/my-plugin/tests/MyPlugin/MyPluginTest.php