|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +/** |
| 6 | + * This file is part of CodeIgniter 4 framework. |
| 7 | + * |
| 8 | + * (c) CodeIgniter Foundation <[email protected]> |
| 9 | + * |
| 10 | + * For the full copyright and license information, please view |
| 11 | + * the LICENSE file that was distributed with this source code. |
| 12 | + */ |
| 13 | + |
| 14 | +namespace CodeIgniter\Database\Live; |
| 15 | + |
| 16 | +use CodeIgniter\Test\CIUnitTestCase; |
| 17 | +use CodeIgniter\Test\DatabaseTestTrait; |
| 18 | +use CodeIgniter\Test\TestLogger; |
| 19 | +use Config\Database; |
| 20 | +use PHPUnit\Framework\Attributes\Group; |
| 21 | + |
| 22 | +/** |
| 23 | + * @internal |
| 24 | + */ |
| 25 | +#[Group('DatabaseLive')] |
| 26 | +final class ExecuteLogMessageFormatTest extends CIUnitTestCase |
| 27 | +{ |
| 28 | + use DatabaseTestTrait; |
| 29 | + |
| 30 | + protected function setUp(): void |
| 31 | + { |
| 32 | + $this->db = Database::connect(getShared: false); |
| 33 | + $this->disableDBDebug(); |
| 34 | + |
| 35 | + parent::setUp(); |
| 36 | + } |
| 37 | + |
| 38 | + protected function tearDown(): void |
| 39 | + { |
| 40 | + $this->enableDBDebug(); |
| 41 | + |
| 42 | + parent::tearDown(); |
| 43 | + } |
| 44 | + |
| 45 | + public function testLogMessageWhenExecuteFailsShowFullStructuredBacktrace(): void |
| 46 | + { |
| 47 | + $sql = 'SELECT * FROM some_table WHERE id = ? AND status = ? AND author = ?'; |
| 48 | + $this->db->query($sql, [3, 'live', 'Rick']); |
| 49 | + |
| 50 | + $message = match ($this->db->DBDriver) { |
| 51 | + 'MySQLi' => 'Table \'test.some_table\' doesn\'t exist', |
| 52 | + 'Postgre' => 'pg_query(): Query failed: ERROR: relation "some_table" does not exist', |
| 53 | + 'SQLite3' => 'Unable to prepare statement: no such table: some_table', |
| 54 | + 'OCI8' => 'oci_execute(): ORA-00942: table or view does not exist', |
| 55 | + 'SQLSRV' => '[Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Invalid object name \'some_table\'.', |
| 56 | + default => 'Unknown DB error', |
| 57 | + }; |
| 58 | + $messageFromLogs = explode("\n", $this->getPrivateProperty(TestLogger::class, 'op_logs')[0]['message']); |
| 59 | + |
| 60 | + $this->assertSame($message, array_shift($messageFromLogs)); |
| 61 | + |
| 62 | + if ($this->db->DBDriver === 'Postgre') { |
| 63 | + $messageFromLogs = array_slice($messageFromLogs, 2); |
| 64 | + } elseif ($this->db->DBDriver === 'OCI8') { |
| 65 | + $messageFromLogs = array_slice($messageFromLogs, 1); |
| 66 | + } |
| 67 | + |
| 68 | + $this->assertMatchesRegularExpression('/^in \S+ on line \d+\.$/', array_shift($messageFromLogs)); |
| 69 | + |
| 70 | + foreach ($messageFromLogs as $line) { |
| 71 | + $this->assertMatchesRegularExpression('/^\s*\d* .+(?:\(\d+\))?: \S+(?:(?:\->|::)\S+)?\(.*\)$/', $line); |
| 72 | + } |
| 73 | + } |
| 74 | +} |
0 commit comments