woocommerce/tests/legacy/framework/class-wc-unit-test-case.php

154 lines
4.2 KiB
PHP
Raw Normal View History

2014-09-01 06:04:02 +00:00
<?php
/**
* Base test case for all WooCommerce tests.
*
* @package WooCommerce\Tests
*/
use Automattic\WooCommerce\Testing\Tools\CodeHacking\CodeHacker;
/**
* WC Unit Test Case.
2014-09-01 06:04:02 +00:00
*
* Provides WooCommerce-specific setup/tear down/assert methods, custom factories,
2015-11-03 13:31:20 +00:00
* and helper functions.
2014-09-01 06:04:02 +00:00
*
* @since 2.2
*/
class WC_Unit_Test_Case extends WP_HTTP_TestCase {
2014-09-01 06:04:02 +00:00
/**
* Holds the WC_Unit_Test_Factory instance.
*
* @var WC_Unit_Test_Factory
*/
2014-09-01 06:04:02 +00:00
protected $factory;
/**
* @var int Keeps the count of how many times disable_code_hacker has been invoked.
*/
private static $code_hacker_temporary_disables_requested = 0;
/**
* Increase the count of Code Hacker disable requests, and effectively disable it if the count was zero.
* Does nothing if the code hacker wasn't enabled when the test suite started running.
*/
protected static function disable_code_hacker() {
if ( CodeHacker::is_enabled() ) {
CodeHacker::disable();
self::$code_hacker_temporary_disables_requested = 1;
} elseif ( self::$code_hacker_temporary_disables_requested > 0 ) {
self::$code_hacker_temporary_disables_requested++;
}
}
/**
* Decrease the count of Code Hacker disable requests, and effectively re-enable it if the count reaches zero.
* Does nothing if the count is already zero.
*/
protected static function reenable_code_hacker() {
if ( self::$code_hacker_temporary_disables_requested > 0 ) {
self::$code_hacker_temporary_disables_requested--;
if ( 0 === self::$code_hacker_temporary_disables_requested ) {
CodeHacker::enable();
}
}
}
2014-09-01 06:04:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Setup test case.
2014-09-01 06:04:02 +00:00
*
* @since 2.2
*/
public function setUp() {
parent::setUp();
// Add custom factories.
2014-09-01 06:04:02 +00:00
$this->factory = new WC_Unit_Test_Factory();
2014-09-05 06:35:53 +00:00
// Setup mock WC session handler.
2014-09-05 06:35:53 +00:00
add_filter( 'woocommerce_session_handler', array( $this, 'set_mock_session_handler' ) );
$this->setOutputCallback( array( $this, 'filter_output' ) );
// Register post types before each test.
WC_Post_types::register_post_types();
WC_Post_types::register_taxonomies();
2014-09-05 06:35:53 +00:00
}
/**
* Set up class unit test.
*
* @since 3.5.0
*/
public static function setUpBeforeClass() {
parent::setUpBeforeClass();
// Terms are deleted in WP_UnitTestCase::tearDownAfterClass, then e.g. Uncategorized product_cat is missing.
WC_Install::create_terms();
}
2014-09-05 06:35:53 +00:00
/**
2015-11-03 13:31:20 +00:00
* Mock the WC session using the abstract class as cookies are not available.
* during tests.
2014-09-05 06:35:53 +00:00
*
2015-02-04 16:22:52 +00:00
* @since 2.2
* @return string The $output string, sans newlines and tabs.
2014-09-05 06:35:53 +00:00
*/
public function set_mock_session_handler() {
return 'WC_Mock_Session_Handler';
}
2014-09-05 06:36:46 +00:00
/**
2015-11-03 13:31:20 +00:00
* Strip newlines and tabs when using expectedOutputString() as otherwise.
* the most template-related tests will fail due to indentation/alignment in.
* the template not matching the sample strings set in the tests.
2014-09-05 06:36:46 +00:00
*
* @since 2.2
*
* @param string $output The captured output.
* @return string The $output string, sans newlines and tabs.
2014-09-05 06:36:46 +00:00
*/
public function filter_output( $output ) {
$output = preg_replace( '/[\n]+/S', '', $output );
$output = preg_replace( '/[\t]+/S', '', $output );
return $output;
2014-09-01 06:04:02 +00:00
}
/**
* Throws an exception with an optional message and code.
*
* Note: can't use `throwException` as that's reserved.
*
* @since 3.3-dev
* @param string $message Optional. The exception message. Default is empty.
* @param int $code Optional. The exception code. Default is empty.
* @throws Exception Containing the given message and code.
*/
public function throwAnException( $message = null, $code = null ) {
$message = $message ? $message : "We're all doomed!";
throw new Exception( $message, $code );
}
/**
* Copies a file, temporarily disabling the code hacker.
* Use this instead of "copy" in tests for compatibility with the code hacker.
*
* TODO: Investigate why invoking "copy" within a test with the code hacker active causes the test to fail.
*
* @param string $source Path to the source file.
* @param string $dest The destination path.
* @return bool true on success or false on failure.
*/
public static function file_copy( $source, $dest ) {
self::disable_code_hacker();
$result = copy( $source, $dest );
self::reenable_code_hacker();
return $result;
}
2014-09-01 06:04:02 +00:00
}