mirror of
https://github.com/Seldaek/monolog.git
synced 2025-02-24 06:52:34 +01:00
88 lines
2.9 KiB
PHP
88 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;
|
|
|
|
class FirePHPHandlerTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
TestFirePHPHandler::reset();
|
|
}
|
|
|
|
public function testHeaders()
|
|
{
|
|
$handler = new TestFirePHPHandler;
|
|
$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' => '64|[{"Type":"LOG","File":"","Line":"","Label":"test"},"test [] []"]|',
|
|
'X-Wf-1-1-1-2' => '65|[{"Type":"WARN","File":"","Line":"","Label":"test"},"test [] []"]|',
|
|
);
|
|
|
|
$this->assertEquals($expected, $handler->getHeaders());
|
|
}
|
|
|
|
public function testConcurrentHandlers()
|
|
{
|
|
$handler = new TestFirePHPHandler;
|
|
$handler->handle($this->getRecord(Logger::DEBUG));
|
|
$handler->handle($this->getRecord(Logger::WARNING));
|
|
|
|
$handler2 = new TestFirePHPHandler;
|
|
$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' => '64|[{"Type":"LOG","File":"","Line":"","Label":"test"},"test [] []"]|',
|
|
'X-Wf-1-1-1-2' => '65|[{"Type":"WARN","File":"","Line":"","Label":"test"},"test [] []"]|',
|
|
);
|
|
|
|
$expected2 = array(
|
|
'X-Wf-1-1-1-3' => '64|[{"Type":"LOG","File":"","Line":"","Label":"test"},"test [] []"]|',
|
|
'X-Wf-1-1-1-4' => '65|[{"Type":"WARN","File":"","Line":"","Label":"test"},"test [] []"]|',
|
|
);
|
|
|
|
$this->assertEquals($expected, $handler->getHeaders());
|
|
$this->assertEquals($expected2, $handler2->getHeaders());
|
|
}
|
|
}
|
|
|
|
class TestFirePHPHandler extends FirePHPHandler
|
|
{
|
|
protected $headers = array();
|
|
|
|
public static function reset()
|
|
{
|
|
self::$initialized = false;
|
|
self::$messageIndex = 1;
|
|
}
|
|
|
|
protected function sendHeader($header, $content)
|
|
{
|
|
$this->headers[$header] = $content;
|
|
}
|
|
|
|
public function getHeaders()
|
|
{
|
|
return $this->headers;
|
|
}
|
|
} |