mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-04 12:17:35 +02:00
When one use Monolog in a long process like an AMQP worker with a `FingersCrossedHandler` or `BufferHandler` there is a drawback: as soon as there is an AMQP message that generate a log >= error (for example), all next AMQP messages will output logs, even if theses messages don't generate log where level >= error. In the same context there is a drawback for processor that add an UUID to the logs. The UUID should change for each AMQP messages. --- This patch address this issue with a new interface: `ResettableInterface` interface. Side note: `reset()`, `flush()`, `clear()`, are already used in Monolog. So basically, one can use the `reset()` on the `Logger` and on some `Handler`s / `Processor`s. It's especially useful for * the `FingersCrossedHandler`: it `close()` the buffer, then it `clear()` the buffer. * the `BufferHandler`: it `flush()` the buffer, then it `clear()` the buffer. * the `UidProcessor`: it renew the `uid`.
97 lines
2.9 KiB
PHP
97 lines
2.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Monolog package.
|
|
*
|
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Monolog\Handler;
|
|
|
|
use Monolog\TestCase;
|
|
use Monolog\Logger;
|
|
|
|
/**
|
|
* @covers Monolog\Handler\FirePHPHandler
|
|
*/
|
|
class FirePHPHandlerTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
TestFirePHPHandler::resetStatic();
|
|
$_SERVER['HTTP_USER_AGENT'] = 'Monolog Test; FirePHP/1.0';
|
|
}
|
|
|
|
public function testHeaders()
|
|
{
|
|
$handler = new TestFirePHPHandler;
|
|
$handler->setFormatter($this->getIdentityFormatter());
|
|
$handler->handle($this->getRecord(Logger::DEBUG));
|
|
$handler->handle($this->getRecord(Logger::WARNING));
|
|
|
|
$expected = array(
|
|
'X-Wf-Protocol-1' => 'http://meta.wildfirehq.org/Protocol/JsonStream/0.2',
|
|
'X-Wf-1-Structure-1' => 'http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1',
|
|
'X-Wf-1-Plugin-1' => 'http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3',
|
|
'X-Wf-1-1-1-1' => 'test',
|
|
'X-Wf-1-1-1-2' => 'test',
|
|
);
|
|
|
|
$this->assertEquals($expected, $handler->getHeaders());
|
|
}
|
|
|
|
public function testConcurrentHandlers()
|
|
{
|
|
$handler = new TestFirePHPHandler;
|
|
$handler->setFormatter($this->getIdentityFormatter());
|
|
$handler->handle($this->getRecord(Logger::DEBUG));
|
|
$handler->handle($this->getRecord(Logger::WARNING));
|
|
|
|
$handler2 = new TestFirePHPHandler;
|
|
$handler2->setFormatter($this->getIdentityFormatter());
|
|
$handler2->handle($this->getRecord(Logger::DEBUG));
|
|
$handler2->handle($this->getRecord(Logger::WARNING));
|
|
|
|
$expected = array(
|
|
'X-Wf-Protocol-1' => 'http://meta.wildfirehq.org/Protocol/JsonStream/0.2',
|
|
'X-Wf-1-Structure-1' => 'http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1',
|
|
'X-Wf-1-Plugin-1' => 'http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3',
|
|
'X-Wf-1-1-1-1' => 'test',
|
|
'X-Wf-1-1-1-2' => 'test',
|
|
);
|
|
|
|
$expected2 = array(
|
|
'X-Wf-1-1-1-3' => 'test',
|
|
'X-Wf-1-1-1-4' => 'test',
|
|
);
|
|
|
|
$this->assertEquals($expected, $handler->getHeaders());
|
|
$this->assertEquals($expected2, $handler2->getHeaders());
|
|
}
|
|
}
|
|
|
|
class TestFirePHPHandler extends FirePHPHandler
|
|
{
|
|
protected $headers = array();
|
|
|
|
public static function resetStatic()
|
|
{
|
|
self::$initialized = false;
|
|
self::$sendHeaders = true;
|
|
self::$messageIndex = 1;
|
|
}
|
|
|
|
protected function sendHeader($header, $content)
|
|
{
|
|
$this->headers[$header] = $content;
|
|
}
|
|
|
|
public function getHeaders()
|
|
{
|
|
return $this->headers;
|
|
}
|
|
}
|