summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-05-07 21:50:09 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-05-08 22:11:15 +0200
commitc70a61eb49e4ed8f3b2a5011a7a5e6cda43c8598 (patch)
treee59c24f409be666c224f986ce21c423d4ee0b2fe
parent43a80f4812a762c2ea96b3de45662ace04404287 (diff)
Replaced vendor checks by three feature flags.
-rw-r--r--django/db/backends/__init__.py6
-rw-r--r--django/db/backends/mysql/base.py2
-rw-r--r--django/db/backends/oracle/base.py2
-rw-r--r--tests/admin_views/tests.py6
-rw-r--r--tests/backends/tests.py5
-rw-r--r--tests/model_fields/tests.py5
-rw-r--r--tests/serializers_regress/tests.py7
7 files changed, 17 insertions, 16 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py
index e9d644e506..a9bf3ea9cb 100644
--- a/django/db/backends/__init__.py
+++ b/django/db/backends/__init__.py
@@ -481,6 +481,7 @@ class BaseDatabaseFeatures(object):
can_return_id_from_insert = False
has_bulk_insert = False
uses_savepoints = False
+ can_release_savepoints = True
can_combine_inserts_with_and_without_auto_increment_pk = False
# If True, don't use integer foreign keys referring to, e.g., positive
@@ -512,6 +513,8 @@ class BaseDatabaseFeatures(object):
supports_subqueries_in_group_by = True
supports_bitwise_or = True
+ supports_binary_field = True
+
# Do time/datetime fields have microsecond precision?
supports_microsecond_precision = True
@@ -605,6 +608,9 @@ class BaseDatabaseFeatures(object):
# statements before executing them?
requires_sqlparse_for_splitting = True
+ # Suffix for backends that don't support "SELECT xxx;" queries.
+ bare_select_suffix = ''
+
def __init__(self, connection):
self.connection = connection
diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py
index 85bcd8f79b..70d9a29d56 100644
--- a/django/db/backends/mysql/base.py
+++ b/django/db/backends/mysql/base.py
@@ -172,6 +172,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
has_select_for_update_nowait = False
supports_forward_references = False
supports_long_model_names = False
+ # XXX MySQL DB-API drivers currently fail on binary data on Python 3.
+ supports_binary_field = six.PY2
supports_microsecond_precision = False
supports_regex_backreferencing = False
supports_date_lookup_using_string = False
diff --git a/django/db/backends/oracle/base.py b/django/db/backends/oracle/base.py
index 1a4ff172e8..e46b4f2db8 100644
--- a/django/db/backends/oracle/base.py
+++ b/django/db/backends/oracle/base.py
@@ -96,6 +96,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
needs_datetime_string_cast = False
interprets_empty_strings_as_nulls = True
uses_savepoints = True
+ can_release_savepoints = False
has_select_for_update = True
has_select_for_update_nowait = True
can_return_id_from_insert = True
@@ -116,6 +117,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
requires_literal_defaults = True
connection_persists_old_columns = True
closed_cursor_error_class = InterfaceError
+ bare_select_suffix = " FROM DUAL"
class DatabaseOperations(BaseDatabaseOperations):
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index 384d31c2a3..9742fa2ef5 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -3937,8 +3937,7 @@ class UserAdminTest(TestCase):
ContentType.objects.clear_cache()
expected_queries = 10
- # Oracle doesn't implement "RELEASE SAVPOINT", see #20387.
- if connection.vendor == 'oracle':
+ if not connection.features.can_release_savepoints:
expected_queries -= 1
with self.assertNumQueries(expected_queries):
@@ -3980,8 +3979,7 @@ class GroupAdminTest(TestCase):
g = Group.objects.create(name="test_group")
expected_queries = 8
- # Oracle doesn't implement "RELEASE SAVPOINT", see #20387.
- if connection.vendor == 'oracle':
+ if not connection.features.can_release_savepoints:
expected_queries -= 1
with self.assertNumQueries(expected_queries):
diff --git a/tests/backends/tests.py b/tests/backends/tests.py
index 3608c9dae4..29edaced6f 100644
--- a/tests/backends/tests.py
+++ b/tests/backends/tests.py
@@ -130,7 +130,6 @@ class SQLiteTests(TestCase):
self.assertRaises(NotImplementedError,
models.Item.objects.all().aggregate, aggregate('last_modified'))
-
def test_convert_values_to_handle_null_value(self):
from django.db.backends.sqlite3.base import DatabaseOperations
convert_values = DatabaseOperations(connection).convert_values
@@ -464,9 +463,7 @@ class EscapingChecks(TestCase):
EscapingChecksDebug test case, to also test CursorDebugWrapper.
"""
- # For Oracle, when you want to select a value, you need to specify the
- # special pseudo-table 'dual'; a select with no from clause is invalid.
- bare_select_suffix = " FROM DUAL" if connection.vendor == 'oracle' else ""
+ bare_select_suffix = connection.features.bare_select_suffix
def test_paramless_no_escaping(self):
cursor = connection.cursor()
diff --git a/tests/model_fields/tests.py b/tests/model_fields/tests.py
index c1c240cafb..b33314bfd3 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -605,6 +605,7 @@ class FileFieldTests(unittest.TestCase):
class BinaryFieldTests(test.TestCase):
binary_data = b'\x00\x46\xFE'
+ @test.skipUnlessDBFeature('supports_binary_field')
def test_set_and_retrieve(self):
data_set = (self.binary_data, six.memoryview(self.binary_data))
for bdata in data_set:
@@ -619,10 +620,6 @@ class BinaryFieldTests(test.TestCase):
# Test default value
self.assertEqual(bytes(dm.short_data), b'\x08')
- if connection.vendor == 'mysql' and six.PY3:
- # Existing MySQL DB-API drivers fail on binary data.
- test_set_and_retrieve = unittest.expectedFailure(test_set_and_retrieve)
-
def test_max_length(self):
dm = DataModel(short_data=self.binary_data * 4)
self.assertRaises(ValidationError, dm.full_clean)
diff --git a/tests/serializers_regress/tests.py b/tests/serializers_regress/tests.py
index a2c748e242..5ee2a93a6f 100644
--- a/tests/serializers_regress/tests.py
+++ b/tests/serializers_regress/tests.py
@@ -10,7 +10,7 @@ from __future__ import unicode_literals
import datetime
import decimal
-from unittest import skip, skipUnless
+from unittest import skipUnless
import warnings
try:
@@ -24,7 +24,7 @@ from django.core.serializers.base import DeserializationError
from django.core.serializers.xml_serializer import DTDForbidden
from django.db import connection, models
from django.http import HttpResponse
-from django.test import TestCase
+from django.test import skipUnlessDBFeature, TestCase
from django.utils import six
from django.utils.functional import curry
@@ -481,8 +481,7 @@ def serializerTest(format, self):
for klass, count in instance_count.items():
self.assertEqual(count, klass.objects.count())
-if connection.vendor == 'mysql' and six.PY3:
- serializerTest = skip("Existing MySQL DB-API drivers fail on binary data.")(serializerTest)
+serializerTest = skipUnlessDBFeature('supports_binary_field')(serializerTest)
def naturalKeySerializerTest(format, self):