2013-07-01 20:22:27 +08:00
|
|
|
from unittest import skipUnless
|
|
|
|
|
2014-05-08 03:49:45 +08:00
|
|
|
from django.db import connection
|
2016-12-01 23:54:58 +08:00
|
|
|
from django.db.models.deletion import CASCADE
|
|
|
|
from django.db.models.fields.related import ForeignKey
|
2016-12-16 02:31:08 +08:00
|
|
|
from django.test import TestCase, TransactionTestCase
|
2012-11-05 02:16:06 +08:00
|
|
|
|
2014-12-24 22:55:57 +08:00
|
|
|
from .models import Article, ArticleTranslation, IndexTogetherSingleList
|
2012-11-05 02:16:06 +08:00
|
|
|
|
|
|
|
|
2014-12-05 00:56:11 +08:00
|
|
|
class SchemaIndexesTests(TestCase):
|
|
|
|
"""
|
|
|
|
Test index handling by the db.backends.schema infrastructure.
|
|
|
|
"""
|
2015-02-26 02:48:35 +08:00
|
|
|
|
|
|
|
def test_index_name_hash(self):
|
|
|
|
"""
|
|
|
|
Index names should be deterministic.
|
|
|
|
"""
|
|
|
|
with connection.schema_editor() as editor:
|
|
|
|
index_name = editor._create_index_name(
|
|
|
|
model=Article,
|
2016-07-08 22:11:19 +08:00
|
|
|
column_names=("c1",),
|
2015-02-26 02:48:35 +08:00
|
|
|
suffix="123",
|
|
|
|
)
|
2016-07-08 22:11:19 +08:00
|
|
|
self.assertEqual(index_name, "indexes_article_c1_a52bd80b123")
|
|
|
|
|
|
|
|
def test_index_name(self):
|
|
|
|
"""
|
|
|
|
Index names on the built-in database backends::
|
|
|
|
* Are truncated as needed.
|
|
|
|
* Include all the column names.
|
|
|
|
* Include a deterministic hash.
|
|
|
|
"""
|
|
|
|
long_name = 'l%sng' % ('o' * 100)
|
|
|
|
with connection.schema_editor() as editor:
|
|
|
|
index_name = editor._create_index_name(
|
|
|
|
model=Article,
|
|
|
|
column_names=('c1', 'c2', long_name),
|
|
|
|
suffix='ix',
|
|
|
|
)
|
|
|
|
expected = {
|
|
|
|
'mysql': 'indexes_article_c1_c2_looooooooooooooooooo_255179b2ix',
|
|
|
|
'oracle': 'indexes_a_c1_c2_loo_255179b2ix',
|
|
|
|
'postgresql': 'indexes_article_c1_c2_loooooooooooooooooo_255179b2ix',
|
|
|
|
'sqlite': 'indexes_article_c1_c2_l%sng_255179b2ix' % ('o' * 100),
|
|
|
|
}
|
|
|
|
if connection.vendor not in expected:
|
|
|
|
self.skipTest('This test is only supported on the built-in database backends.')
|
|
|
|
self.assertEqual(index_name, expected[connection.vendor])
|
2015-02-26 02:48:35 +08:00
|
|
|
|
2014-12-05 00:56:11 +08:00
|
|
|
def test_index_together(self):
|
2014-12-24 17:42:24 +08:00
|
|
|
editor = connection.schema_editor()
|
|
|
|
index_sql = editor._model_indexes_sql(Article)
|
2014-12-05 00:56:11 +08:00
|
|
|
self.assertEqual(len(index_sql), 1)
|
2014-12-24 17:42:24 +08:00
|
|
|
# Ensure the index name is properly quoted
|
|
|
|
self.assertIn(
|
|
|
|
connection.ops.quote_name(
|
|
|
|
editor._create_index_name(Article, ['headline', 'pub_date'], suffix='_idx')
|
|
|
|
),
|
|
|
|
index_sql[0]
|
|
|
|
)
|
2014-12-05 00:56:11 +08:00
|
|
|
|
|
|
|
def test_index_together_single_list(self):
|
|
|
|
# Test for using index_together with a single list (#22172)
|
|
|
|
index_sql = connection.schema_editor()._model_indexes_sql(IndexTogetherSingleList)
|
|
|
|
self.assertEqual(len(index_sql), 1)
|
|
|
|
|
2016-04-08 10:04:45 +08:00
|
|
|
@skipUnless(connection.vendor == 'postgresql', "This is a postgresql-specific issue")
|
2014-12-05 00:56:11 +08:00
|
|
|
def test_postgresql_text_indexes(self):
|
|
|
|
"""Test creation of PostgreSQL-specific text indexes (#12234)"""
|
|
|
|
from .models import IndexedArticle
|
|
|
|
index_sql = connection.schema_editor()._model_indexes_sql(IndexedArticle)
|
|
|
|
self.assertEqual(len(index_sql), 5)
|
2016-07-15 22:34:37 +08:00
|
|
|
self.assertIn('("headline" varchar_pattern_ops)', index_sql[1])
|
2014-12-05 00:56:11 +08:00
|
|
|
self.assertIn('("body" text_pattern_ops)', index_sql[3])
|
|
|
|
# unique=True and db_index=True should only create the varchar-specific
|
|
|
|
# index (#19441).
|
|
|
|
self.assertIn('("slug" varchar_pattern_ops)', index_sql[4])
|
|
|
|
|
2016-04-08 10:04:45 +08:00
|
|
|
@skipUnless(connection.vendor == 'postgresql', "This is a postgresql-specific issue")
|
2014-12-05 00:56:11 +08:00
|
|
|
def test_postgresql_virtual_relation_indexes(self):
|
|
|
|
"""Test indexes are not created for related objects"""
|
|
|
|
index_sql = connection.schema_editor()._model_indexes_sql(Article)
|
|
|
|
self.assertEqual(len(index_sql), 1)
|
2014-12-24 22:55:57 +08:00
|
|
|
|
2016-12-16 02:31:08 +08:00
|
|
|
|
|
|
|
@skipUnless(connection.vendor == 'mysql', 'MySQL tests')
|
|
|
|
class SchemaIndexesMySQLTests(TransactionTestCase):
|
|
|
|
available_apps = ['indexes']
|
|
|
|
|
2014-12-24 22:55:57 +08:00
|
|
|
def test_no_index_for_foreignkey(self):
|
|
|
|
"""
|
|
|
|
MySQL on InnoDB already creates indexes automatically for foreign keys.
|
2016-06-28 20:22:20 +08:00
|
|
|
(#14180). An index should be created if db_constraint=False (#26171).
|
2014-12-24 22:55:57 +08:00
|
|
|
"""
|
|
|
|
storage = connection.introspection.get_storage_engine(
|
|
|
|
connection.cursor(), ArticleTranslation._meta.db_table
|
|
|
|
)
|
|
|
|
if storage != "InnoDB":
|
|
|
|
self.skip("This test only applies to the InnoDB storage engine")
|
|
|
|
index_sql = connection.schema_editor()._model_indexes_sql(ArticleTranslation)
|
2016-06-28 20:22:20 +08:00
|
|
|
self.assertEqual(index_sql, [
|
2016-07-08 22:11:19 +08:00
|
|
|
'CREATE INDEX `indexes_articletranslation_article_no_constraint_id_d6c0806b` '
|
2016-06-28 20:22:20 +08:00
|
|
|
'ON `indexes_articletranslation` (`article_no_constraint_id`)'
|
|
|
|
])
|
2016-12-01 23:54:58 +08:00
|
|
|
|
|
|
|
# The index also shouldn't be created if the ForeignKey is added after
|
|
|
|
# the model was created.
|
2016-12-16 02:31:08 +08:00
|
|
|
field_created = False
|
|
|
|
try:
|
|
|
|
with connection.schema_editor() as editor:
|
|
|
|
new_field = ForeignKey(Article, CASCADE)
|
|
|
|
new_field.set_attributes_from_name('new_foreign_key')
|
|
|
|
editor.add_field(ArticleTranslation, new_field)
|
|
|
|
field_created = True
|
|
|
|
self.assertEqual(editor.deferred_sql, [
|
|
|
|
'ALTER TABLE `indexes_articletranslation` '
|
|
|
|
'ADD CONSTRAINT `indexes_articletrans_new_foreign_key_id_d27a9146_fk_indexes_a` '
|
|
|
|
'FOREIGN KEY (`new_foreign_key_id`) REFERENCES `indexes_article` (`id`)'
|
|
|
|
])
|
|
|
|
finally:
|
|
|
|
if field_created:
|
|
|
|
with connection.schema_editor() as editor:
|
|
|
|
editor.remove_field(ArticleTranslation, new_field)
|