2017-02-12 04:37:49 +08:00
|
|
|
import copy
|
2019-11-13 11:49:09 +08:00
|
|
|
from unittest import mock
|
2017-02-12 04:37:49 +08:00
|
|
|
|
2019-11-13 11:49:09 +08:00
|
|
|
from django.db import DEFAULT_DB_ALIAS, connection, connections
|
2017-02-12 04:37:49 +08:00
|
|
|
from django.db.backends.base.creation import (
|
|
|
|
TEST_DATABASE_PREFIX, BaseDatabaseCreation,
|
|
|
|
)
|
2020-02-19 19:52:56 +08:00
|
|
|
from django.test import SimpleTestCase, TransactionTestCase
|
2017-02-12 04:37:49 +08:00
|
|
|
|
2019-12-02 08:16:32 +08:00
|
|
|
from ..models import (
|
|
|
|
CircularA, CircularB, Object, ObjectReference, ObjectSelfReference,
|
|
|
|
)
|
2019-12-02 07:42:06 +08:00
|
|
|
|
2017-02-12 04:37:49 +08:00
|
|
|
|
2020-01-20 17:47:02 +08:00
|
|
|
def get_connection_copy():
|
|
|
|
# Get a copy of the default connection. (Can't use django.db.connection
|
|
|
|
# because it'll modify the default connection itself.)
|
|
|
|
test_connection = copy.copy(connections[DEFAULT_DB_ALIAS])
|
|
|
|
test_connection.settings_dict = copy.deepcopy(
|
|
|
|
connections[DEFAULT_DB_ALIAS].settings_dict
|
|
|
|
)
|
|
|
|
return test_connection
|
2017-02-12 04:37:49 +08:00
|
|
|
|
|
|
|
|
2020-01-20 17:47:02 +08:00
|
|
|
class TestDbSignatureTests(SimpleTestCase):
|
2017-02-12 04:37:49 +08:00
|
|
|
def test_default_name(self):
|
|
|
|
# A test db name isn't set.
|
|
|
|
prod_name = 'hodor'
|
2020-01-20 17:47:02 +08:00
|
|
|
test_connection = get_connection_copy()
|
2017-02-12 04:37:49 +08:00
|
|
|
test_connection.settings_dict['NAME'] = prod_name
|
|
|
|
test_connection.settings_dict['TEST'] = {'NAME': None}
|
|
|
|
signature = BaseDatabaseCreation(test_connection).test_db_signature()
|
|
|
|
self.assertEqual(signature[3], TEST_DATABASE_PREFIX + prod_name)
|
|
|
|
|
|
|
|
def test_custom_test_name(self):
|
|
|
|
# A regular test db name is set.
|
|
|
|
test_name = 'hodor'
|
2020-01-20 17:47:02 +08:00
|
|
|
test_connection = get_connection_copy()
|
2017-02-12 04:37:49 +08:00
|
|
|
test_connection.settings_dict['TEST'] = {'NAME': test_name}
|
|
|
|
signature = BaseDatabaseCreation(test_connection).test_db_signature()
|
|
|
|
self.assertEqual(signature[3], test_name)
|
|
|
|
|
|
|
|
def test_custom_test_name_with_test_prefix(self):
|
|
|
|
# A test db name prefixed with TEST_DATABASE_PREFIX is set.
|
|
|
|
test_name = TEST_DATABASE_PREFIX + 'hodor'
|
2020-01-20 17:47:02 +08:00
|
|
|
test_connection = get_connection_copy()
|
2017-02-12 04:37:49 +08:00
|
|
|
test_connection.settings_dict['TEST'] = {'NAME': test_name}
|
|
|
|
signature = BaseDatabaseCreation(test_connection).test_db_signature()
|
|
|
|
self.assertEqual(signature[3], test_name)
|
2019-11-13 11:49:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
@mock.patch.object(connection, 'ensure_connection')
|
|
|
|
@mock.patch('django.core.management.commands.migrate.Command.handle', return_value=None)
|
|
|
|
class TestDbCreationTests(SimpleTestCase):
|
|
|
|
def test_migrate_test_setting_false(self, mocked_migrate, mocked_ensure_connection):
|
2020-01-19 02:59:56 +08:00
|
|
|
test_connection = get_connection_copy()
|
|
|
|
test_connection.settings_dict['TEST']['MIGRATE'] = False
|
|
|
|
creation = test_connection.creation_class(test_connection)
|
|
|
|
old_database_name = test_connection.settings_dict['NAME']
|
2019-11-13 11:49:09 +08:00
|
|
|
try:
|
|
|
|
with mock.patch.object(creation, '_create_test_db'):
|
|
|
|
creation.create_test_db(verbosity=0, autoclobber=True, serialize=False)
|
|
|
|
mocked_migrate.assert_not_called()
|
|
|
|
finally:
|
2020-01-19 02:59:56 +08:00
|
|
|
with mock.patch.object(creation, '_destroy_test_db'):
|
|
|
|
creation.destroy_test_db(old_database_name, verbosity=0)
|
2019-11-13 11:49:09 +08:00
|
|
|
|
|
|
|
def test_migrate_test_setting_true(self, mocked_migrate, mocked_ensure_connection):
|
2020-01-19 02:59:56 +08:00
|
|
|
test_connection = get_connection_copy()
|
|
|
|
test_connection.settings_dict['TEST']['MIGRATE'] = True
|
|
|
|
creation = test_connection.creation_class(test_connection)
|
|
|
|
old_database_name = test_connection.settings_dict['NAME']
|
2019-11-13 11:49:09 +08:00
|
|
|
try:
|
|
|
|
with mock.patch.object(creation, '_create_test_db'):
|
|
|
|
creation.create_test_db(verbosity=0, autoclobber=True, serialize=False)
|
|
|
|
mocked_migrate.assert_called_once()
|
|
|
|
finally:
|
2020-01-19 02:59:56 +08:00
|
|
|
with mock.patch.object(creation, '_destroy_test_db'):
|
|
|
|
creation.destroy_test_db(old_database_name, verbosity=0)
|
2019-12-02 07:42:06 +08:00
|
|
|
|
|
|
|
|
2020-02-19 19:52:56 +08:00
|
|
|
class TestDeserializeDbFromString(TransactionTestCase):
|
|
|
|
available_apps = ['backends']
|
2019-12-02 07:42:06 +08:00
|
|
|
|
|
|
|
def test_circular_reference(self):
|
|
|
|
# deserialize_db_from_string() handles circular references.
|
|
|
|
data = """
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"model": "backends.object",
|
|
|
|
"pk": 1,
|
|
|
|
"fields": {"obj_ref": 1, "related_objects": []}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"model": "backends.objectreference",
|
|
|
|
"pk": 1,
|
|
|
|
"fields": {"obj": 1}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
"""
|
|
|
|
connection.creation.deserialize_db_from_string(data)
|
|
|
|
obj = Object.objects.get()
|
|
|
|
obj_ref = ObjectReference.objects.get()
|
|
|
|
self.assertEqual(obj.obj_ref, obj_ref)
|
|
|
|
self.assertEqual(obj_ref.obj, obj)
|
2019-12-02 08:16:32 +08:00
|
|
|
|
|
|
|
def test_self_reference(self):
|
|
|
|
# serialize_db_to_string() and deserialize_db_from_string() handles
|
|
|
|
# self references.
|
|
|
|
obj_1 = ObjectSelfReference.objects.create(key='X')
|
|
|
|
obj_2 = ObjectSelfReference.objects.create(key='Y', obj=obj_1)
|
|
|
|
obj_1.obj = obj_2
|
|
|
|
obj_1.save()
|
|
|
|
# Serialize objects.
|
|
|
|
with mock.patch('django.db.migrations.loader.MigrationLoader') as loader:
|
|
|
|
# serialize_db_to_string() serializes only migrated apps, so mark
|
|
|
|
# the backends app as migrated.
|
|
|
|
loader_instance = loader.return_value
|
|
|
|
loader_instance.migrated_apps = {'backends'}
|
|
|
|
data = connection.creation.serialize_db_to_string()
|
|
|
|
ObjectSelfReference.objects.all().delete()
|
|
|
|
# Deserialize objects.
|
|
|
|
connection.creation.deserialize_db_from_string(data)
|
|
|
|
obj_1 = ObjectSelfReference.objects.get(key='X')
|
|
|
|
obj_2 = ObjectSelfReference.objects.get(key='Y')
|
|
|
|
self.assertEqual(obj_1.obj, obj_2)
|
|
|
|
self.assertEqual(obj_2.obj, obj_1)
|
2019-12-02 08:16:32 +08:00
|
|
|
|
|
|
|
def test_circular_reference_with_natural_key(self):
|
|
|
|
# serialize_db_to_string() and deserialize_db_from_string() handles
|
|
|
|
# circular references for models with natural keys.
|
|
|
|
obj_a = CircularA.objects.create(key='A')
|
|
|
|
obj_b = CircularB.objects.create(key='B', obj=obj_a)
|
|
|
|
obj_a.obj = obj_b
|
|
|
|
obj_a.save()
|
|
|
|
# Serialize objects.
|
|
|
|
with mock.patch('django.db.migrations.loader.MigrationLoader') as loader:
|
|
|
|
# serialize_db_to_string() serializes only migrated apps, so mark
|
|
|
|
# the backends app as migrated.
|
|
|
|
loader_instance = loader.return_value
|
|
|
|
loader_instance.migrated_apps = {'backends'}
|
|
|
|
data = connection.creation.serialize_db_to_string()
|
|
|
|
CircularA.objects.all().delete()
|
|
|
|
CircularB.objects.all().delete()
|
|
|
|
# Deserialize objects.
|
|
|
|
connection.creation.deserialize_db_from_string(data)
|
|
|
|
obj_a = CircularA.objects.get()
|
|
|
|
obj_b = CircularB.objects.get()
|
|
|
|
self.assertEqual(obj_a.obj, obj_b)
|
|
|
|
self.assertEqual(obj_b.obj, obj_a)
|