mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-25 03:32:55 +03:00
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
from django.db import connection, migrations
|
|
from django.db.migrations.executor import MigrationExecutor
|
|
from django.contrib.postgres.operations import HStoreExtension
|
|
|
|
from localized_fields.models import LocalizedModel
|
|
from localized_fields.mixins import AtomicSlugRetryMixin
|
|
|
|
|
|
def define_fake_model(name='TestModel', fields=None):
|
|
attributes = {
|
|
'app_label': 'localized_fields',
|
|
'__module__': __name__,
|
|
'__name__': name
|
|
}
|
|
|
|
if fields:
|
|
attributes.update(fields)
|
|
|
|
model = type(name, (AtomicSlugRetryMixin,LocalizedModel,), attributes)
|
|
return model
|
|
|
|
|
|
def get_fake_model(name='TestModel', fields=None):
|
|
"""Creates a fake model to use during unit tests."""
|
|
|
|
model = define_fake_model(name, fields)
|
|
|
|
class TestProject:
|
|
|
|
def clone(self, *_args, **_kwargs):
|
|
return self
|
|
|
|
@property
|
|
def apps(self):
|
|
return self
|
|
|
|
class TestMigration(migrations.Migration):
|
|
operations = [HStoreExtension()]
|
|
|
|
with connection.schema_editor() as schema_editor:
|
|
migration_executor = MigrationExecutor(schema_editor.connection)
|
|
migration_executor.apply_migration(
|
|
TestProject(), TestMigration('eh', 'localized_fields'))
|
|
|
|
schema_editor.create_model(model)
|
|
|
|
return model
|