summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdam Chainz <adam@adamj.eu>2015-05-24 11:16:21 +0100
committerTim Graham <timograham@gmail.com>2015-05-30 20:37:57 -0400
commite60cce4e401ae9481b66b6c7821e85237f1baa1a (patch)
treef0f537e10783050d85b9d98a5e7fb0e0d9a47be2 /tests
parent00e8e514e173dbbbc9d30f5753f4605eeffb2340 (diff)
Fixed #24846 -- Added support to MySQL SchemaEditor for all blob/text data types
Diffstat (limited to 'tests')
-rw-r--r--tests/schema/fields.py9
-rw-r--r--tests/schema/tests.py21
2 files changed, 29 insertions, 1 deletions
diff --git a/tests/schema/fields.py b/tests/schema/fields.py
index 0392a29aa2..8499477d65 100644
--- a/tests/schema/fields.py
+++ b/tests/schema/fields.py
@@ -1,3 +1,4 @@
+from django.db import models
from django.db.models.fields.related import (
RECURSIVE_RELATIONSHIP_CONSTANT, ManyRelatedObjectsDescriptor,
ManyToManyField, ManyToManyRel, RelatedField,
@@ -56,3 +57,11 @@ class CustomManyToManyField(RelatedField):
class InheritedManyToManyField(ManyToManyField):
pass
+
+
+class MediumBlobField(models.BinaryField):
+ """
+ A MySQL BinaryField that uses a different blob size.
+ """
+ def db_type(self, connection):
+ return 'MEDIUMBLOB'
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index 5128c9ec1e..2c4e79f98d 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -17,7 +17,9 @@ from django.db.models.fields.related import (
from django.db.transaction import atomic
from django.test import TransactionTestCase, skipIfDBFeature
-from .fields import CustomManyToManyField, InheritedManyToManyField
+from .fields import (
+ CustomManyToManyField, InheritedManyToManyField, MediumBlobField,
+)
from .models import (
Author, AuthorWithDefaultHeight, AuthorWithEvenLongerName, Book, BookWeak,
BookWithLongName, BookWithO2O, BookWithSlug, Note, NoteRename, Tag,
@@ -383,6 +385,23 @@ class SchemaTests(TransactionTestCase):
# these two types.
self.assertIn(columns['bits'][0], ("BinaryField", "TextField"))
+ @unittest.skipUnless(connection.vendor == 'mysql', "MySQL specific")
+ def test_add_binaryfield_mediumblob(self):
+ """
+ Test adding a custom-sized binary field on MySQL (#24846).
+ """
+ # Create the table
+ with connection.schema_editor() as editor:
+ editor.create_model(Author)
+ # Add the new field with default
+ new_field = MediumBlobField(blank=True, default=b'123')
+ new_field.set_attributes_from_name('bits')
+ with connection.schema_editor() as editor:
+ editor.add_field(Author, new_field)
+ columns = self.column_classes(Author)
+ # Introspection treats BLOBs as TextFields
+ self.assertEqual(columns['bits'][0], "TextField")
+
def test_alter(self):
"""
Tests simple altering of fields