2013-02-09 23:30:33 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-12-24 19:25:17 +08:00
|
|
|
from django.apps import apps
|
2013-02-09 23:30:33 +08:00
|
|
|
from django.core.management.color import no_style
|
|
|
|
from django.core.management.sql import (sql_create, sql_delete, sql_indexes,
|
2013-02-24 00:07:50 +08:00
|
|
|
sql_destroy_indexes, sql_all)
|
2013-12-12 06:31:34 +08:00
|
|
|
from django.db import connections, DEFAULT_DB_ALIAS, router
|
2013-02-09 23:30:33 +08:00
|
|
|
from django.test import TestCase
|
|
|
|
from django.utils import six
|
|
|
|
|
2013-02-26 20:19:18 +08:00
|
|
|
# See also initial_sql_regress for 'custom_sql_for_model' tests
|
2013-02-09 23:30:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
class SQLCommandsTestCase(TestCase):
|
|
|
|
"""Tests for several functions in django/core/management/sql.py"""
|
2013-05-29 21:47:21 +08:00
|
|
|
def count_ddl(self, output, cmd):
|
|
|
|
return len([o for o in output if o.startswith(cmd)])
|
|
|
|
|
2013-02-09 23:30:33 +08:00
|
|
|
def test_sql_create(self):
|
2013-12-30 04:11:12 +08:00
|
|
|
app_config = apps.get_app_config('commands_sql')
|
|
|
|
output = sql_create(app_config, no_style(), connections[DEFAULT_DB_ALIAS])
|
2013-05-29 21:47:21 +08:00
|
|
|
create_tables = [o for o in output if o.startswith('CREATE TABLE')]
|
|
|
|
self.assertEqual(len(create_tables), 3)
|
2013-02-23 07:06:45 +08:00
|
|
|
# Lower so that Oracle's upper case tbl names wont break
|
2013-05-29 21:47:21 +08:00
|
|
|
sql = create_tables[-1].lower()
|
2013-02-23 07:06:45 +08:00
|
|
|
six.assertRegex(self, sql, r'^create table .commands_sql_book.*')
|
2013-02-09 23:30:33 +08:00
|
|
|
|
|
|
|
def test_sql_delete(self):
|
2013-12-30 04:11:12 +08:00
|
|
|
app_config = apps.get_app_config('commands_sql')
|
2014-06-09 09:57:55 +08:00
|
|
|
output = sql_delete(app_config, no_style(), connections[DEFAULT_DB_ALIAS], close_connection=False)
|
2013-05-29 21:47:21 +08:00
|
|
|
drop_tables = [o for o in output if o.startswith('DROP TABLE')]
|
|
|
|
self.assertEqual(len(drop_tables), 3)
|
|
|
|
# Lower so that Oracle's upper case tbl names wont break
|
|
|
|
sql = drop_tables[-1].lower()
|
|
|
|
six.assertRegex(self, sql, r'^drop table .commands_sql_comment.*')
|
2013-02-09 23:30:33 +08:00
|
|
|
|
|
|
|
def test_sql_indexes(self):
|
2013-12-30 04:11:12 +08:00
|
|
|
app_config = apps.get_app_config('commands_sql')
|
|
|
|
output = sql_indexes(app_config, no_style(), connections[DEFAULT_DB_ALIAS])
|
2013-05-29 21:47:21 +08:00
|
|
|
# PostgreSQL creates one additional index for CharField
|
|
|
|
self.assertIn(self.count_ddl(output, 'CREATE INDEX'), [3, 4])
|
2013-02-09 23:30:33 +08:00
|
|
|
|
2013-02-24 00:07:50 +08:00
|
|
|
def test_sql_destroy_indexes(self):
|
2013-12-30 04:11:12 +08:00
|
|
|
app_config = apps.get_app_config('commands_sql')
|
|
|
|
output = sql_destroy_indexes(app_config, no_style(), connections[DEFAULT_DB_ALIAS])
|
2013-05-29 21:47:21 +08:00
|
|
|
# PostgreSQL creates one additional index for CharField
|
|
|
|
self.assertIn(self.count_ddl(output, 'DROP INDEX'), [3, 4])
|
2013-02-24 00:07:50 +08:00
|
|
|
|
2013-02-09 23:30:33 +08:00
|
|
|
def test_sql_all(self):
|
2013-12-30 04:11:12 +08:00
|
|
|
app_config = apps.get_app_config('commands_sql')
|
|
|
|
output = sql_all(app_config, no_style(), connections[DEFAULT_DB_ALIAS])
|
2013-05-29 21:47:21 +08:00
|
|
|
|
|
|
|
self.assertEqual(self.count_ddl(output, 'CREATE TABLE'), 3)
|
|
|
|
# PostgreSQL creates one additional index for CharField
|
|
|
|
self.assertIn(self.count_ddl(output, 'CREATE INDEX'), [3, 4])
|
2013-10-16 23:58:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
class TestRouter(object):
|
|
|
|
def allow_migrate(self, db, model):
|
|
|
|
return False
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2013-10-16 23:58:05 +08:00
|
|
|
class SQLCommandsRouterTestCase(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self._old_routers = router.routers
|
|
|
|
router.routers = [TestRouter()]
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
router.routers = self._old_routers
|
|
|
|
|
|
|
|
def test_router_honored(self):
|
2013-12-30 04:11:12 +08:00
|
|
|
app_config = apps.get_app_config('commands_sql')
|
2013-10-16 23:58:05 +08:00
|
|
|
for sql_command in (sql_all, sql_create, sql_delete, sql_indexes, sql_destroy_indexes):
|
2014-06-09 09:57:55 +08:00
|
|
|
if sql_command is sql_delete:
|
|
|
|
output = sql_command(app_config, no_style(), connections[DEFAULT_DB_ALIAS], close_connection=False)
|
|
|
|
else:
|
|
|
|
output = sql_command(app_config, no_style(), connections[DEFAULT_DB_ALIAS])
|
2013-10-16 23:58:05 +08:00
|
|
|
self.assertEqual(len(output), 0,
|
|
|
|
"%s command is not honoring routers" % sql_command.__name__)
|