2017-09-19 18:30:42 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-10-31 14:23:23 +01:00
|
|
|
namespace Engelsystem\Test\Feature\Logger;
|
2017-09-19 18:30:42 +02:00
|
|
|
|
2020-02-29 20:53:25 +01:00
|
|
|
use Engelsystem\Logger\Logger;
|
2018-08-31 01:55:05 +02:00
|
|
|
use Engelsystem\Models\LogEntry;
|
2018-01-19 23:19:50 +01:00
|
|
|
use Engelsystem\Test\Feature\ApplicationFeatureTest;
|
2020-04-19 20:41:38 +02:00
|
|
|
use Exception;
|
2017-09-19 18:30:42 +02:00
|
|
|
use Psr\Log\InvalidArgumentException;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Psr\Log\LogLevel;
|
2019-04-24 10:45:00 +02:00
|
|
|
use stdClass;
|
2017-09-19 18:30:42 +02:00
|
|
|
|
2020-02-29 20:53:25 +01:00
|
|
|
class LoggerTest extends ApplicationFeatureTest
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::__construct
|
2017-09-19 18:30:42 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function getLogger(): LoggerInterface
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
2018-08-31 01:55:05 +02:00
|
|
|
$logEntry = new LogEntry();
|
2020-02-29 20:53:25 +01:00
|
|
|
return new Logger($logEntry);
|
2017-09-19 18:30:42 +02:00
|
|
|
}
|
|
|
|
|
2019-04-24 10:45:00 +02:00
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::__construct
|
2019-04-24 10:45:00 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testImplements(): void
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
2018-08-31 01:55:05 +02:00
|
|
|
$this->assertInstanceOf(LoggerInterface::class, $this->getLogger());
|
2017-09-19 18:30:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-04-19 20:41:38 +02:00
|
|
|
* @return string[][]
|
2017-09-19 18:30:42 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function provideLogLevels(): array
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
[LogLevel::ALERT],
|
|
|
|
[LogLevel::CRITICAL],
|
|
|
|
[LogLevel::DEBUG],
|
|
|
|
[LogLevel::EMERGENCY],
|
|
|
|
[LogLevel::ERROR],
|
|
|
|
[LogLevel::INFO],
|
|
|
|
[LogLevel::NOTICE],
|
|
|
|
[LogLevel::WARNING],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2017-09-19 20:40:48 +02:00
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2017-09-19 20:40:48 +02:00
|
|
|
* @dataProvider provideLogLevels
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testAllLevels(string $level): void
|
2017-09-19 20:40:48 +02:00
|
|
|
{
|
2018-08-31 01:55:05 +02:00
|
|
|
LogEntry::query()->truncate();
|
2017-09-19 20:40:48 +02:00
|
|
|
$logger = $this->getLogger();
|
|
|
|
|
|
|
|
$logger->log($level, 'First log message');
|
|
|
|
$logger->{$level}('Second log message');
|
|
|
|
|
2018-08-31 01:55:05 +02:00
|
|
|
$entries = LogEntry::all();
|
2017-09-19 20:40:48 +02:00
|
|
|
$this->assertCount(2, $entries);
|
|
|
|
}
|
|
|
|
|
2019-04-24 10:45:00 +02:00
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2019-04-24 10:45:00 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testContextReplacement(): void
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
2018-08-31 01:55:05 +02:00
|
|
|
LogEntry::query()->truncate();
|
2017-09-19 18:30:42 +02:00
|
|
|
$logger = $this->getLogger();
|
|
|
|
|
|
|
|
$logger->log(LogLevel::INFO, 'My username is {username}', ['username' => 'Foo']);
|
|
|
|
|
|
|
|
$entry = $this->getLastEntry();
|
|
|
|
$this->assertEquals('My username is Foo', $entry['message']);
|
2017-09-19 19:33:24 +02:00
|
|
|
$this->assertEquals(LogLevel::INFO, $entry['level']);
|
2017-09-19 20:40:48 +02:00
|
|
|
}
|
2017-09-19 18:30:42 +02:00
|
|
|
|
2017-09-19 20:40:48 +02:00
|
|
|
/**
|
2020-04-19 20:41:38 +02:00
|
|
|
* @return mixed[][]
|
2017-09-19 20:40:48 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function provideContextReplaceValues(): array
|
2017-09-19 20:40:48 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
['Data and {context}', [], 'Data and {context}'],
|
|
|
|
['Data and {context}', ['context' => null], 'Data and '],
|
2019-04-24 10:45:00 +02:00
|
|
|
['Data and {context}', ['context' => new stdClass()], 'Data and {context}'],
|
2017-09-19 20:40:48 +02:00
|
|
|
['Some user asked: {question}', ['question' => 'Foo?'], 'Some user asked: Foo?'],
|
|
|
|
];
|
|
|
|
}
|
2017-09-19 18:30:42 +02:00
|
|
|
|
2017-09-19 20:40:48 +02:00
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::interpolate
|
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2017-09-19 20:40:48 +02:00
|
|
|
* @dataProvider provideContextReplaceValues
|
|
|
|
*
|
|
|
|
* @param string[] $context
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testContextReplaceValues(string $message, array $context, string $expected): void
|
2017-09-19 20:40:48 +02:00
|
|
|
{
|
|
|
|
$logger = $this->getLogger();
|
|
|
|
$logger->log(LogLevel::INFO, $message, $context);
|
2017-09-19 18:30:42 +02:00
|
|
|
|
2017-09-19 20:40:48 +02:00
|
|
|
$entry = $this->getLastEntry();
|
|
|
|
$this->assertEquals($expected, $entry['message']);
|
2017-09-19 18:30:42 +02:00
|
|
|
}
|
|
|
|
|
2019-04-24 10:45:00 +02:00
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2019-04-24 10:45:00 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testContextToString(): void
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
2018-08-31 01:55:05 +02:00
|
|
|
LogEntry::query()->truncate();
|
2017-09-19 18:30:42 +02:00
|
|
|
$logger = $this->getLogger();
|
|
|
|
|
2019-11-06 12:29:58 +01:00
|
|
|
$mock = $this->getMockBuilder(stdClass::class)
|
|
|
|
->addMethods(['__toString'])
|
2017-09-19 18:30:42 +02:00
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$mock->expects($this->atLeastOnce())
|
|
|
|
->method('__toString')
|
|
|
|
->will($this->returnValue('FooBar'));
|
|
|
|
|
|
|
|
$logger->log(LogLevel::INFO, 'Some data and {context}', ['context' => $mock]);
|
|
|
|
|
|
|
|
$entry = $this->getLastEntry();
|
|
|
|
$this->assertEquals('Some data and FooBar', $entry['message']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::checkLevel
|
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2017-09-19 18:30:42 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testThrowExceptionOnInvalidLevel(): void
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
|
|
|
$logger = $this->getLogger();
|
|
|
|
|
2019-04-24 10:45:00 +02:00
|
|
|
$this->expectException(InvalidArgumentException::class);
|
2017-09-19 18:30:42 +02:00
|
|
|
$logger->log('This log level should never be defined', 'Some message');
|
|
|
|
}
|
|
|
|
|
2020-04-19 20:41:38 +02:00
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Logger\Logger::formatException
|
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testWithException(): void
|
2020-04-19 20:41:38 +02:00
|
|
|
{
|
|
|
|
$logger = $this->getLogger();
|
|
|
|
|
|
|
|
$logger->log(LogLevel::CRITICAL, 'Some random message', ['exception' => new Exception('Oops', 42)]);
|
|
|
|
$line = __LINE__ - 1;
|
|
|
|
|
|
|
|
$entry = $this->getLastEntry();
|
|
|
|
$this->assertStringContainsString('Some random message', $entry['message']);
|
|
|
|
$this->assertStringContainsString('Oops', $entry['message']);
|
|
|
|
$this->assertStringContainsString('42', $entry['message']);
|
|
|
|
$this->assertStringContainsString(__FILE__, $entry['message']);
|
2022-12-25 11:59:45 +01:00
|
|
|
$this->assertStringContainsString((string) $line, $entry['message']);
|
2020-04-19 20:41:38 +02:00
|
|
|
$this->assertStringContainsString(__FUNCTION__, $entry['message']);
|
|
|
|
}
|
|
|
|
|
2022-12-14 19:15:20 +01:00
|
|
|
protected function getLastEntry(): LogEntry
|
2017-09-19 18:30:42 +02:00
|
|
|
{
|
2020-01-02 15:08:08 +01:00
|
|
|
return LogEntry::all()->last();
|
2017-09-19 18:30:42 +02:00
|
|
|
}
|
2017-09-19 19:33:24 +02:00
|
|
|
|
2019-04-24 10:45:00 +02:00
|
|
|
/**
|
|
|
|
* Cleanup
|
|
|
|
*/
|
|
|
|
protected function tearDown(): void
|
2017-09-19 19:33:24 +02:00
|
|
|
{
|
2018-08-31 01:55:05 +02:00
|
|
|
LogEntry::query()->truncate();
|
2017-09-19 19:33:24 +02:00
|
|
|
}
|
2017-09-19 18:30:42 +02:00
|
|
|
}
|