woocommerce/tests/bootstrap.php

123 lines
3.2 KiB
PHP
Raw Normal View History

2014-09-01 06:03:52 +00:00
<?php
/**
* WooCommerce Unit Tests Bootstrap
*
* @since 2.2
*/
class WC_Unit_Tests_Bootstrap {
/** @var \WC_Unit_Tests_Bootstrap instance */
protected static $instance = null;
/** @var string directory where wordpress-tests-lib is installed */
public $wp_tests_dir;
2014-09-01 06:03:52 +00:00
/** @var string testing directory */
public $tests_dir;
2014-09-01 06:03:52 +00:00
/** @var string plugin directory */
public $plugin_dir;
2014-09-01 06:03:52 +00:00
/**
* Setup the unit testing environment
*
* @since 2.2
*/
public function __construct() {
ini_set( 'display_errors','on' );
error_reporting( E_ALL );
$this->tests_dir = dirname( __FILE__ );
$this->plugin_dir = dirname( $this->tests_dir );
$this->wp_tests_dir = getenv( 'WP_TESTS_DIR' ) ? getenv( 'WP_TESTS_DIR' ) : $this->plugin_dir . '/tmp/wordpress-tests-lib';
// load test function so tests_add_filter() is available
require_once( $this->wp_tests_dir . '/includes/functions.php' );
2014-09-01 06:03:52 +00:00
// load WC
tests_add_filter( 'muplugins_loaded', array( $this, 'load_wc' ) );
2014-09-01 06:03:52 +00:00
// install WC
tests_add_filter( 'setup_theme', array( $this, 'install_wc' ) );
2014-09-01 06:03:52 +00:00
// load the WP testing environment
require_once( $this->wp_tests_dir . '/includes/bootstrap.php' );
// load WC testing framework
2014-09-01 06:03:52 +00:00
$this->includes();
}
/**
* Load WooCommerce
*
* @since 2.2
*/
public function load_wc() {
require_once( $this->plugin_dir . '/woocommerce.php' );
}
2014-09-01 06:03:52 +00:00
/**
* Install WooCommerce after the test environment and WC have been loaded
2014-09-01 06:03:52 +00:00
*
* @since 2.2
*/
public function install_wc() {
// clean existing install first
define( 'WP_UNINSTALL_PLUGIN', true );
include( $this->plugin_dir . '/uninstall.php' );
2014-09-01 06:03:52 +00:00
$installer = include( $this->plugin_dir . '/includes/class-wc-install.php' );
$installer->install();
// reload capabilities after install, see https://core.trac.wordpress.org/ticket/28374
$GLOBALS['wp_roles']->reinit();
2014-09-01 06:03:52 +00:00
echo "Installing WooCommerce..." . PHP_EOL;
}
2014-09-01 06:03:52 +00:00
/**
* Load WC-specific test cases and factories
*
* @since 2.2
*/
public function includes() {
2014-09-05 18:34:51 +00:00
// factories
require_once( $this->tests_dir . '/framework/factories/class-wc-unit-test-factory-for-webhook.php' );
require_once( $this->tests_dir . '/framework/factories/class-wc-unit-test-factory-for-webhook-delivery.php' );
// framework
require_once( $this->tests_dir . '/framework/class-wc-unit-test-factory.php' );
2014-09-05 06:35:53 +00:00
require_once( $this->tests_dir . '/framework/class-wc-mock-session-handler.php' );
2014-09-05 18:34:51 +00:00
// test cases
2014-09-01 06:03:52 +00:00
require_once( $this->tests_dir . '/framework/class-wc-unit-test-case.php' );
require_once( $this->tests_dir . '/framework/class-wc-api-unit-test-case.php' );
// Helpers
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-product.php' );
2014-10-28 10:51:46 +00:00
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-coupon.php' );
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-fee.php' );
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-shipping.php' );
2014-09-01 06:03:52 +00:00
}
/**
* Get the single class instance
*
* @since 2.2
* @return WC_Unit_Tests_Bootstrap
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
}
WC_Unit_Tests_Bootstrap::instance();