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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
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 django.utils.deprecation import RemovedInDjango70Warning
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__)
# RemovedInDjango70Warning: When the deprecation ends, remove this
# test.
def test_quote_name_unless_alias_deprecation(self):
query = Query(Item)
compiler = SQLCompiler(query, connection, None)
msg = (
"SQLCompiler.quote_name_unless_alias() is deprecated. "
"Use .quote_name() instead."
)
with self.assertWarnsMessage(RemovedInDjango70Warning, msg) as ctx:
self.assertEqual(
compiler.quote_name_unless_alias("name"),
compiler.quote_name("name"),
)
self.assertEqual(ctx.filename, __file__)
|