Skip to content

Commit

Permalink
Merge pull request #54632 from garethgreenaway/2019_2_1_port_50083
Browse files Browse the repository at this point in the history
[master] Porting #50083 to master
  • Loading branch information
dwoz authored Jan 2, 2020
2 parents 4b1c804 + 2fb246f commit c90447f
Show file tree
Hide file tree
Showing 2 changed files with 121 additions and 0 deletions.
99 changes: 99 additions & 0 deletions salt/modules/djangomod.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ def syncdb(settings_module,
minion the ``migrate`` option can be passed as ``True`` calling the
migrations to run after the syncdb completes
NOTE: The syncdb command was deprecated in Django 1.7 and removed in Django 1.9.
For Django versions 1.9 or higher use the `migrate` command instead.
CLI Example:
.. code-block:: bash
Expand All @@ -112,6 +115,102 @@ def syncdb(settings_module,
*args, **kwargs)


def migrate(settings_module,
app_label=None,
migration_name=None,
bin_env=None,
database=None,
pythonpath=None,
env=None,
noinput=True,
runas=None):
'''
Run migrate
Execute the Django-Admin migrate command (requires Django 1.7 or higher).
.. versionadded:: Neon
settings_module
Specifies the settings module to use.
The settings module should be in Python package syntax, e.g. mysite.settings.
If this isn’t provided, django-admin will use the DJANGO_SETTINGS_MODULE
environment variable.
app_label
Specific app to run migrations for, instead of all apps.
This may involve running other apps’ migrations too, due to dependencies.
migration_name
Named migration to be applied to a specific app.
Brings the database schema to a state where the named migration is applied,
but no later migrations in the same app are applied. This may involve
unapplying migrations if you have previously migrated past the named migration.
Use the name zero to unapply all migrations for an app.
bin_env
Path to pip (or to a virtualenv). This can be used to specify the path
to the pip to use when more than one Python release is installed (e.g.
``/usr/bin/pip-2.7`` or ``/usr/bin/pip-2.6``. If a directory path is
specified, it is assumed to be a virtualenv.
database
Database to migrate. Defaults to 'default'.
pythonpath
Adds the given filesystem path to the Python import search path.
If this isn’t provided, django-admin will use the PYTHONPATH environment variable.
env
A list of environment variables to be set prior to execution.
Example:
.. code-block:: yaml
module.run:
- name: django.migrate
- settings_module: my_django_app.settings
- env:
- DATABASE_USER: 'mydbuser'
noinput
Suppresses all user prompts. Defaults to True.
runas
The user name to run the command as.
CLI Example:
.. code-block:: bash
salt '*' django.migrate <settings_module>
salt '*' django.migrate <settings_module> <app_label>
salt '*' django.migrate <settings_module> <app_label> <migration_name>
'''
args = []
kwargs = {}
if database:
kwargs['database'] = database
if noinput:
args.append('noinput')

if app_label and migration_name:
cmd = "migrate {0} {1}".format(app_label, migration_name)
elif app_label:
cmd = "migrate {0}".format(app_label)
else:
cmd = 'migrate'

return command(settings_module,
cmd,
bin_env,
pythonpath,
env,
runas,
*args, **kwargs)


def createsuperuser(settings_module,
username,
email,
Expand Down
22 changes: 22 additions & 0 deletions tests/unit/modules/test_djangomod.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ def test_syncdb(self):
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
self.assertTrue(djangomod.syncdb('DJANGO_SETTINGS_MODULE'))

# 'migrate' function tests: 1

def test_migrate(self):
'''
Test if it runs the Django-Admin migrate command
'''
mock = MagicMock(return_value=True)
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
self.assertTrue(djangomod.migrate('DJANGO_SETTINGS_MODULE'))

# 'createsuperuser' function tests: 1

def test_createsuperuser(self):
Expand Down Expand Up @@ -186,6 +196,18 @@ def test_django_admin_cli_syncdb_migrate(self):
runas=None
)

def test_django_admin_cli_migrate(self):
mock = MagicMock()
with patch.dict(djangomod.__salt__,
{'cmd.run': mock}):
djangomod.migrate('settings.py')
mock.assert_called_once_with(
'django-admin.py migrate --settings=settings.py --noinput',
python_shell=False,
env=None,
runas=None
)

def test_django_admin_cli_createsuperuser(self):
mock = MagicMock()
with patch.dict(djangomod.__salt__,
Expand Down

0 comments on commit c90447f

Please sign in to comment.