2017-11-24 15:08:43 +01:00
|
|
|
<?php
|
|
|
|
|
2020-04-19 20:41:38 +02:00
|
|
|
namespace Engelsystem\Test\Unit\Exceptions\Handlers;
|
2017-11-24 15:08:43 +01:00
|
|
|
|
|
|
|
use Engelsystem\Exceptions\Handlers\Legacy;
|
|
|
|
use Engelsystem\Http\Request;
|
2020-04-19 20:41:38 +02:00
|
|
|
use ErrorException;
|
2017-11-24 15:08:43 +01:00
|
|
|
use Exception;
|
2019-04-24 10:45:00 +02:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2017-11-24 15:08:43 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2020-04-19 20:41:38 +02:00
|
|
|
use Psr\Log\Test\TestLogger;
|
2017-11-24 15:08:43 +01:00
|
|
|
|
|
|
|
class LegacyTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
2020-04-19 20:41:38 +02:00
|
|
|
* @covers \Engelsystem\Exceptions\Handlers\Legacy::render
|
2017-11-24 15:08:43 +01:00
|
|
|
*/
|
|
|
|
public function testRender()
|
|
|
|
{
|
|
|
|
$handler = new Legacy();
|
2019-04-24 10:45:00 +02:00
|
|
|
/** @var Request|MockObject $request */
|
2017-11-24 15:08:43 +01:00
|
|
|
$request = $this->createMock(Request::class);
|
2019-04-24 10:45:00 +02:00
|
|
|
/** @var Exception|MockObject $exception */
|
2017-11-24 15:08:43 +01:00
|
|
|
$exception = $this->createMock(Exception::class);
|
|
|
|
|
|
|
|
$this->expectOutputRegex('/.*error occurred.*/i');
|
|
|
|
|
|
|
|
$handler->render($request, $exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-04-19 20:41:38 +02:00
|
|
|
* @covers \Engelsystem\Exceptions\Handlers\Legacy::report
|
|
|
|
* @covers \Engelsystem\Exceptions\Handlers\Legacy::setLogger
|
|
|
|
* @covers \Engelsystem\Exceptions\Handlers\Legacy::stripBasePath
|
2017-11-24 15:08:43 +01:00
|
|
|
*/
|
|
|
|
public function testReport()
|
|
|
|
{
|
|
|
|
$handler = new Legacy();
|
|
|
|
$exception = new Exception('Lorem Ipsum', 4242);
|
|
|
|
$line = __LINE__ - 1;
|
2020-04-19 20:41:38 +02:00
|
|
|
$exception2 = new Exception('Test Exception');
|
|
|
|
$exception3 = new Exception('Mor Exceptions!');
|
|
|
|
$logger = new TestLogger();
|
|
|
|
$logger2 = $this->createMock(TestLogger::class);
|
|
|
|
$logger2->expects($this->once())
|
|
|
|
->method('critical')
|
|
|
|
->willReturnCallback(function () {
|
|
|
|
throw new ErrorException();
|
|
|
|
});
|
2017-11-24 15:08:43 +01:00
|
|
|
|
2020-04-19 20:41:38 +02:00
|
|
|
$logfile = tempnam(sys_get_temp_dir(), 'engelsystem-log');
|
2017-11-24 15:08:43 +01:00
|
|
|
$errorLog = ini_get('error_log');
|
2020-04-19 20:41:38 +02:00
|
|
|
ini_set('error_log', $logfile);
|
2017-11-24 15:08:43 +01:00
|
|
|
$handler->report($exception);
|
2020-04-19 20:41:38 +02:00
|
|
|
$handler->setLogger($logger);
|
|
|
|
$handler->report($exception2);
|
|
|
|
$handler->setLogger($logger2);
|
|
|
|
$handler->report($exception3);
|
2017-11-24 15:08:43 +01:00
|
|
|
ini_set('error_log', $errorLog);
|
2020-04-19 20:41:38 +02:00
|
|
|
$logContent = file_get_contents($logfile);
|
|
|
|
unset($logfile);
|
2017-11-24 15:08:43 +01:00
|
|
|
|
2019-04-24 10:45:00 +02:00
|
|
|
$this->assertStringContainsString('4242', $logContent);
|
|
|
|
$this->assertStringContainsString('Lorem Ipsum', $logContent);
|
|
|
|
$this->assertStringContainsString(basename(__FILE__), $logContent);
|
|
|
|
$this->assertStringContainsString((string)$line, $logContent);
|
|
|
|
$this->assertStringContainsString(__FUNCTION__, $logContent);
|
|
|
|
$this->assertStringContainsString(json_encode(__CLASS__), $logContent);
|
2020-04-19 20:41:38 +02:00
|
|
|
|
|
|
|
$this->assertTrue($logger->hasRecordThatPasses(function (array $record) use ($exception2) {
|
|
|
|
$context = $record['context'];
|
|
|
|
return isset($context['exception']) && $context['exception'] === $exception2;
|
|
|
|
}, 'critical'));
|
2017-11-24 15:08:43 +01:00
|
|
|
}
|
|
|
|
}
|