| import copy |
| import unittest |
| from io import StringIO |
| from unittest import mock |
|
|
| from django.core.exceptions import ImproperlyConfigured |
| from django.db import ( |
| DEFAULT_DB_ALIAS, |
| DatabaseError, |
| NotSupportedError, |
| connection, |
| connections, |
| ) |
| from django.db.backends.base.base import BaseDatabaseWrapper |
| from django.test import TestCase, override_settings |
|
|
| try: |
| from django.db.backends.postgresql.psycopg_any import errors, is_psycopg3 |
| except ImportError: |
| is_psycopg3 = False |
|
|
|
|
| @unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL tests") |
| class Tests(TestCase): |
| databases = {"default", "other"} |
|
|
| def test_nodb_cursor(self): |
| """ |
| The _nodb_cursor() fallbacks to the default connection database when |
| access to the 'postgres' database is not granted. |
| """ |
| orig_connect = BaseDatabaseWrapper.connect |
|
|
| def mocked_connect(self): |
| if self.settings_dict["NAME"] is None: |
| raise DatabaseError() |
| return orig_connect(self) |
|
|
| with connection._nodb_cursor() as cursor: |
| self.assertIs(cursor.closed, False) |
| self.assertIsNotNone(cursor.db.connection) |
| self.assertIsNone(cursor.db.settings_dict["NAME"]) |
| self.assertIs(cursor.closed, True) |
| self.assertIsNone(cursor.db.connection) |
|
|
| |
| msg = ( |
| "Normally Django will use a connection to the 'postgres' database " |
| "to avoid running initialization queries against the production " |
| "database when it's not needed (for example, when running tests). " |
| "Django was unable to create a connection to the 'postgres' " |
| "database and will use the first PostgreSQL database instead." |
| ) |
| with self.assertWarnsMessage(RuntimeWarning, msg): |
| with mock.patch( |
| "django.db.backends.base.base.BaseDatabaseWrapper.connect", |
| side_effect=mocked_connect, |
| autospec=True, |
| ): |
| with mock.patch.object( |
| connection, |
| "settings_dict", |
| {**connection.settings_dict, "NAME": "postgres"}, |
| ): |
| with connection._nodb_cursor() as cursor: |
| self.assertIs(cursor.closed, False) |
| self.assertIsNotNone(cursor.db.connection) |
| self.assertIs(cursor.closed, True) |
| self.assertIsNone(cursor.db.connection) |
| self.assertIsNotNone(cursor.db.settings_dict["NAME"]) |
| self.assertEqual( |
| cursor.db.settings_dict["NAME"], connections["other"].settings_dict["NAME"] |
| ) |
| |
| with self.assertWarnsMessage(RuntimeWarning, msg): |
| with mock.patch( |
| "django.db.backends.base.base.BaseDatabaseWrapper.connect", |
| side_effect=mocked_connect, |
| autospec=True, |
| ): |
| with connection._nodb_cursor() as cursor: |
| self.assertIs(cursor.closed, False) |
| self.assertIsNotNone(cursor.db.connection) |
|
|
| def test_nodb_cursor_raises_postgres_authentication_failure(self): |
| """ |
| _nodb_cursor() re-raises authentication failure to the 'postgres' db |
| when other connection to the PostgreSQL database isn't available. |
| """ |
|
|
| def mocked_connect(self): |
| raise DatabaseError() |
|
|
| def mocked_all(self): |
| test_connection = copy.copy(connections[DEFAULT_DB_ALIAS]) |
| test_connection.settings_dict = copy.deepcopy(connection.settings_dict) |
| test_connection.settings_dict["NAME"] = "postgres" |
| return [test_connection] |
|
|
| msg = ( |
| "Normally Django will use a connection to the 'postgres' database " |
| "to avoid running initialization queries against the production " |
| "database when it's not needed (for example, when running tests). " |
| "Django was unable to create a connection to the 'postgres' " |
| "database and will use the first PostgreSQL database instead." |
| ) |
| with self.assertWarnsMessage(RuntimeWarning, msg): |
| mocker_connections_all = mock.patch( |
| "django.utils.connection.BaseConnectionHandler.all", |
| side_effect=mocked_all, |
| autospec=True, |
| ) |
| mocker_connect = mock.patch( |
| "django.db.backends.base.base.BaseDatabaseWrapper.connect", |
| side_effect=mocked_connect, |
| autospec=True, |
| ) |
| with mocker_connections_all, mocker_connect: |
| with self.assertRaises(DatabaseError): |
| with connection._nodb_cursor(): |
| pass |
|
|
| def test_nodb_cursor_reraise_exceptions(self): |
| with self.assertRaisesMessage(DatabaseError, "exception"): |
| with connection._nodb_cursor(): |
| raise DatabaseError("exception") |
|
|
| def test_database_name_too_long(self): |
| from django.db.backends.postgresql.base import DatabaseWrapper |
|
|
| settings = connection.settings_dict.copy() |
| max_name_length = connection.ops.max_name_length() |
| settings["NAME"] = "a" + (max_name_length * "a") |
| msg = ( |
| "The database name '%s' (%d characters) is longer than " |
| "PostgreSQL's limit of %s characters. Supply a shorter NAME in " |
| "settings.DATABASES." |
| ) % (settings["NAME"], max_name_length + 1, max_name_length) |
| with self.assertRaisesMessage(ImproperlyConfigured, msg): |
| DatabaseWrapper(settings).get_connection_params() |
|
|
| def test_database_name_empty(self): |
| from django.db.backends.postgresql.base import DatabaseWrapper |
|
|
| settings = connection.settings_dict.copy() |
| settings["NAME"] = "" |
| msg = ( |
| "settings.DATABASES is improperly configured. Please supply the " |
| "NAME or OPTIONS['service'] value." |
| ) |
| with self.assertRaisesMessage(ImproperlyConfigured, msg): |
| DatabaseWrapper(settings).get_connection_params() |
|
|
| def test_service_name(self): |
| from django.db.backends.postgresql.base import DatabaseWrapper |
|
|
| settings = connection.settings_dict.copy() |
| settings["OPTIONS"] = {"service": "my_service"} |
| settings["NAME"] = "" |
| params = DatabaseWrapper(settings).get_connection_params() |
| self.assertEqual(params["service"], "my_service") |
| self.assertNotIn("database", params) |
|
|
| def test_service_name_default_db(self): |
| |
| from django.db.backends.postgresql.base import DatabaseWrapper |
|
|
| settings = connection.settings_dict.copy() |
| settings["NAME"] = None |
| settings["OPTIONS"] = {"service": "django_test"} |
| params = DatabaseWrapper(settings).get_connection_params() |
| self.assertEqual(params["dbname"], "postgres") |
| self.assertNotIn("service", params) |
|
|
| def test_connect_and_rollback(self): |
| """ |
| PostgreSQL shouldn't roll back SET TIME ZONE, even if the first |
| transaction is rolled back (#17062). |
| """ |
| new_connection = connection.copy() |
| try: |
| |
| |
| |
| with new_connection.cursor() as cursor: |
| cursor.execute("RESET TIMEZONE") |
| cursor.execute("SHOW TIMEZONE") |
| db_default_tz = cursor.fetchone()[0] |
| new_tz = "Europe/Paris" if db_default_tz == "UTC" else "UTC" |
| new_connection.close() |
|
|
| |
| |
| del new_connection.timezone_name |
|
|
| |
| |
| with self.settings(TIME_ZONE=new_tz): |
| new_connection.set_autocommit(False) |
| new_connection.rollback() |
|
|
| |
| with new_connection.cursor() as cursor: |
| cursor.execute("SHOW TIMEZONE") |
| tz = cursor.fetchone()[0] |
| self.assertEqual(new_tz, tz) |
|
|
| finally: |
| new_connection.close() |
|
|
| def test_connect_non_autocommit(self): |
| """ |
| The connection wrapper shouldn't believe that autocommit is enabled |
| after setting the time zone when AUTOCOMMIT is False (#21452). |
| """ |
| new_connection = connection.copy() |
| new_connection.settings_dict["AUTOCOMMIT"] = False |
|
|
| try: |
| |
| with new_connection.cursor(): |
| self.assertFalse(new_connection.get_autocommit()) |
| finally: |
| new_connection.close() |
|
|
| def test_connect_isolation_level(self): |
| """ |
| The transaction level can be configured with |
| DATABASES ['OPTIONS']['isolation_level']. |
| """ |
| from django.db.backends.postgresql.psycopg_any import IsolationLevel |
|
|
| |
| |
| |
| |
| self.assertIsNone(connection.connection.isolation_level) |
|
|
| new_connection = connection.copy() |
| new_connection.settings_dict["OPTIONS"][ |
| "isolation_level" |
| ] = IsolationLevel.SERIALIZABLE |
| try: |
| |
| new_connection.set_autocommit(False) |
| |
| self.assertEqual( |
| new_connection.connection.isolation_level, |
| IsolationLevel.SERIALIZABLE, |
| ) |
| finally: |
| new_connection.close() |
|
|
| def test_connect_invalid_isolation_level(self): |
| self.assertIsNone(connection.connection.isolation_level) |
| new_connection = connection.copy() |
| new_connection.settings_dict["OPTIONS"]["isolation_level"] = -1 |
| msg = ( |
| "Invalid transaction isolation level -1 specified. Use one of the " |
| "psycopg.IsolationLevel values." |
| ) |
| with self.assertRaisesMessage(ImproperlyConfigured, msg): |
| new_connection.ensure_connection() |
|
|
| def test_connect_role(self): |
| """ |
| The session role can be configured with DATABASES |
| ["OPTIONS"]["assume_role"]. |
| """ |
| try: |
| custom_role = "django_nonexistent_role" |
| new_connection = connection.copy() |
| new_connection.settings_dict["OPTIONS"]["assume_role"] = custom_role |
| msg = f'role "{custom_role}" does not exist' |
| with self.assertRaisesMessage(errors.InvalidParameterValue, msg): |
| new_connection.connect() |
| finally: |
| new_connection.close() |
|
|
| @unittest.skipUnless(is_psycopg3, "psycopg3 specific test") |
| def test_connect_server_side_binding(self): |
| """ |
| The server-side parameters binding role can be enabled with DATABASES |
| ["OPTIONS"]["server_side_binding"]. |
| """ |
| from django.db.backends.postgresql.base import ServerBindingCursor |
|
|
| new_connection = connection.copy() |
| new_connection.settings_dict["OPTIONS"]["server_side_binding"] = True |
| try: |
| new_connection.connect() |
| self.assertEqual( |
| new_connection.connection.cursor_factory, |
| ServerBindingCursor, |
| ) |
| finally: |
| new_connection.close() |
|
|
| def test_connect_custom_cursor_factory(self): |
| """ |
| A custom cursor factory can be configured with DATABASES["options"] |
| ["cursor_factory"]. |
| """ |
| from django.db.backends.postgresql.base import Cursor |
|
|
| class MyCursor(Cursor): |
| pass |
|
|
| new_connection = connection.copy() |
| new_connection.settings_dict["OPTIONS"]["cursor_factory"] = MyCursor |
| try: |
| new_connection.connect() |
| self.assertEqual(new_connection.connection.cursor_factory, MyCursor) |
| finally: |
| new_connection.close() |
|
|
| def test_connect_no_is_usable_checks(self): |
| new_connection = connection.copy() |
| try: |
| with mock.patch.object(new_connection, "is_usable") as is_usable: |
| new_connection.connect() |
| is_usable.assert_not_called() |
| finally: |
| new_connection.close() |
|
|
| def test_client_encoding_utf8_enforce(self): |
| new_connection = connection.copy() |
| new_connection.settings_dict["OPTIONS"]["client_encoding"] = "iso-8859-2" |
| try: |
| new_connection.connect() |
| if is_psycopg3: |
| self.assertEqual(new_connection.connection.info.encoding, "utf-8") |
| else: |
| self.assertEqual(new_connection.connection.encoding, "UTF8") |
| finally: |
| new_connection.close() |
|
|
| def _select(self, val): |
| with connection.cursor() as cursor: |
| cursor.execute("SELECT %s::text[]", (val,)) |
| return cursor.fetchone()[0] |
|
|
| def test_select_ascii_array(self): |
| a = ["awef"] |
| b = self._select(a) |
| self.assertEqual(a[0], b[0]) |
|
|
| def test_select_unicode_array(self): |
| a = ["ᄲawef"] |
| b = self._select(a) |
| self.assertEqual(a[0], b[0]) |
|
|
| def test_lookup_cast(self): |
| from django.db.backends.postgresql.operations import DatabaseOperations |
|
|
| do = DatabaseOperations(connection=None) |
| lookups = ( |
| "iexact", |
| "contains", |
| "icontains", |
| "startswith", |
| "istartswith", |
| "endswith", |
| "iendswith", |
| "regex", |
| "iregex", |
| ) |
| for lookup in lookups: |
| with self.subTest(lookup=lookup): |
| self.assertIn("::text", do.lookup_cast(lookup)) |
| |
| for lookup in lookups: |
| for field_type in ("CICharField", "CIEmailField", "CITextField"): |
| with self.subTest(lookup=lookup, field_type=field_type): |
| self.assertIn( |
| "::citext", do.lookup_cast(lookup, internal_type=field_type) |
| ) |
|
|
| def test_correct_extraction_psycopg_version(self): |
| from django.db.backends.postgresql.base import Database, psycopg_version |
|
|
| with mock.patch.object(Database, "__version__", "4.2.1 (dt dec pq3 ext lo64)"): |
| self.assertEqual(psycopg_version(), (4, 2, 1)) |
| with mock.patch.object( |
| Database, "__version__", "4.2b0.dev1 (dt dec pq3 ext lo64)" |
| ): |
| self.assertEqual(psycopg_version(), (4, 2)) |
|
|
| @override_settings(DEBUG=True) |
| @unittest.skipIf(is_psycopg3, "psycopg2 specific test") |
| def test_copy_to_expert_cursors(self): |
| out = StringIO() |
| copy_expert_sql = "COPY django_session TO STDOUT (FORMAT CSV, HEADER)" |
| with connection.cursor() as cursor: |
| cursor.copy_expert(copy_expert_sql, out) |
| cursor.copy_to(out, "django_session") |
| self.assertEqual( |
| [q["sql"] for q in connection.queries], |
| [copy_expert_sql, "COPY django_session TO STDOUT"], |
| ) |
|
|
| @override_settings(DEBUG=True) |
| @unittest.skipUnless(is_psycopg3, "psycopg3 specific test") |
| def test_copy_cursors(self): |
| copy_sql = "COPY django_session TO STDOUT (FORMAT CSV, HEADER)" |
| with connection.cursor() as cursor: |
| with cursor.copy(copy_sql) as copy: |
| for row in copy: |
| pass |
| self.assertEqual([q["sql"] for q in connection.queries], [copy_sql]) |
|
|
| def test_get_database_version(self): |
| new_connection = connection.copy() |
| new_connection.pg_version = 110009 |
| self.assertEqual(new_connection.get_database_version(), (11, 9)) |
|
|
| @mock.patch.object(connection, "get_database_version", return_value=(11,)) |
| def test_check_database_version_supported(self, mocked_get_database_version): |
| msg = "PostgreSQL 12 or later is required (found 11)." |
| with self.assertRaisesMessage(NotSupportedError, msg): |
| connection.check_database_version_supported() |
| self.assertTrue(mocked_get_database_version.called) |
|
|
| def test_compose_sql_when_no_connection(self): |
| new_connection = connection.copy() |
| try: |
| self.assertEqual( |
| new_connection.ops.compose_sql("SELECT %s", ["test"]), |
| "SELECT 'test'", |
| ) |
| finally: |
| new_connection.close() |
|
|