Skip to main content
Version: 1.x

Installation Manager

Introduction

The Installation Manager is a class used to install WordPress for testing. It supports installing WordPress in a temporary directory and rsync-ing your project to live within it for testing.

Mantle aims to remove the need to install any external dependencies such as core testing suites, WordPress VIP MU plugins, or other testing tools. The Installation Manager should be capable of handling all of that and letting you focus on writing tests. The only thing you should need to do to test your plugin/theme/site is run composer phpunit.

Overriding the Default Installation

By default, Mantle will install WordPress to a temporary directory. This will default to /tmp/wordpress or another temporary directory if that isn't available. The default installation will also make some assumptions about the default configuration of WordPress, such as the database name, username, and password.

The following are the default values and the environmental variables that can be used to override them:

Variable/SettingDefault ValueEnvironmental Variable Name
Installation Path/tmp/wordpressWP_CORE_DIR
DB_NAMEwordpress_unit_testsWP_DB_NAME
DB_USERrootWP_DB_USER
DB_PASSWORDrootWP_DB_PASSWORD
DB_HOSTlocalhostWP_DB_HOST
WordPress VersionlatestWP_VERSION
Skip Database CreationfalseWP_SKIP_DB_CREATE
PHPUnit Pathvendor/bin/phpunitWP_PHPUNIT_PATH

Mantle uses getenv() to retrieve the environmental variables and will fallback to the default values if the environmental variable isn't set.

Rsync-ing

The Installation Manager can manage the entire rsync process without you needing to manually execute a shell script before running your unit tests.

Rsync-ing a wp-content/-rooted Project

If you're working on a project that is rooted in the wp-content/ directory (a WordPress VIP site for example), you can use the maybe_rsync() to rsync the entire project over to a working WordPress installation.

\Mantle\Testing\manager()
->maybe_rsync()
->install();

Your project will then be rsynced to the wp-content/ directory within the WordPress installation.

Rsync-ing a Plugin

Plugins can be rsync'd to live within a WordPress installation by using the maybe_rsync_plugin(). Within your tests/bootstrap.php file, you can use the following code:

\Mantle\Testing\manager()
->maybe_rsync_plugin()
->install();

By default, the Installation Manager will set the default name of your plugin. If you'd like to customize it, you can pass the name to the maybe_rsync_plugin() method:

\Mantle\Testing\manager()
->maybe_rsync_plugin( 'my-plugin-name' )
->install();

The installation manager will place the plugin in the wp-content/plugins/<my-plugin-name> directory within the WordPress installation.

note

Plugins normally don't need to be rsync'd. Mantle will automatically install WordPress if not found and use the installation without rsyncing the plugin.

Rsync-ing a Theme

Themes can be rsynced to live within a WordPress installation by using the maybe_rsync_theme(). Within your tests/bootstrap.php file, you can use the following code:

Mantle\Testing\manager()
->maybe_rsync_theme()
->install();

By default, the Installation Manager will set the default name of the theme. If you'd like to customize it, you can pass the name to the maybe_rsync_theme() method:

Mantle\Testing\manager()
->maybe_rsync_theme( 'my-theme-name' )
->install();

The installation manager will place the theme in the wp-content/themes/<my-theme-name> directory within the WordPress installation.

Including WordPress VIP MU Plugins

Mantle can automatically install the built-version of WordPress VIP's MU Plugins to your testing installation.

Mantle\Testing\manager()
->maybe_rsync_wp_content()
->with_vip_mu_plugins()
->install();

If your project does include a mu-plugins folder, it will be ignored and will not be rsync'd to the testing installation.

You can also set the MANTLE_INSTALL_VIP_MU_PLUGINS environmental variable to true to automatically include the WordPress VIP MU Plugins in your testing installation.

Including Memcache Object Cache Drop-In

If your project uses the Memcache Object Cache Drop-In, you can include it in your testing installation for parity with your production environment.

Mantle\Testing\manager()
->maybe_rsync_wp_content()
->with_object_cache()
->install();

You can also set the MANTLE_INSTALL_OBJECT_CACHE environmental variable to true to automatically include the Memcache Object Cache Drop-In in your testing installation.

note

If your testing environment does not include the Memcache extension, the Memcache Object Cache Drop-In will not be installed to prevent a fatal error. If you want to force the installation of the Memcache Object Cache Drop-In, you set the MANTLE_REQUIRE_OBJECT_CACHE environmental variable to true.

Using SQLite for the Database

Mantle can automatically configure WordPress to use SQLite for the database instead of MySQL for testing. This can be a big leap in performance for your average project. This is powered by the db.php drop-in. To enable SQLite, you can use the with_sqlite() method:

\Mantle\Testing\manager()
->with_sqlite()
->install();

You can also set the MANTLE_USE_SQLITE environmental variable to true to use SQLite for testing by default.

By default, Mantle will use MySQL for the database. SQLite will work well for most use-cases but there are some limitations. For example, if you're creating database tables or performing complex SQL queries, you may run into issues and are better off not using SQLite.

Excluding Files from Rsync

If you'd like to exclude files from being rsync'd to the testing installation, you can use the exclusions() method. This method accepts an array of files that will be passed to rsync and be excluded from the rsync process.

\Mantle\Testing\manager()
->exclusions( [
'vendor/',
'node_modules/',
] )
->install();

Modifying the WordPress Installation

The Installation Manager supports fluent methods for modifying the WordPress installation before/after the installation process. It also has helpers to aid in the setup process for projects to make it easier to get testing.

Registering a Before Callback

Before callbacks are registered using the before() method. The callback will be executed before the WordPress installation is started.

\Mantle\Testing\manager()
->before( function() {
// Do something before the installation.
} )
->install();

Registering an After Callback

After callbacks are registered using the after() method. The callback will be executed after the WordPress installation is finished.

\Mantle\Testing\manager()
->after( function() {
// Do something after the installation.
} )
->install();

Registering a Loaded Callback

Loaded callbacks are registered using the loaded() method. The callback will be executed after the WordPress installation is finished and during the muplugins_loaded WordPress hook.

\Mantle\Testing\manager()
->loaded( function() {
// Do something after the installation such as loading
// your plugin's main file.
} )
->install();

Registering a init Callback

Callbacks can be registered to run during the init WordPress hook using the init() method.

\Mantle\Testing\manager()
->init( function() {
// Do something during the init hook.
} )
->install();

Changing the Active Theme

The active theme can be changed using the theme() method. The method accepts the theme name and will switch to the active theme on the muplugins_loaded hook:

\Mantle\Testing\manager()
->theme( 'my-theme-name' )
->install();

Changing the Active Plugins

The active plugins can be changed using the plugins() method. The method accepts an array of plugin file paths (mirrors the active_plugins option) and will switch to the active plugins on the muplugins_loaded hook:

\Mantle\Testing\manager()
->plugins( [
'my-plugin/my-plugin.php',
'my-other-plugin/my-other-plugin.php',
] )
->install();

Performing the Installation

The installation process can be started by calling the install() method on the Installation Manager.

\Mantle\Testing\manager()->install();

// Or, if you're using the helper function.
\Mantle\Testing\install();

About the Installation Script

The Installation Manager uses a installation script located in the mantle-ci repository. The script provides a fast way of installing WordPress for testing purposes. It also supports caching the installation between runs to speed up the process. For more information, see the documentation in the script.