| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- <?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;
- use Monolog\Test\TestCase;
- use Monolog\Level;
- /**
- * @covers Monolog\Formatter\NormalizerFormatter
- */
- class NormalizerFormatterTest extends TestCase
- {
- public function testFormat()
- {
- $formatter = new NormalizerFormatter('Y-m-d');
- $formatted = $formatter->format($this->getRecord(
- Level::Error,
- 'foo',
- channel: 'meh',
- extra: ['foo' => new TestFooNorm, 'bar' => new TestBarNorm, 'baz' => [], 'res' => fopen('php://memory', 'rb')],
- context: [
- 'foo' => 'bar',
- 'baz' => 'qux',
- 'inf' => INF,
- '-inf' => -INF,
- 'nan' => acos(4),
- ],
- ));
- $this->assertEquals([
- 'level_name' => Level::Error->getName(),
- 'level' => Level::Error->value,
- 'channel' => 'meh',
- 'message' => 'foo',
- 'datetime' => date('Y-m-d'),
- 'extra' => [
- 'foo' => ['Monolog\\Formatter\\TestFooNorm' => ["foo" => "fooValue"]],
- 'bar' => ['Monolog\\Formatter\\TestBarNorm' => 'bar'],
- 'baz' => [],
- 'res' => '[resource(stream)]',
- ],
- 'context' => [
- 'foo' => 'bar',
- 'baz' => 'qux',
- 'inf' => 'INF',
- '-inf' => '-INF',
- 'nan' => 'NaN',
- ],
- ], $formatted);
- }
- public function testFormatExceptions()
- {
- $formatter = new NormalizerFormatter('Y-m-d');
- $e = new \LogicException('bar');
- $e2 = new \RuntimeException('foo', 0, $e);
- $formatted = $formatter->normalizeValue([
- 'exception' => $e2,
- ]);
- $this->assertGreaterThan(5, \count($formatted['exception']['trace']));
- $this->assertTrue(isset($formatted['exception']['previous']));
- unset($formatted['exception']['trace'], $formatted['exception']['previous']);
- $this->assertEquals([
- 'exception' => [
- 'class' => \get_class($e2),
- 'message' => $e2->getMessage(),
- 'code' => $e2->getCode(),
- 'file' => $e2->getFile().':'.$e2->getLine(),
- ],
- ], $formatted);
- }
- public function testFormatExceptionWithBasePath(): void
- {
- $formatter = new NormalizerFormatter('Y-m-d');
- $formatter->setBasePath(\dirname(\dirname(\dirname(__DIR__))));
- $e = new \LogicException('bar');
- $formatted = $formatter->normalizeValue([
- 'exception' => $e,
- ]);
- self::assertSame('tests/Monolog/Formatter/NormalizerFormatterTest.php:' . (__LINE__ - 5), $formatted['exception']['file']);
- self::assertStringStartsWith('vendor/phpunit/phpunit/src/Framework/TestCase.php:', $formatted['exception']['trace'][0]);
- self::assertStringStartsWith('vendor/phpunit/phpunit/src/Framework/TestCase.php:', $formatted['exception']['trace'][1]);
- }
- public function testFormatSoapFaultException()
- {
- if (!class_exists('SoapFault')) {
- $this->markTestSkipped('Requires the soap extension');
- }
- $formatter = new NormalizerFormatter('Y-m-d');
- $e = new \SoapFault('foo', 'bar', 'hello', 'world');
- $formatted = $formatter->normalizeValue([
- 'exception' => $e,
- ]);
- unset($formatted['exception']['trace']);
- $this->assertEquals([
- 'exception' => [
- 'class' => 'SoapFault',
- 'message' => 'bar',
- 'code' => 0,
- 'file' => $e->getFile().':'.$e->getLine(),
- 'faultcode' => 'foo',
- 'faultactor' => 'hello',
- 'detail' => 'world',
- ],
- ], $formatted);
- $formatter = new NormalizerFormatter('Y-m-d');
- $e = new \SoapFault('foo', 'bar', 'hello', (object) ['bar' => (object) ['biz' => 'baz'], 'foo' => 'world']);
- $formatted = $formatter->normalizeValue([
- 'exception' => $e,
- ]);
- unset($formatted['exception']['trace']);
- $this->assertEquals([
- 'exception' => [
- 'class' => 'SoapFault',
- 'message' => 'bar',
- 'code' => 0,
- 'file' => $e->getFile().':'.$e->getLine(),
- 'faultcode' => 'foo',
- 'faultactor' => 'hello',
- 'detail' => '{"bar":{"biz":"baz"},"foo":"world"}',
- ],
- ], $formatted);
- }
- public function testFormatToStringExceptionHandle()
- {
- $formatter = new NormalizerFormatter('Y-m-d');
- $formatted = $formatter->format($this->getRecord(context: [
- 'myObject' => new TestToStringError(),
- ]));
- $this->assertEquals(
- [
- 'level_name' => Level::Warning->getName(),
- 'level' => Level::Warning->value,
- 'channel' => 'test',
- 'message' => 'test',
- 'context' => [
- 'myObject' => [
- TestToStringError::class => [],
- ],
- ],
- 'datetime' => date('Y-m-d'),
- 'extra' => [],
- ],
- $formatted
- );
- }
- public function testBatchFormat()
- {
- $formatter = new NormalizerFormatter('Y-m-d');
- $formatted = $formatter->formatBatch([
- $this->getRecord(Level::Critical, 'bar', channel: 'test'),
- $this->getRecord(Level::Warning, 'foo', channel: 'log'),
- ]);
- $this->assertEquals([
- [
- 'level_name' => Level::Critical->getName(),
- 'level' => Level::Critical->value,
- 'channel' => 'test',
- 'message' => 'bar',
- 'context' => [],
- 'datetime' => date('Y-m-d'),
- 'extra' => [],
- ],
- [
- 'level_name' => Level::Warning->getName(),
- 'level' => Level::Warning->value,
- 'channel' => 'log',
- 'message' => 'foo',
- 'context' => [],
- 'datetime' => date('Y-m-d'),
- 'extra' => [],
- ],
- ], $formatted);
- }
- /**
- * Test issue #137
- */
- public function testIgnoresRecursiveObjectReferences()
- {
- // set up the recursion
- $foo = new \stdClass();
- $bar = new \stdClass();
- $foo->bar = $bar;
- $bar->foo = $foo;
- // set an error handler to assert that the error is not raised anymore
- $that = $this;
- set_error_handler(function ($level, $message, $file, $line, $context) use ($that) {
- if (error_reporting() & $level) {
- restore_error_handler();
- $that->fail("$message should not be raised");
- }
- return true;
- });
- $formatter = new NormalizerFormatter();
- $reflMethod = new \ReflectionMethod($formatter, 'toJson');
- $res = $reflMethod->invoke($formatter, [$foo, $bar], true);
- restore_error_handler();
- $this->assertEquals('[{"bar":{"foo":null}},{"foo":{"bar":null}}]', $res);
- }
- public function testCanNormalizeReferences()
- {
- $formatter = new NormalizerFormatter();
- $x = ['foo' => 'bar'];
- $y = ['x' => &$x];
- $x['y'] = &$y;
- $formatter->normalizeValue($y);
- }
- public function testToJsonIgnoresInvalidTypes()
- {
- // set up the invalid data
- $resource = fopen(__FILE__, 'r');
- // set an error handler to assert that the error is not raised anymore
- $that = $this;
- set_error_handler(function ($level, $message, $file, $line, $context) use ($that) {
- if (error_reporting() & $level) {
- restore_error_handler();
- $that->fail("$message should not be raised");
- }
- return true;
- });
- $formatter = new NormalizerFormatter();
- $reflMethod = new \ReflectionMethod($formatter, 'toJson');
- $res = $reflMethod->invoke($formatter, [$resource], true);
- restore_error_handler();
- $this->assertEquals('[null]', $res);
- }
- public function testNormalizeHandleLargeArraysWithExactly1000Items()
- {
- $formatter = new NormalizerFormatter();
- $largeArray = range(1, 1000);
- $res = $formatter->format($this->getRecord(
- Level::Critical,
- 'bar',
- channel: 'test',
- context: [$largeArray],
- ));
- $this->assertCount(1000, $res['context'][0]);
- $this->assertArrayNotHasKey('...', $res['context'][0]);
- }
- public function testNormalizeHandleLargeArrays()
- {
- $formatter = new NormalizerFormatter();
- $largeArray = range(1, 2000);
- $res = $formatter->format($this->getRecord(
- Level::Critical,
- 'bar',
- channel: 'test',
- context: [$largeArray],
- ));
- $this->assertCount(1001, $res['context'][0]);
- $this->assertEquals('Over 1000 items (2000 total), aborting normalization', $res['context'][0]['...']);
- }
- public function testIgnoresInvalidEncoding()
- {
- $formatter = new NormalizerFormatter();
- $reflMethod = new \ReflectionMethod($formatter, 'toJson');
- // send an invalid unicode sequence as a object that can't be cleaned
- $record = new \stdClass;
- $record->message = "\xB1\x31";
- $this->assertsame('{"message":"�1"}', $reflMethod->invoke($formatter, $record));
- }
- public function testConvertsInvalidEncodingAsLatin9()
- {
- $formatter = new NormalizerFormatter();
- $reflMethod = new \ReflectionMethod($formatter, 'toJson');
- $res = $reflMethod->invoke($formatter, ['message' => "\xA4\xA6\xA8\xB4\xB8\xBC\xBD\xBE"]);
- $this->assertSame('{"message":"��������"}', $res);
- }
- public function testMaxNormalizeDepth()
- {
- $formatter = new NormalizerFormatter();
- $formatter->setMaxNormalizeDepth(1);
- $throwable = new \Error('Foo');
- $message = $this->formatRecordWithExceptionInContext($formatter, $throwable);
- $this->assertEquals(
- 'Over 1 levels deep, aborting normalization',
- $message['context']['exception']
- );
- }
- public function testMaxNormalizeItemCountWith0ItemsMax()
- {
- $formatter = new NormalizerFormatter();
- $formatter->setMaxNormalizeDepth(9);
- $formatter->setMaxNormalizeItemCount(0);
- $throwable = new \Error('Foo');
- $message = $this->formatRecordWithExceptionInContext($formatter, $throwable);
- $this->assertEquals(
- ["..." => "Over 0 items (7 total), aborting normalization"],
- $message
- );
- }
- public function testMaxNormalizeItemCountWith2ItemsMax()
- {
- $formatter = new NormalizerFormatter();
- $formatter->setMaxNormalizeDepth(9);
- $formatter->setMaxNormalizeItemCount(2);
- $throwable = new \Error('Foo');
- $message = $this->formatRecordWithExceptionInContext($formatter, $throwable);
- unset($message['context']['exception']['trace']);
- unset($message['context']['exception']['file']);
- $this->assertEquals(
- [
- "message" => "foobar",
- "context" => ['exception' => [
- 'class' => 'Error',
- 'message' => 'Foo',
- 'code' => 0,
- ]],
- "..." => "Over 2 items (7 total), aborting normalization",
- ],
- $message
- );
- }
- public function testExceptionTraceWithArgs()
- {
- try {
- // This will contain $resource and $wrappedResource as arguments in the trace item
- $resource = fopen('php://memory', 'rw+');
- fwrite($resource, 'test_resource');
- $wrappedResource = new TestFooNorm;
- $wrappedResource->foo = $resource;
- // Just do something stupid with a resource/wrapped resource as argument
- $arr = [$wrappedResource, $resource];
- // modifying the array inside throws a "usort(): Array was modified by the user comparison function"
- usort($arr, function ($a, $b) {
- throw new \ErrorException('Foo');
- });
- } catch (\Throwable $e) {
- }
- $formatter = new NormalizerFormatter();
- $record = $this->getRecord(context: ['exception' => $e]);
- $result = $formatter->format($record);
- // See https://github.com/php/php-src/issues/8810 fixed in PHP 8.2
- $offset = PHP_VERSION_ID >= 80200 ? 13 : 11;
- $this->assertSame(
- __FILE__.':'.(__LINE__ - $offset),
- $result['context']['exception']['trace'][0]
- );
- }
- private function formatRecordWithExceptionInContext(NormalizerFormatter $formatter, \Throwable $exception): array
- {
- $message = $formatter->format($this->getRecord(
- Level::Critical,
- 'foobar',
- channel: 'core',
- context: ['exception' => $exception],
- ));
- return $message;
- }
- public function testExceptionTraceDoesNotLeakCallUserFuncArgs()
- {
- try {
- $arg = new TestInfoLeak;
- \call_user_func([$this, 'throwHelper'], $arg, $dt = new \DateTime());
- } catch (\Exception $e) {
- }
- $formatter = new NormalizerFormatter();
- $record = $this->getRecord(context: ['exception' => $e]);
- $result = $formatter->format($record);
- $this->assertSame(
- __FILE__ .':'.(__LINE__-9),
- $result['context']['exception']['trace'][0]
- );
- }
- public function testCanNormalizeIncompleteObject(): void
- {
- $serialized = "O:17:\"Monolog\TestClass\":1:{s:23:\"\x00Monolog\TestClass\x00name\";s:4:\"test\";}";
- $object = unserialize($serialized);
- $formatter = new NormalizerFormatter();
- $record = $this->getRecord(context: ['object' => $object]);
- $result = $formatter->format($record);
- $this->assertEquals([
- '__PHP_Incomplete_Class' => 'Monolog\\TestClass',
- ], $result['context']['object']);
- }
- private function throwHelper($arg)
- {
- throw new \RuntimeException('Thrown');
- }
- }
- class TestFooNorm
- {
- public $foo = 'fooValue';
- }
- class TestBarNorm
- {
- public function __toString()
- {
- return 'bar';
- }
- }
- class TestStreamFoo
- {
- public $foo;
- public $resource;
- public function __construct($resource)
- {
- $this->resource = $resource;
- $this->foo = 'BAR';
- }
- public function __toString()
- {
- fseek($this->resource, 0);
- return $this->foo . ' - ' . (string) stream_get_contents($this->resource);
- }
- }
- class TestToStringError
- {
- public function __toString()
- {
- throw new \RuntimeException('Could not convert to string');
- }
- }
- class TestInfoLeak
- {
- public function __toString()
- {
- return 'Sensitive information';
- }
- }
|