| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <?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\Handler;
- use InvalidArgumentException;
- use Monolog\Test\TestCase;
- /**
- * @covers Monolog\Handler\RotatingFileHandler
- */
- class RotatingFileHandlerTest extends TestCase
- {
- private array|null $lastError = null;
- public function setUp(): void
- {
- $dir = __DIR__.'/Fixtures';
- chmod($dir, 0777);
- if (!is_writable($dir)) {
- $this->markTestSkipped($dir.' must be writable to test the RotatingFileHandler.');
- }
- $this->lastError = null;
- set_error_handler(function ($code, $message) {
- $this->lastError = [
- 'code' => $code,
- 'message' => $message,
- ];
- return true;
- });
- }
- private function assertErrorWasTriggered($code, $message)
- {
- if (empty($this->lastError)) {
- $this->fail(
- sprintf(
- 'Failed asserting that error with code `%d` and message `%s` was triggered',
- $code,
- $message
- )
- );
- }
- $this->assertEquals($code, $this->lastError['code'], sprintf('Expected an error with code %d to be triggered, got `%s` instead', $code, $this->lastError['code']));
- $this->assertEquals($message, $this->lastError['message'], sprintf('Expected an error with message `%d` to be triggered, got `%s` instead', $message, $this->lastError['message']));
- }
- public function testRotationCreatesNewFile()
- {
- touch(__DIR__.'/Fixtures/foo-'.date('Y-m-d', time() - 86400).'.rot');
- $handler = new RotatingFileHandler(__DIR__.'/Fixtures/foo.rot');
- $handler->setFormatter($this->getIdentityFormatter());
- $handler->handle($this->getRecord());
- $log = __DIR__.'/Fixtures/foo-'.date('Y-m-d').'.rot';
- $this->assertTrue(file_exists($log));
- $this->assertEquals('test', file_get_contents($log));
- }
- /**
- * @dataProvider rotationTests
- */
- public function testRotation($createFile, $dateFormat, $timeCallback)
- {
- touch($old1 = __DIR__.'/Fixtures/foo-'.date($dateFormat, $timeCallback(-1)).'.rot');
- touch($old2 = __DIR__.'/Fixtures/foo-'.date($dateFormat, $timeCallback(-2)).'.rot');
- touch($old3 = __DIR__.'/Fixtures/foo-'.date($dateFormat, $timeCallback(-3)).'.rot');
- touch($old4 = __DIR__.'/Fixtures/foo-'.date($dateFormat, $timeCallback(-4)).'.rot');
- $log = __DIR__.'/Fixtures/foo-'.date($dateFormat).'.rot';
- if ($createFile) {
- touch($log);
- }
- $handler = new RotatingFileHandler(__DIR__.'/Fixtures/foo.rot', 2);
- $handler->setFormatter($this->getIdentityFormatter());
- $handler->setFilenameFormat('{filename}-{date}', $dateFormat);
- $handler->handle($this->getRecord());
- $handler->close();
- $this->assertTrue(file_exists($log));
- $this->assertTrue(file_exists($old1));
- $this->assertEquals($createFile, file_exists($old2));
- $this->assertEquals($createFile, file_exists($old3));
- $this->assertEquals($createFile, file_exists($old4));
- $this->assertEquals('test', file_get_contents($log));
- }
- public function rotationTests()
- {
- $now = time();
- $dayCallback = function ($ago) use ($now) {
- return $now + 86400 * $ago;
- };
- $monthCallback = function ($ago) {
- return gmmktime(0, 0, 0, (int) (date('n') + $ago), 1, (int) date('Y'));
- };
- $yearCallback = function ($ago) {
- return gmmktime(0, 0, 0, 1, 1, (int) (date('Y') + $ago));
- };
- return [
- 'Rotation is triggered when the file of the current day is not present'
- => [true, RotatingFileHandler::FILE_PER_DAY, $dayCallback],
- 'Rotation is not triggered when the file of the current day is already present'
- => [false, RotatingFileHandler::FILE_PER_DAY, $dayCallback],
- 'Rotation is triggered when the file of the current month is not present'
- => [true, RotatingFileHandler::FILE_PER_MONTH, $monthCallback],
- 'Rotation is not triggered when the file of the current month is already present'
- => [false, RotatingFileHandler::FILE_PER_MONTH, $monthCallback],
- 'Rotation is triggered when the file of the current year is not present'
- => [true, RotatingFileHandler::FILE_PER_YEAR, $yearCallback],
- 'Rotation is not triggered when the file of the current year is already present'
- => [false, RotatingFileHandler::FILE_PER_YEAR, $yearCallback],
- ];
- }
- /**
- * @dataProvider dateFormatProvider
- */
- public function testAllowOnlyFixedDefinedDateFormats($dateFormat, $valid)
- {
- $handler = new RotatingFileHandler(__DIR__.'/Fixtures/foo.rot', 2);
- if (!$valid) {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessageMatches('~^Invalid date format~');
- }
- $handler->setFilenameFormat('{filename}-{date}', $dateFormat);
- $this->assertTrue(true);
- }
- public function dateFormatProvider()
- {
- return [
- [RotatingFileHandler::FILE_PER_DAY, true],
- [RotatingFileHandler::FILE_PER_MONTH, true],
- [RotatingFileHandler::FILE_PER_YEAR, true],
- ['Y/m/d', true],
- ['Y.m.d', true],
- ['Y_m_d', true],
- ['Ymd', true],
- ['Ym/d', true],
- ['Y/m', true],
- ['Ym', true],
- ['Y.m', true],
- ['Y_m', true],
- ['Y/md', true],
- ['', false],
- ['m-d-Y', false],
- ['Y-m-d-h-i', false],
- ['Y-', false],
- ['Y-m-', false],
- ['Y--', false],
- ['m-d', false],
- ['Y-d', false],
- ];
- }
- /**
- * @dataProvider filenameFormatProvider
- */
- public function testDisallowFilenameFormatsWithoutDate($filenameFormat, $valid)
- {
- $handler = new RotatingFileHandler(__DIR__.'/Fixtures/foo.rot', 2);
- if (!$valid) {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessageMatches('~^Invalid filename format~');
- }
- $handler->setFilenameFormat($filenameFormat, RotatingFileHandler::FILE_PER_DAY);
- }
- public function filenameFormatProvider()
- {
- return [
- ['{filename}', false],
- ['{filename}-{date}', true],
- ['{date}', true],
- ['foobar-{date}', true],
- ['foo-{date}-bar', true],
- ['{date}-foobar', true],
- ['foobar', false],
- ];
- }
- /**
- * @dataProvider rotationWhenSimilarFilesExistTests
- */
- public function testRotationWhenSimilarFileNamesExist($dateFormat)
- {
- touch($old1 = __DIR__.'/Fixtures/foo-foo-'.date($dateFormat).'.rot');
- touch($old2 = __DIR__.'/Fixtures/foo-bar-'.date($dateFormat).'.rot');
- $log = __DIR__.'/Fixtures/foo-'.date($dateFormat).'.rot';
- $handler = new RotatingFileHandler(__DIR__.'/Fixtures/foo.rot', 2);
- $handler->setFormatter($this->getIdentityFormatter());
- $handler->setFilenameFormat('{filename}-{date}', $dateFormat);
- $handler->handle($this->getRecord());
- $handler->close();
- $this->assertTrue(file_exists($log));
- }
- public function rotationWhenSimilarFilesExistTests()
- {
- return [
- 'Rotation is triggered when the file of the current day is not present but similar exists'
- => [RotatingFileHandler::FILE_PER_DAY],
- 'Rotation is triggered when the file of the current month is not present but similar exists'
- => [RotatingFileHandler::FILE_PER_MONTH],
- 'Rotation is triggered when the file of the current year is not present but similar exists'
- => [RotatingFileHandler::FILE_PER_YEAR],
- ];
- }
- public function testReuseCurrentFile()
- {
- $log = __DIR__.'/Fixtures/foo-'.date('Y-m-d').'.rot';
- file_put_contents($log, "foo");
- $handler = new RotatingFileHandler(__DIR__.'/Fixtures/foo.rot');
- $handler->setFormatter($this->getIdentityFormatter());
- $handler->handle($this->getRecord());
- $this->assertEquals('footest', file_get_contents($log));
- }
- public function tearDown(): void
- {
- foreach (glob(__DIR__.'/Fixtures/*.rot') as $file) {
- unlink($file);
- }
- restore_error_handler();
- }
- }
|