class LoggerChannelTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Logger/LoggerChannelTest.php \Drupal\Tests\Core\Logger\LoggerChannelTest
@coversDefaultClass \Drupal\Core\Logger\LoggerChannel @group Logger
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Logger\LoggerChannelTest
Expanded class hierarchy of LoggerChannelTest
File
- core/
tests/ Drupal/ Tests/ Core/ Logger/ LoggerChannelTest.php, line 20 - Contains \Drupal\Tests\Core\Logger\LoggerChannelTest.
Namespace
Drupal\Tests\Core\LoggerView source
class LoggerChannelTest extends UnitTestCase {
/**
* Tests LoggerChannel::log().
*
* @param callable $expected
* An anonymous function to use with $this->callback() of the logger mock.
* The function should check the $context array for expected values.
* @param \Symfony\Component\HttpFoundation\Request $request
* Will be passed to the channel under test if present.
* @param \Drupal\Core\Session\AccountInterface $current_user
* Will be passed to the channel under test if present.
*
* @dataProvider providerTestLog
* @covers ::log
* @covers ::setCurrentUser
* @covers ::setRequestStack
*/
public function testLog(callable $expected, Request $request = NULL, AccountInterface $current_user = NULL) {
$channel = new LoggerChannel('test');
$message = $this
->randomMachineName();
$logger = $this
->getMock('Psr\\Log\\LoggerInterface');
$logger
->expects($this
->once())
->method('log')
->with($this
->anything(), $message, $this
->callback($expected));
$channel
->addLogger($logger);
if ($request) {
$requestStack = new RequestStack();
$requestStack
->push($request);
$channel
->setRequestStack($requestStack);
}
if ($current_user) {
$channel
->setCurrentUser($current_user);
}
$channel
->log(rand(0, 7), $message);
}
/**
* Tests LoggerChannel::addLoggers().
*
* @covers ::addLogger
* @covers ::sortLoggers
*/
public function testSortLoggers() {
$channel = new LoggerChannel($this
->randomMachineName());
$index_order = '';
for ($i = 0; $i < 4; $i++) {
$logger = $this
->getMock('Psr\\Log\\LoggerInterface');
$logger
->expects($this
->once())
->method('log')
->will($this
->returnCallback(function () use ($i, &$index_order) {
// Append the $i to the index order, so that we know the order that
// loggers got called with.
$index_order .= $i;
}));
$channel
->addLogger($logger, $i);
}
$channel
->log(rand(0, 7), $this
->randomMachineName());
// Ensure that the logger added in the end fired first.
$this
->assertEquals($index_order, '3210');
}
/**
* Data provider for self::testLog().
*/
public function providerTestLog() {
$account_mock = $this
->getMock('Drupal\\Core\\Session\\AccountInterface');
$account_mock
->expects($this
->exactly(2))
->method('id')
->will($this
->returnValue(1));
$request_mock = $this
->getMock('Symfony\\Component\\HttpFoundation\\Request');
$request_mock
->expects($this
->exactly(2))
->method('getClientIp')
->will($this
->returnValue('127.0.0.1'));
$request_mock->headers = $this
->getMock('Symfony\\Component\\HttpFoundation\\ParameterBag');
// No request or account.
$cases[] = array(
function ($context) {
return $context['channel'] == 'test' && empty($context['uid']) && empty($context['ip']);
},
);
// With account but not request. Since the request is not available the
// current user should not be used.
$cases[] = array(
function ($context) {
return $context['uid'] === 0 && empty($context['ip']);
},
NULL,
$account_mock,
);
// With request but not account.
$cases[] = array(
function ($context) {
return $context['ip'] === '127.0.0.1' && empty($context['uid']);
},
$request_mock,
);
// Both request and account.
$cases[] = array(
function ($context) {
return $context['ip'] === '127.0.0.1' && $context['uid'] === 1;
},
$request_mock,
$account_mock,
);
return $cases;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LoggerChannelTest:: |
public | function | Data provider for self::testLog(). | |
LoggerChannelTest:: |
public | function | Tests LoggerChannel::log(). | |
LoggerChannelTest:: |
public | function | Tests LoggerChannel::addLoggers(). | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |