Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking into unit testing a WordPress plugin for better code reliability.

I'm a little confused to how its all supposed to work however & was wondering if anyone else has made the jump into unit testing their plugins & could give a heads up any in-depth tutorials on the subject.

FYI I have looked at the following resources:

http://wordpress.tv/2011/08/20/nikolay-bachiyski-unit-testing-will-change-your-life/

https://github.com/mines/mockpress

http://codex.wordpress.org/Automated_Testing

Also checked out wordpress.stackxchange questions but no luck there.

Probably my biggest hurdle is how you'd test each of the methods in a class like this one http://pastebin.com/ybzyXuQE

Hope you can help

share|improve this question

closed as not constructive by Andrew Barber, Bill the Lizard Nov 24 '12 at 14:23

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 49 down vote accepted

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
share|improve this answer
First up, thanks for this guide - it's the only way I could have got started unit testing my plugin. I've now got my first test passing. However, for the second test I keep getting an "Undefined index" error for the reference to my plugin instance in $GLOBALS. Would you have any idea why this is? – aaronfalloon Apr 12 '12 at 22:38
4  
Got it! Turns out PHPUnit backs up all global variables so that each test can be run with clean versions of all globals. The global variables are serialized. However, some classes can't be serialized and are therefore not backed up. So after the first test is run, the backed up globals are used and since my class wasn't serialized, it was missing. The solution is to disable backing up globals. – aaronfalloon Apr 14 '12 at 22:47
Thank you for the walk through. I have created a sample theme that use PHPUnit (and wordpress-tests) for WordPress theme testing. Please see github.com/kayue/twentytest – kayue May 12 '12 at 2:23
Wish I could upvote more than once. Thanks a million! – rsman Sep 4 '12 at 14:32
1  
@aaronfalloon you could also use phpunit's SetUp and TearDown methods to instantiate local copies of your globals - that will be shared among tests – Bob Gregor Jan 14 at 4:14
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.