| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <?php declare(strict_types=1);
- /*
- * 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;
- /**
- * @covers Monolog\Formatter\LineFormatter
- */
- class LineFormatterTest extends \PHPUnit\Framework\TestCase
- {
- public function testDefFormatWithString()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'WARNING',
- 'channel' => 'log',
- 'context' => [],
- 'message' => 'foo',
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- ]);
- $this->assertEquals('['.date('Y-m-d').'] log.WARNING: foo [] []'."\n", $message);
- }
- public function testDefFormatWithArrayContext()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'ERROR',
- 'channel' => 'meh',
- 'message' => 'foo',
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'context' => [
- 'foo' => 'bar',
- 'baz' => 'qux',
- 'bool' => false,
- 'null' => null,
- ],
- ]);
- $this->assertEquals('['.date('Y-m-d').'] meh.ERROR: foo {"foo":"bar","baz":"qux","bool":false,"null":null} []'."\n", $message);
- }
- public function testDefFormatExtras()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'ERROR',
- 'channel' => 'meh',
- 'context' => [],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => ['ip' => '127.0.0.1'],
- 'message' => 'log',
- ]);
- $this->assertEquals('['.date('Y-m-d').'] meh.ERROR: log [] {"ip":"127.0.0.1"}'."\n", $message);
- }
- public function testFormatExtras()
- {
- $formatter = new LineFormatter("[%datetime%] %channel%.%level_name%: %message% %context% %extra.file% %extra%\n", 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'ERROR',
- 'channel' => 'meh',
- 'context' => [],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => ['ip' => '127.0.0.1', 'file' => 'test'],
- 'message' => 'log',
- ]);
- $this->assertEquals('['.date('Y-m-d').'] meh.ERROR: log [] test {"ip":"127.0.0.1"}'."\n", $message);
- }
- public function testContextAndExtraOptionallyNotShownIfEmpty()
- {
- $formatter = new LineFormatter(null, 'Y-m-d', false, true);
- $message = $formatter->format([
- 'level_name' => 'ERROR',
- 'channel' => 'meh',
- 'context' => [],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'log',
- ]);
- $this->assertEquals('['.date('Y-m-d').'] meh.ERROR: log '."\n", $message);
- }
- public function testContextAndExtraReplacement()
- {
- $formatter = new LineFormatter('%context.foo% => %extra.foo%');
- $message = $formatter->format([
- 'level_name' => 'ERROR',
- 'channel' => 'meh',
- 'context' => ['foo' => 'bar'],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => ['foo' => 'xbar'],
- 'message' => 'log',
- ]);
- $this->assertEquals('bar => xbar', $message);
- }
- public function testDefFormatWithObject()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'ERROR',
- 'channel' => 'meh',
- 'context' => [],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => ['foo' => new TestFoo, 'bar' => new TestBar, 'baz' => [], 'res' => fopen('php://memory', 'rb')],
- 'message' => 'foobar',
- ]);
- $this->assertEquals('['.date('Y-m-d').'] meh.ERROR: foobar [] {"foo":{"Monolog\\\\Formatter\\\\TestFoo":{"foo":"fooValue"}},"bar":{"Monolog\\\\Formatter\\\\TestBar":"bar"},"baz":[],"res":"[resource(stream)]"}'."\n", $message);
- }
- public function testDefFormatWithException()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \RuntimeException('Foo')],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $path = str_replace('\\/', '/', json_encode(__FILE__));
- $this->assertEquals('['.date('Y-m-d').'] core.CRITICAL: foobar {"exception":"[object] (RuntimeException(code: 0): Foo at '.substr($path, 1, -1).':'.(__LINE__ - 8).')"} []'."\n", $message);
- }
- public function testDefFormatWithExceptionAndStacktrace()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $formatter->includeStacktraces();
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \RuntimeException('Foo')],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $path = str_replace('\\/', '/', json_encode(__FILE__));
- $this->assertRegexp('{^\['.date('Y-m-d').'] core\.CRITICAL: foobar \{"exception":"\[object] \(RuntimeException\(code: 0\): Foo at '.preg_quote(substr($path, 1, -1)).':'.(__LINE__ - 8).'\)\n\[stacktrace]\n#0}', $message);
- }
- public function testDefFormatWithExceptionAndStacktraceParserFull()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $formatter->includeStacktraces(true, function ($line) {
- return $line;
- });
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \RuntimeException('Foo')],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $trace = explode('[stacktrace]', $message, 2)[1];
- $this->assertStringContainsString('TestCase.php', $trace);
- $this->assertStringContainsString('TestResult.php', $trace);
- }
- public function testDefFormatWithExceptionAndStacktraceParserCustom()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $formatter->includeStacktraces(true, function ($line) {
- if (strpos($line, 'TestCase.php') === false) {
- return $line;
- }
- });
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \RuntimeException('Foo')],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $trace = explode('[stacktrace]', $message, 2)[1];
- $this->assertStringNotContainsString('TestCase.php', $trace);
- $this->assertStringContainsString('TestResult.php', $trace);
- }
- public function testDefFormatWithExceptionAndStacktraceParserEmpty()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $formatter->includeStacktraces(true, function ($line) {
- return null;
- });
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \RuntimeException('Foo')],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $trace = explode('[stacktrace]', $message, 2)[1];
- $this->assertStringNotContainsString('#', $trace);
- }
- public function testDefFormatWithPreviousException()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $previous = new \LogicException('Wut?');
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \RuntimeException('Foo', 0, $previous)],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $path = str_replace('\\/', '/', json_encode(__FILE__));
- $this->assertEquals('['.date('Y-m-d').'] core.CRITICAL: foobar {"exception":"[object] (RuntimeException(code: 0): Foo at '.substr($path, 1, -1).':'.(__LINE__ - 8).')\n[previous exception] [object] (LogicException(code: 0): Wut? at '.substr($path, 1, -1).':'.(__LINE__ - 12).')"} []'."\n", $message);
- }
- public function testDefFormatWithSoapFaultException()
- {
- if (!class_exists('SoapFault')) {
- $this->markTestSkipped('Requires the soap extension');
- }
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \SoapFault('foo', 'bar', 'hello', 'world')],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $path = str_replace('\\/', '/', json_encode(__FILE__));
- $this->assertEquals('['.date('Y-m-d').'] core.CRITICAL: foobar {"exception":"[object] (SoapFault(code: 0 faultcode: foo faultactor: hello detail: world): bar at '.substr($path, 1, -1).':'.(__LINE__ - 8).')"} []'."\n", $message);
- $message = $formatter->format([
- 'level_name' => 'CRITICAL',
- 'channel' => 'core',
- 'context' => ['exception' => new \SoapFault('foo', 'bar', 'hello', (object) ['bar' => (object) ['biz' => 'baz'], 'foo' => 'world'])],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- 'message' => 'foobar',
- ]);
- $path = str_replace('\\/', '/', json_encode(__FILE__));
- $this->assertEquals('['.date('Y-m-d').'] core.CRITICAL: foobar {"exception":"[object] (SoapFault(code: 0 faultcode: foo faultactor: hello detail: {\"bar\":{\"biz\":\"baz\"},\"foo\":\"world\"}): bar at '.substr($path, 1, -1).':'.(__LINE__ - 8).')"} []'."\n", $message);
- }
- public function testBatchFormat()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->formatBatch([
- [
- 'level_name' => 'CRITICAL',
- 'channel' => 'test',
- 'message' => 'bar',
- 'context' => [],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- ],
- [
- 'level_name' => 'WARNING',
- 'channel' => 'log',
- 'message' => 'foo',
- 'context' => [],
- 'datetime' => new \DateTimeImmutable,
- 'extra' => [],
- ],
- ]);
- $this->assertEquals('['.date('Y-m-d').'] test.CRITICAL: bar [] []'."\n".'['.date('Y-m-d').'] log.WARNING: foo [] []'."\n", $message);
- }
- public function testFormatShouldStripInlineLineBreaks()
- {
- $formatter = new LineFormatter(null, 'Y-m-d');
- $message = $formatter->format(
- [
- 'message' => "foo\nbar",
- 'context' => [],
- 'extra' => [],
- ]
- );
- $this->assertRegExp('/foo bar/', $message);
- }
- public function testFormatShouldNotStripInlineLineBreaksWhenFlagIsSet()
- {
- $formatter = new LineFormatter(null, 'Y-m-d', true);
- $message = $formatter->format(
- [
- 'message' => "foo\nbar",
- 'context' => [],
- 'extra' => [],
- ]
- );
- $this->assertRegExp('/foo\nbar/', $message);
- }
- }
- class TestFoo
- {
- public $foo = 'fooValue';
- }
- class TestBar
- {
- public function __toString()
- {
- return 'bar';
- }
- }
|