|
@@ -18,7 +18,7 @@ class WildfireFormatterTest extends \PHPUnit_Framework_TestCase
|
|
|
/**
|
|
/**
|
|
|
* @covers Monolog\Formatter\WildfireFormatter::format
|
|
* @covers Monolog\Formatter\WildfireFormatter::format
|
|
|
*/
|
|
*/
|
|
|
- public function testDefaultFormatIsLineFormatterWithoutNewLine()
|
|
|
|
|
|
|
+ public function testDefaultFormat()
|
|
|
{
|
|
{
|
|
|
$wildfire = new WildfireFormatter();
|
|
$wildfire = new WildfireFormatter();
|
|
|
$record = array(
|
|
$record = array(
|
|
@@ -39,4 +39,73 @@ class WildfireFormatterTest extends \PHPUnit_Framework_TestCase
|
|
|
$message
|
|
$message
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @covers Monolog\Formatter\WildfireFormatter::format
|
|
|
|
|
+ */
|
|
|
|
|
+ public function testFormatWithFileAndLine()
|
|
|
|
|
+ {
|
|
|
|
|
+ $wildfire = new WildfireFormatter();
|
|
|
|
|
+ $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', 'file' => 'test', 'line' => 14),
|
|
|
|
|
+ 'message' => 'log',
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ $message = $wildfire->format($record);
|
|
|
|
|
+
|
|
|
|
|
+ $this->assertEquals(
|
|
|
|
|
+ '129|[{"Type":"ERROR","File":"test","Line":14,"Label":"meh"},'
|
|
|
|
|
+ .'{"message":"log","context":{"from":"logger"},"extra":{"ip":"127.0.0.1"}}]|',
|
|
|
|
|
+ $message
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @covers Monolog\Formatter\WildfireFormatter::format
|
|
|
|
|
+ */
|
|
|
|
|
+ public function testFormatWithoutContext()
|
|
|
|
|
+ {
|
|
|
|
|
+ $wildfire = new WildfireFormatter();
|
|
|
|
|
+ $record = array(
|
|
|
|
|
+ 'level' => Logger::ERROR,
|
|
|
|
|
+ 'level_name' => 'ERROR',
|
|
|
|
|
+ 'channel' => 'meh',
|
|
|
|
|
+ 'context' => array(),
|
|
|
|
|
+ 'datetime' => new \DateTime("@0"),
|
|
|
|
|
+ 'extra' => array(),
|
|
|
|
|
+ 'message' => 'log',
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ $message = $wildfire->format($record);
|
|
|
|
|
+
|
|
|
|
|
+ $this->assertEquals(
|
|
|
|
|
+ '58|[{"Type":"ERROR","File":"","Line":"","Label":"meh"},"log"]|',
|
|
|
|
|
+ $message
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @covers Monolog\Formatter\WildfireFormatter::formatBatch
|
|
|
|
|
+ * @expectedException BadMethodCallException
|
|
|
|
|
+ */
|
|
|
|
|
+ public function testBatchFormatThrowException()
|
|
|
|
|
+ {
|
|
|
|
|
+ $wildfire = new WildfireFormatter();
|
|
|
|
|
+ $record = array(
|
|
|
|
|
+ 'level' => Logger::ERROR,
|
|
|
|
|
+ 'level_name' => 'ERROR',
|
|
|
|
|
+ 'channel' => 'meh',
|
|
|
|
|
+ 'context' => array(),
|
|
|
|
|
+ 'datetime' => new \DateTime("@0"),
|
|
|
|
|
+ 'extra' => array(),
|
|
|
|
|
+ 'message' => 'log',
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ $wildfire->formatBatch(array($record));
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|