woocommerce/tests/bootstrap.php

134 lines
3.8 KiB
PHP
Raw Normal View History

2014-09-01 06:03:52 +00:00
<?php
/**
2015-11-03 13:53:50 +00:00
* WooCommerce Unit Tests Bootstrap
2014-09-01 06:03:52 +00:00
*
* @since 2.2
*/
class WC_Unit_Tests_Bootstrap {
/** @var WC_Unit_Tests_Bootstrap instance */
2014-09-01 06:03:52 +00:00
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
/**
2015-11-03 13:31:20 +00:00
* Setup the unit testing environment.
2014-09-01 06:03:52 +00:00
*
* @since 2.2
*/
public function __construct() {
ini_set( 'display_errors','on' );
error_reporting( E_ALL );
// Ensure server variable is set for WP email functions.
if ( ! isset( $_SERVER['SERVER_NAME'] ) ) {
$_SERVER['SERVER_NAME'] = 'localhost';
}
2014-09-01 06:03:52 +00:00
$this->tests_dir = dirname( __FILE__ );
$this->plugin_dir = dirname( $this->tests_dir );
$this->wp_tests_dir = getenv( 'WP_TESTS_DIR' ) ? getenv( 'WP_TESTS_DIR' ) : '/tmp/wordpress-tests-lib';
2014-09-01 06:03:52 +00:00
// 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();
}
/**
2015-11-03 13:31:20 +00:00
* Load WooCommerce.
*
* @since 2.2
*/
public function load_wc() {
require_once( $this->plugin_dir . '/woocommerce.php' );
}
2014-09-01 06:03:52 +00:00
/**
2015-11-03 13:31:20 +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 );
2016-01-08 14:53:24 +00:00
update_option( 'woocommerce_status_options', array( 'uninstall_data' => 1 ) );
include( $this->plugin_dir . '/uninstall.php' );
2014-09-01 06:03:52 +00:00
WC_Install::install();
2014-09-01 06:03:52 +00:00
// 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
/**
2015-11-03 13:31:20 +00:00
* Load WC-specific test cases and factories.
2014-09-01 06:03:52 +00:00
*
* @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' );
require_once( $this->tests_dir . '/framework/class-wc-mock-wc-data.php' );
require_once( $this->tests_dir . '/framework/class-wc-payment-token-stub.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' );
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-customer.php' );
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-order.php' );
2016-01-08 13:56:01 +00:00
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-shipping-zones.php' );
require_once( $this->tests_dir . '/framework/helpers/class-wc-helper-payment-token.php' );
2014-09-01 06:03:52 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get the single class instance.
2014-09-01 06:03:52 +00:00
*
* @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();