aboutsummaryrefslogtreecommitdiff
path: root/tests/app/Models/LogDAOTest.php
blob: 1950a12c8867eb2ce57fba8f3f8c410495b57d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
declare(strict_types=1);

use PHPUnit\Framework\TestCase;

class LogDAOTest extends TestCase {
	private const LOG_FILE_TEST = 'logFileTest.txt';

	private FreshRSS_LogDAO $logDAO;

	private string $logPath;

	#[\Override]
	protected function setUp(): void {
		$this->logDAO = new FreshRSS_LogDAO();
		$this->logPath = FreshRSS_LogDAO::logPath(self::LOG_FILE_TEST);

		file_put_contents(
			$this->logPath,
			'[Wed, 08 Feb 2023 15:35:05 +0000] [notice] --- Migration 2019_12_22_FooBar: OK'
		);
	}

	public function test_lines_is_array_and_truncate_function_work(): void {
		self::assertSame(USERS_PATH . '/' . Minz_User::INTERNAL_USER . '/' . self::LOG_FILE_TEST, $this->logPath);

		$line = $this->logDAO::lines(self::LOG_FILE_TEST);

		self::assertCount(1, $line);
		self::assertSame('Wed, 08 Feb 2023 15:35:05 +0000', $line[0]->date());
		self::assertSame('notice', $line[0]->level());
		self::assertSame("Migration 2019_12_22_FooBar: OK", $line[0]->info());

		$this->logDAO::truncate(self::LOG_FILE_TEST);

		self::assertStringContainsString('', file_get_contents($this->logPath) ?: '');
	}

	#[\Override]
	protected function tearDown(): void {
		unlink($this->logPath);
	}
}