PHP Class Cascade\Tests\Config\Loader\ClassLoader\HandlerLoaderTest

Author: Raphael Antonmattei ([email protected])
Inheritance: extends PHPUnit_Framework_TestCase
Show file Open project: theorchard/monolog-cascade

Public Methods

Method Description
handlerParamsProvider ( ) : array Data provider for testHandlers !\ Important note: Just add values to this array if you need to test a newly added handler
testHandlerForProcessor ( ) Test extra option processor handler
testHandlerLoader ( )
testHandlerLoaderWithInvalidFormatter ( )
testHandlerLoaderWithInvalidHandler ( )
testHandlerLoaderWithInvalidHandlers ( )
testHandlerLoaderWithInvalidProcessor ( )
testHandlerLoaderWithNoOptions ( )
testHandlers ( string $class, string $optionName, mixed $optionValue, string $calledMethodName ) Test the extra option handlers
testHandlersExist ( ) Test that handlers exist
testReplacesHandlerNamesInOptionsArrayWithLoadedCallable ( )

Private Methods

Method Description
doTestMethodCalledInHandler ( string $class, string $methodName, mixed $methodArg, Closure $closure ) Tests that calling the given Closure will trigger a method call with the given param in the given class
getHandler ( string $class, string $optionName ) : Closure Check if the handler exists for a given class and option Also checks that it a callable and return it

Method Details

handlerParamsProvider() public method

If one of your handlers calls more than one method you can add more than one entries
public handlerParamsProvider ( ) : array
return array of array of args for testHandlers

testHandlerForProcessor() public method

Test extra option processor handler

testHandlerLoader() public method

public testHandlerLoader ( )

testHandlerLoaderWithInvalidFormatter() public method

testHandlerLoaderWithInvalidHandler() public method

testHandlerLoaderWithInvalidHandlers() public method

testHandlerLoaderWithInvalidProcessor() public method

testHandlerLoaderWithNoOptions() public method

testHandlers() public method

Test the extra option handlers
public testHandlers ( string $class, string $optionName, mixed $optionValue, string $calledMethodName )
$class string Class name
$optionName string Option name
$optionValue mixed Option value
$calledMethodName string Expected called method name

testHandlersExist() public method

Test that handlers exist
public testHandlersExist ( )

testReplacesHandlerNamesInOptionsArrayWithLoadedCallable() public method