woocommerce/tests/unit-tests/log/logger.php

325 lines
8.3 KiB
PHP
Raw Normal View History

2015-04-08 15:55:19 +00:00
<?php
/**
* Class WC_Tests_Logger
* @package WooCommerce\Tests\Log
2015-04-08 15:55:19 +00:00
* @since 2.3
*/
class WC_Tests_Logger extends WC_Unit_Test_Case {
2015-04-08 15:55:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Test add().
2015-04-08 15:55:19 +00:00
*
* @since 2.4
*/
public function test_add() {
$time = time();
$handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
->setMethods( array( 'handle' ) )
->getMock();
$handler
->expects( $this->once() )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'notice' ),
$this->equalTo( 'this is a message' ),
2016-12-21 19:15:19 +00:00
$this->equalTo( array( 'source' => 'unit-tests', '_legacy' => true ) )
);
$log = new WC_Logger( array( $handler ), 'debug' );
2015-04-08 15:55:19 +00:00
$log->add( 'unit-tests', 'this is a message' );
}
/**
2015-11-03 13:31:20 +00:00
* Test clear().
2015-04-08 15:55:19 +00:00
*
* @since 2.4
*/
public function test_clear() {
$file = wc_get_log_file_path( 'unit-tests' );
file_put_contents( $file, 'Test file content.' );
$log = new WC_Logger();
$log->clear( 'unit-tests' );
$this->assertEquals( '', file_get_contents( $file ) );
$this->setExpectedDeprecated( 'WC_Logger::clear' );
}
/**
* Test log() complains for bad levels.
2016-11-26 12:11:14 +00:00
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*/
public function test_bad_level() {
$log = new WC_Logger( null, 'debug' );
$log->log( 'this-is-an-invalid-level', '' );
$this->setExpectedIncorrectUsage( 'WC_Logger::log' );
}
/**
* Test log().
2016-11-26 12:11:14 +00:00
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*/
public function test_log() {
$handler = $this->create_mock_handler();
$log = new WC_Logger( array( $handler ), 'debug' );
$log->log( 'debug', 'debug message' );
$log->log( 'info', 'info message' );
$log->log( 'notice', 'notice message' );
$log->log( 'warning', 'warning message' );
$log->log( 'error', 'error message' );
$log->log( 'critical', 'critical message' );
$log->log( 'alert', 'alert message' );
$log->log( 'emergency', 'emergency message' );
}
/**
* Test logs passed to all handlers.
2016-11-26 12:11:14 +00:00
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*/
2016-12-11 12:55:22 +00:00
public function test_log_handlers() {
$false_handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
2016-12-11 12:55:22 +00:00
->setMethods( array( 'handle' ) )
->getMock();
$false_handler->expects( $this->exactly( 8 ) )->method( 'handle' )->will( $this->returnValue( false ) );
2016-12-11 12:55:22 +00:00
$true_handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
2016-12-11 12:55:22 +00:00
->setMethods( array( 'handle' ) )
->getMock();
$false_handler->expects( $this->exactly( 8 ) )->method( 'handle' )->will( $this->returnValue( true ) );
$final_handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
2016-12-11 12:55:22 +00:00
->setMethods( array( 'handle' ) )
->getMock();
$final_handler->expects( $this->exactly( 8 ) )->method( 'handle' );
$log = new WC_Logger( array( $false_handler, $true_handler, $final_handler ), 'debug' );
$log->debug( 'debug' );
$log->info( 'info' );
$log->notice( 'notice' );
$log->warning( 'warning' );
$log->error( 'error' );
$log->critical( 'critical' );
$log->alert( 'alert' );
$log->emergency( 'emergency' );
}
/**
* Test WC_Logger->[debug..emergency] methods
2016-11-26 12:11:14 +00:00
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*/
public function test_level_methods() {
$handler = $this->create_mock_handler();
$log = new WC_Logger( array( $handler ), 'debug' );
$log->debug( 'debug message' );
$log->info( 'info message' );
$log->notice( 'notice message' );
$log->warning( 'warning message' );
$log->error( 'error message' );
$log->critical( 'critical message' );
$log->alert( 'alert message' );
$log->emergency( 'emergency message' );
2015-04-08 15:55:19 +00:00
}
/**
2016-12-11 12:55:22 +00:00
* Test 'woocommerce_register_log_handlers' filter.
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
2016-12-11 12:55:22 +00:00
*/
public function test_woocommerce_register_log_handlers_filter() {
add_filter( 'woocommerce_register_log_handlers', array( $this, 'return_assertion_handlers' ) );
$log = new WC_Logger( null, 'debug' );
$log->debug( 'debug' );
$log->info( 'info' );
$log->notice( 'notice' );
$log->warning( 'warning' );
$log->error( 'error' );
$log->critical( 'critical' );
$log->alert( 'alert' );
$log->emergency( 'emergency' );
remove_filter( 'woocommerce_register_log_handlers', array( $this, 'return_assertion_handlers' ) );
}
/**
* Test no filtering by default
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*/
public function test_threshold_defaults() {
$time = time();
// Test no filtering by default
delete_option( 'woocommerce_log_threshold' );
$handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
->setMethods( array( 'handle' ) )
->getMock();
$handler
->expects( $this->at( 0 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'bad-level' ),
$this->equalTo( 'bad-level message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 1 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'debug' ),
$this->equalTo( 'debug message' ),
$this->equalTo( array() )
);
$log = new WC_Logger( array( $handler ) );
// An invalid level has the minimum severity, but should not be filtered.
$log->log( 'bad-level', 'bad-level message' );
// Bad level also complains.
$this->setExpectedIncorrectUsage( 'WC_Logger::log' );
// Debug is lowest recognized level
$log->debug( 'debug message' );
}
/**
* Test that the logger validates handlers
*
* If a handler does not implement WC_Log_Handler_Interface, WC_Logger should complain
* (wc_doing_it_wrong) and not register the handler. This handler should receive no messages.
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*/
public function test_validate_handler_interface() {
$handler = $this
->getMockBuilder( 'stdClass' )
->setMethods( array( 'handle' ) )
->getMock();
$handler->expects( $this->never() )->method( 'handle' );
new WC_Logger( array( $handler ) );
$this->setExpectedIncorrectUsage( 'WC_Logger::__construct' );
}
2016-12-11 12:55:22 +00:00
/**
* Helper for 'woocommerce_register_log_handlers' filter test.
*
2016-12-11 12:55:22 +00:00
* Returns an array of 1 mocked handler.
* The handler expects to receive exactly 8 messages (1 for each level).
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
2016-11-26 12:11:14 +00:00
*
2016-12-11 12:55:22 +00:00
* @return WC_Log_Handler[] array of mocked handlers.
*/
public function return_assertion_handlers() {
2016-12-11 12:55:22 +00:00
$handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
->setMethods( array( 'handle' ) )
->getMock();
2016-12-11 12:55:22 +00:00
$handler->expects( $this->exactly( 8 ) )->method( 'handle' );
2016-12-11 12:55:22 +00:00
return array( $handler );
}
/**
* Mock handler that expects sequential calls to each level.
*
* Calls should have the message '[level] message'
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
*
* @return WC_Log_Handler mock object
*/
public function create_mock_handler() {
$time = time();
$handler = $this
->getMockBuilder( 'WC_Log_Handler_Interface' )
->setMethods( array( 'handle' ) )
->getMock();
$handler
->expects( $this->at( 0 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'debug' ),
$this->equalTo( 'debug message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 1 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'info' ),
$this->equalTo( 'info message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 2 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'notice' ),
$this->equalTo( 'notice message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 3 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'warning' ),
$this->equalTo( 'warning message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 4 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'error' ),
$this->equalTo( 'error message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 5 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'critical' ),
$this->equalTo( 'critical message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 6 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'alert' ),
$this->equalTo( 'alert message' ),
$this->equalTo( array() )
);
$handler
->expects( $this->at( 7 ) )
->method( 'handle' )
->with(
$this->greaterThanOrEqual( $time ),
$this->equalTo( 'emergency' ),
$this->equalTo( 'emergency message' ),
$this->equalTo( array() )
);
return $handler;
}
2015-04-08 15:55:19 +00:00
}