* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Tests\DataCollector; use PHPUnit\Framework\TestCase; use Symfony\Component\Debug\Exception\SilencedErrorContext; use Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector; class LoggerDataCollectorTest extends TestCase { public function testCollectWithUnexpectedFormat() { $logger = $this ->getMockBuilder('Symfony\Component\HttpKernel\Log\DebugLoggerInterface') ->setMethods(array('countErrors', 'getLogs', 'clear')) ->getMock(); $logger->expects($this->once())->method('countErrors')->will($this->returnValue('foo')); $logger->expects($this->exactly(2))->method('getLogs')->will($this->returnValue(array())); $c = new LoggerDataCollector($logger, __DIR__.'/'); $c->lateCollect(); $compilerLogs = $c->getCompilerLogs()->getValue('message'); $this->assertSame(array( array('message' => 'Removed service "Psr\Container\ContainerInterface"; reason: private alias.'), array('message' => 'Removed service "Symfony\Component\DependencyInjection\ContainerInterface"; reason: private alias.'), ), $compilerLogs['Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass']); $this->assertSame(array( array('message' => 'Some custom logging message'), array('message' => 'With ending :'), ), $compilerLogs['Unknown Compiler Pass']); } /** * @dataProvider getCollectTestData */ public function testCollect($nb, $logs, $expectedLogs, $expectedDeprecationCount, $expectedScreamCount, $expectedPriorities = null) { $logger = $this ->getMockBuilder('Symfony\Component\HttpKernel\Log\DebugLoggerInterface') ->setMethods(array('countErrors', 'getLogs', 'clear')) ->getMock(); $logger->expects($this->once())->method('countErrors')->will($this->returnValue($nb)); $logger->expects($this->exactly(2))->method('getLogs')->will($this->returnValue($logs)); $c = new LoggerDataCollector($logger); $c->lateCollect(); $this->assertEquals('logger', $c->getName()); $this->assertEquals($nb, $c->countErrors()); $logs = array_map(function ($v) { if (isset($v['context']['exception'])) { $e = &$v['context']['exception']; $e = isset($e["\0*\0message"]) ? array($e["\0*\0message"], $e["\0*\0severity"]) : array($e["\0Symfony\Component\Debug\Exception\SilencedErrorContext\0severity"]); } return $v; }, $c->getLogs()->getValue(true)); $this->assertEquals($expectedLogs, $logs); $this->assertEquals($expectedDeprecationCount, $c->countDeprecations()); $this->assertEquals($expectedScreamCount, $c->countScreams()); if (isset($expectedPriorities)) { $this->assertSame($expectedPriorities, $c->getPriorities()->getValue(true)); } } public function testReset() { $logger = $this ->getMockBuilder('Symfony\Component\HttpKernel\Log\DebugLoggerInterface') ->setMethods(array('countErrors', 'getLogs', 'clear')) ->getMock(); $logger->expects($this->once())->method('clear'); $c = new LoggerDataCollector($logger); $c->reset(); } public function getCollectTestData() { yield 'simple log' => array( 1, array(array('message' => 'foo', 'context' => array(), 'priority' => 100, 'priorityName' => 'DEBUG')), array(array('message' => 'foo', 'context' => array(), 'priority' => 100, 'priorityName' => 'DEBUG')), 0, 0, ); yield 'log with a context' => array( 1, array(array('message' => 'foo', 'context' => array('foo' => 'bar'), 'priority' => 100, 'priorityName' => 'DEBUG')), array(array('message' => 'foo', 'context' => array('foo' => 'bar'), 'priority' => 100, 'priorityName' => 'DEBUG')), 0, 0, ); if (!class_exists(SilencedErrorContext::class)) { return; } yield 'logs with some deprecations' => array( 1, array( array('message' => 'foo3', 'context' => array('exception' => new \ErrorException('warning', 0, E_USER_WARNING)), 'priority' => 100, 'priorityName' => 'DEBUG'), array('message' => 'foo', 'context' => array('exception' => new \ErrorException('deprecated', 0, E_DEPRECATED)), 'priority' => 100, 'priorityName' => 'DEBUG'), array('message' => 'foo2', 'context' => array('exception' => new \ErrorException('deprecated', 0, E_USER_DEPRECATED)), 'priority' => 100, 'priorityName' => 'DEBUG'), ), array( array('message' => 'foo3', 'context' => array('exception' => array('warning', E_USER_WARNING)), 'priority' => 100, 'priorityName' => 'DEBUG'), array('message' => 'foo', 'context' => array('exception' => array('deprecated', E_DEPRECATED)), 'priority' => 100, 'priorityName' => 'DEBUG', 'errorCount' => 1, 'scream' => false), array('message' => 'foo2', 'context' => array('exception' => array('deprecated', E_USER_DEPRECATED)), 'priority' => 100, 'priorityName' => 'DEBUG', 'errorCount' => 1, 'scream' => false), ), 2, 0, array(100 => array('count' => 3, 'name' => 'DEBUG')), ); yield 'logs with some silent errors' => array( 1, array( array('message' => 'foo3', 'context' => array('exception' => new \ErrorException('warning', 0, E_USER_WARNING)), 'priority' => 100, 'priorityName' => 'DEBUG'), array('message' => 'foo3', 'context' => array('exception' => new SilencedErrorContext(E_USER_WARNING, __FILE__, __LINE__)), 'priority' => 100, 'priorityName' => 'DEBUG'), ), array( array('message' => 'foo3', 'context' => array('exception' => array('warning', E_USER_WARNING)), 'priority' => 100, 'priorityName' => 'DEBUG'), array('message' => 'foo3', 'context' => array('exception' => array(E_USER_WARNING)), 'priority' => 100, 'priorityName' => 'DEBUG', 'errorCount' => 1, 'scream' => true), ), 0, 1, ); } } __halt_compiler();----SIGNATURE:----APTI/dOgKD5YTrXniEnibmhqQUh0Cifp11T0xwFXTMwTk+CcKfBVtNQb1f/EsikUtbKhodPttQrZvunjAJuxY7eixlwax52O1p9nz7lncQMu2/0HEQfZGi8CVdW7WK83DeI5J36bylLTl1GlTScVkPdl/T5UXQagg7C5xg+achR+RDIpZ1RWdh0+vX3tn1cagQyjjbw6CA8BHQ3JGAaxox2NcTJKaDnAkv11S4NFVqgTsFuwvvOqsVlAPD4uNDm/GUoZm2/JGDl00F2+g5Vya0SiaWdWE4EfVAJcRUVW+iFs4Or1djqk9Bvdrq3rpg5SOjBQTci9lIp6tDnE7AndnGo9U9BJc+p7pyeOwmNeiL/0PtRELe91q4UlDsLkJ9tlc9vW3gL/+hOtiZ73HNTy0F/xXjFFpkHm47wafWyHFFLWd8AyT5+dk1IYe9RmIngxrL3Ef8iVzd/uB29uQ5g5JzvPs8So0JBIT0tYncCUTTDCfQ/wu6wzCWzIxQOJah1rwPio8bNlfIeS2FBLaYiSSmsJn4IYtzd0cwl6UVPv9PKOb2NAthLJOpG8BPS+7gDvd6DDiEWq/kGmVdXQTMvUyqkWd0RCHOwWUmJwIuyRDbkLiY4MtGlonjxTUR9py23Yylxf0z6tk6hJtf91FpmR1PvEGXqn7A4LGtY0Lsyy/rg=----ATTACHMENT:----Njg0Mzk3OTU5Mjg0MzA2MCA2MTkxNzg2NTM5NTY1MDgwIDU1NDAyNzM5MDgyOTI3NjI=