blob: 0f6f2fc10bc7079a3c81efeb66a765717d8620ee (
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
|
from unittest import mock
from django.db import DEFAULT_DB_ALIAS, DatabaseError, connection
from django.db.models.sql import Query
from django.db.models.sql.compiler import SQLCompiler
from django.test import TestCase
from .models import Item
class SQLCompilerTest(TestCase):
def test_repr(self):
query = Query(Item)
compiler = query.get_compiler(DEFAULT_DB_ALIAS, connection)
self.assertEqual(
repr(compiler),
f"<SQLCompiler model=Item connection="
f"<DatabaseWrapper vendor={connection.vendor!r} alias='default'> "
f"using='default'>",
)
def test_execute_sql_suppresses_cursor_closing_failure_on_exception(self):
query = Query(Item)
compiler = SQLCompiler(query, connection, None)
cursor = mock.MagicMock()
# When execution fails, the cursor may have been closed.
# Django's attempt to close it again will fail, and needs catching.
execute_err = DatabaseError("execute failed")
cursor.execute.side_effect = execute_err
cursor.close.side_effect = DatabaseError("close failed")
with mock.patch.object(connection, "cursor", return_value=cursor):
with self.assertRaises(DatabaseError) as ctx:
compiler.execute_sql("SELECT 1", [])
# There is no irrelevant context from trying to close a closed cursor.
exc = ctx.exception
self.assertIs(exc, execute_err)
self.assertIsNone(exc.__cause__)
self.assertTrue(exc.__suppress_context__)
|