summaryrefslogtreecommitdiff
path: root/tests/backends
diff options
context:
space:
mode:
authorSimon Charette <charettes@users.noreply.github.com>2019-02-20 04:59:40 -0500
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-02-20 11:01:03 +0100
commit7f25344c2e69454bb69ec6100a1bc0af6cee6d70 (patch)
tree1e5666ed0bd2f72004bee96c02adb3f0cbf980ab /tests/backends
parent9278acfd1277090257fdb27ce24ab8cf0674bd62 (diff)
[2.2.x] Fixed #30193, Refs #28478 -- Avoided PostgreSQL connection health checks on initialization.
This addressed a regression introduced by a96b9019320ed8236659ee520a7a017c1bafbc6f as identified by Ran Benita. Backport of 7071f8f2729295b0da77b6c651966dc32c71f1ab from master
Diffstat (limited to 'tests/backends')
-rw-r--r--tests/backends/postgresql/tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/backends/postgresql/tests.py b/tests/backends/postgresql/tests.py
index 6fd0ba4420..96a1501693 100644
--- a/tests/backends/postgresql/tests.py
+++ b/tests/backends/postgresql/tests.py
@@ -134,6 +134,12 @@ class Tests(TestCase):
finally:
new_connection.close()
+ def test_connect_no_is_usable_checks(self):
+ new_connection = connection.copy()
+ with mock.patch.object(new_connection, 'is_usable') as is_usable:
+ new_connection.connect()
+ is_usable.assert_not_called()
+
def _select(self, val):
with connection.cursor() as cursor:
cursor.execute('SELECT %s', (val,))