2019-07-16 02:59:33 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-07-16 02:59:33 +02:00
|
|
|
namespace Engelsystem\Test\Unit\Logger;
|
|
|
|
|
2020-02-29 20:53:25 +01:00
|
|
|
use Engelsystem\Logger\Logger;
|
2019-07-16 02:59:33 +02:00
|
|
|
use Engelsystem\Models\LogEntry;
|
2023-02-05 15:59:56 +01:00
|
|
|
use Engelsystem\Test\Unit\HasDatabase;
|
2019-07-16 02:59:33 +02:00
|
|
|
use Engelsystem\Test\Unit\ServiceProviderTest;
|
2023-02-05 15:59:56 +01:00
|
|
|
use Exception;
|
|
|
|
use Psr\Log\InvalidArgumentException;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2019-07-16 02:59:33 +02:00
|
|
|
use Psr\Log\LogLevel;
|
2023-02-05 15:59:56 +01:00
|
|
|
use stdClass;
|
2019-07-16 02:59:33 +02:00
|
|
|
|
2020-02-29 20:53:25 +01:00
|
|
|
class LoggerTest extends ServiceProviderTest
|
2019-07-16 02:59:33 +02:00
|
|
|
{
|
2023-02-05 15:59:56 +01:00
|
|
|
use HasDatabase;
|
|
|
|
|
2019-07-16 02:59:33 +02:00
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::__construct
|
2023-02-05 15:59:56 +01:00
|
|
|
*/
|
|
|
|
public function testImplements(): void
|
|
|
|
{
|
|
|
|
$this->assertInstanceOf(LoggerInterface::class, new Logger(new LogEntry()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string[][]
|
|
|
|
*/
|
|
|
|
public function provideLogLevels(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[LogLevel::ALERT],
|
|
|
|
[LogLevel::CRITICAL],
|
|
|
|
[LogLevel::DEBUG],
|
|
|
|
[LogLevel::EMERGENCY],
|
|
|
|
[LogLevel::ERROR],
|
|
|
|
[LogLevel::INFO],
|
|
|
|
[LogLevel::NOTICE],
|
|
|
|
[LogLevel::WARNING],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
|
|
|
* @dataProvider provideLogLevels
|
|
|
|
*/
|
|
|
|
public function testAllLevels(string $level): void
|
|
|
|
{
|
|
|
|
$logger = new Logger(new LogEntry());
|
|
|
|
|
|
|
|
$logger->log($level, 'First log message');
|
|
|
|
$logger->{$level}('Second log message');
|
|
|
|
|
|
|
|
$entries = LogEntry::all();
|
|
|
|
$this->assertCount(2, $entries);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2019-07-16 02:59:33 +02:00
|
|
|
*/
|
2023-02-05 15:59:56 +01:00
|
|
|
public function testContextReplacement(): void
|
2019-07-16 02:59:33 +02:00
|
|
|
{
|
2023-02-05 15:59:56 +01:00
|
|
|
$logger = new Logger(new LogEntry());
|
|
|
|
|
|
|
|
$logger->log(LogLevel::INFO, 'My username is {username}', ['username' => 'Foo']);
|
|
|
|
|
|
|
|
/** @var LogEntry $entry */
|
|
|
|
$entry = LogEntry::find(1);
|
|
|
|
$this->assertEquals('My username is Foo', $entry->message);
|
|
|
|
$this->assertEquals(LogLevel::INFO, $entry['level']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array<string|array<string|mixed>>
|
|
|
|
*/
|
|
|
|
public function provideContextReplaceValues(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
['Data and {context}', [], 'Data and {context}'],
|
|
|
|
['Data and {context}', ['context' => null], 'Data and '],
|
|
|
|
['Data and {context}', ['context' => new stdClass()], 'Data and {context}'],
|
|
|
|
['Some user asked: {question}', ['question' => 'Foo?'], 'Some user asked: Foo?'],
|
|
|
|
];
|
|
|
|
}
|
2019-07-16 02:59:33 +02:00
|
|
|
|
2023-02-05 15:59:56 +01:00
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Logger\Logger::interpolate
|
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
|
|
|
* @dataProvider provideContextReplaceValues
|
|
|
|
*
|
|
|
|
* @param string[] $context
|
|
|
|
*/
|
|
|
|
public function testContextReplaceValues(string $message, array $context, string $expected): void
|
|
|
|
{
|
|
|
|
$logger = new Logger(new LogEntry());
|
|
|
|
$logger->log(LogLevel::INFO, $message, $context);
|
2019-07-16 02:59:33 +02:00
|
|
|
|
2023-02-05 15:59:56 +01:00
|
|
|
/** @var LogEntry $entry */
|
|
|
|
$entry = LogEntry::find(1);
|
|
|
|
$this->assertEquals($expected, $entry->message);
|
2019-07-16 02:59:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2023-02-05 15:59:56 +01:00
|
|
|
*/
|
|
|
|
public function testContextToString(): void
|
|
|
|
{
|
|
|
|
$logger = new Logger(new LogEntry());
|
|
|
|
|
|
|
|
$mock = $this->getMockBuilder(stdClass::class)
|
|
|
|
->addMethods(['__toString'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$mock->expects($this->atLeastOnce())
|
|
|
|
->method('__toString')
|
|
|
|
->will($this->returnValue('FooBar'));
|
|
|
|
|
|
|
|
$logger->log(LogLevel::INFO, 'Some data and {context}', ['context' => $mock]);
|
|
|
|
|
|
|
|
/** @var LogEntry $entry */
|
|
|
|
$entry = LogEntry::find(1);
|
|
|
|
$this->assertEquals('Some data and FooBar', $entry->message);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-02-29 20:53:25 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::checkLevel
|
2023-02-05 15:59:56 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2019-07-16 02:59:33 +02:00
|
|
|
*/
|
2023-02-05 15:59:56 +01:00
|
|
|
public function testThrowExceptionOnInvalidLevel(): void
|
2019-07-16 02:59:33 +02:00
|
|
|
{
|
2023-02-05 15:59:56 +01:00
|
|
|
$logger = new Logger(new LogEntry());
|
2019-07-16 02:59:33 +02:00
|
|
|
|
|
|
|
$this->expectException(InvalidArgumentException::class);
|
2023-02-05 15:59:56 +01:00
|
|
|
$logger->log('This log level should never be defined', 'Some message');
|
2019-07-16 02:59:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-02-05 15:59:56 +01:00
|
|
|
* @covers \Engelsystem\Logger\Logger::formatException
|
|
|
|
* @covers \Engelsystem\Logger\Logger::log
|
2019-07-16 02:59:33 +02:00
|
|
|
*/
|
2023-02-05 15:59:56 +01:00
|
|
|
public function testWithException(): void
|
2019-07-16 02:59:33 +02:00
|
|
|
{
|
2023-02-05 15:59:56 +01:00
|
|
|
$logger = new Logger(new LogEntry());
|
|
|
|
|
|
|
|
$logger->log(LogLevel::CRITICAL, 'Some random message', ['exception' => new Exception('Oops', 42)]);
|
|
|
|
$line = __LINE__ - 1;
|
|
|
|
/** @var LogEntry $entry */
|
|
|
|
$entry = LogEntry::find(1);
|
|
|
|
$this->assertStringContainsString('Some random message', $entry->message);
|
|
|
|
$this->assertStringContainsString('Oops', $entry->message);
|
|
|
|
$this->assertStringContainsString('42', $entry->message);
|
|
|
|
$this->assertStringContainsString(__FILE__, $entry->message);
|
|
|
|
$this->assertStringContainsString((string) $line, $entry->message);
|
|
|
|
$this->assertStringContainsString(__FUNCTION__, $entry->message);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->initDatabase();
|
2019-07-16 02:59:33 +02:00
|
|
|
}
|
|
|
|
}
|