2012-02-20 00:21:53 +01:00
|
|
|
<?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\Formatter;
|
|
|
|
|
|
|
|
use Monolog\Logger;
|
|
|
|
|
2012-02-20 17:33:29 +01:00
|
|
|
class ChromePHPFormatterTest extends \PHPUnit_Framework_TestCase
|
2012-02-20 00:21:53 +01:00
|
|
|
{
|
|
|
|
/**
|
2012-02-20 17:33:29 +01:00
|
|
|
* @covers Monolog\Formatter\ChromePHPFormatter::format
|
2012-02-20 00:21:53 +01:00
|
|
|
*/
|
|
|
|
public function testDefaultFormat()
|
|
|
|
{
|
2012-02-20 17:33:29 +01:00
|
|
|
$formatter = new ChromePHPFormatter();
|
2012-02-20 00:21:53 +01:00
|
|
|
$record = array(
|
|
|
|
'level' => Logger::ERROR,
|
|
|
|
'level_name' => 'ERROR',
|
|
|
|
'channel' => 'meh',
|
|
|
|
'context' => array('from' => 'logger'),
|
|
|
|
'datetime' => new \DateTime("@0"),
|
|
|
|
'extra' => array('ip' => '127.0.0.1'),
|
|
|
|
'message' => 'log',
|
|
|
|
);
|
|
|
|
|
|
|
|
$message = $formatter->format($record);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
|
|
|
'meh',
|
|
|
|
array(
|
|
|
|
'message' => 'log',
|
|
|
|
'context' => array('from' => 'logger'),
|
|
|
|
'extra' => array('ip' => '127.0.0.1'),
|
|
|
|
),
|
|
|
|
'unknown',
|
|
|
|
'error'
|
|
|
|
),
|
|
|
|
$message
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-20 17:33:29 +01:00
|
|
|
* @covers Monolog\Formatter\ChromePHPFormatter::format
|
2012-02-20 00:21:53 +01:00
|
|
|
*/
|
|
|
|
public function testFormatWithFileAndLine()
|
|
|
|
{
|
2012-02-20 17:33:29 +01:00
|
|
|
$formatter = new ChromePHPFormatter();
|
2012-02-20 00:21:53 +01:00
|
|
|
$record = array(
|
|
|
|
'level' => Logger::CRITICAL,
|
|
|
|
'level_name' => 'CRITICAL',
|
|
|
|
'channel' => 'meh',
|
|
|
|
'context' => array('from' => 'logger'),
|
|
|
|
'datetime' => new \DateTime("@0"),
|
|
|
|
'extra' => array('ip' => '127.0.0.1', 'file' => 'test', 'line' => 14),
|
|
|
|
'message' => 'log',
|
|
|
|
);
|
|
|
|
|
|
|
|
$message = $formatter->format($record);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
|
|
|
'meh',
|
|
|
|
array(
|
|
|
|
'message' => 'log',
|
|
|
|
'context' => array('from' => 'logger'),
|
|
|
|
'extra' => array('ip' => '127.0.0.1'),
|
|
|
|
),
|
|
|
|
'test : 14',
|
|
|
|
'error'
|
|
|
|
),
|
|
|
|
$message
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-20 17:33:29 +01:00
|
|
|
* @covers Monolog\Formatter\ChromePHPFormatter::format
|
2012-02-20 00:21:53 +01:00
|
|
|
*/
|
|
|
|
public function testFormatWithoutContext()
|
|
|
|
{
|
2012-02-20 17:33:29 +01:00
|
|
|
$formatter = new ChromePHPFormatter();
|
2012-02-20 00:21:53 +01:00
|
|
|
$record = array(
|
|
|
|
'level' => Logger::DEBUG,
|
|
|
|
'level_name' => 'DEBUG',
|
|
|
|
'channel' => 'meh',
|
|
|
|
'context' => array(),
|
|
|
|
'datetime' => new \DateTime("@0"),
|
|
|
|
'extra' => array(),
|
|
|
|
'message' => 'log',
|
|
|
|
);
|
|
|
|
|
|
|
|
$message = $formatter->format($record);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
|
|
|
'meh',
|
|
|
|
'log',
|
|
|
|
'unknown',
|
|
|
|
'log'
|
|
|
|
),
|
|
|
|
$message
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-20 17:33:29 +01:00
|
|
|
* @covers Monolog\Formatter\ChromePHPFormatter::formatBatch
|
2012-02-20 00:21:53 +01:00
|
|
|
*/
|
|
|
|
public function testBatchFormatThrowException()
|
|
|
|
{
|
2012-02-20 17:33:29 +01:00
|
|
|
$formatter = new ChromePHPFormatter();
|
2012-02-20 00:21:53 +01:00
|
|
|
$records = array(
|
|
|
|
array(
|
|
|
|
'level' => Logger::INFO,
|
|
|
|
'level_name' => 'INFO',
|
|
|
|
'channel' => 'meh',
|
|
|
|
'context' => array(),
|
|
|
|
'datetime' => new \DateTime("@0"),
|
|
|
|
'extra' => array(),
|
|
|
|
'message' => 'log',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'level' => Logger::WARNING,
|
|
|
|
'level_name' => 'WARNING',
|
|
|
|
'channel' => 'foo',
|
|
|
|
'context' => array(),
|
|
|
|
'datetime' => new \DateTime("@0"),
|
|
|
|
'extra' => array(),
|
|
|
|
'message' => 'log2',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
|
|
|
array(
|
|
|
|
'meh',
|
|
|
|
'log',
|
|
|
|
'unknown',
|
|
|
|
'info'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'foo',
|
|
|
|
'log2',
|
|
|
|
'unknown',
|
|
|
|
'warn'
|
|
|
|
),
|
|
|
|
),
|
|
|
|
$formatter->formatBatch($records)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|