mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Merge pull request #19863 from jayeshka/djangomod-unit-test
adding djangomod unit test case
This commit is contained in:
commit
c49361a1f0
97
tests/unit/modules/djangomod_test.py
Normal file
97
tests/unit/modules/djangomod_test.py
Normal file
@ -0,0 +1,97 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
'''
|
||||
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
||||
'''
|
||||
|
||||
# Import Salt Testing Libs
|
||||
from salttesting import TestCase, skipIf
|
||||
from salttesting.mock import (
|
||||
MagicMock,
|
||||
patch,
|
||||
NO_MOCK,
|
||||
NO_MOCK_REASON
|
||||
)
|
||||
|
||||
# Import Salt Libs
|
||||
from salt.modules import djangomod
|
||||
|
||||
# Globals
|
||||
djangomod.__grains__ = {}
|
||||
djangomod.__salt__ = {}
|
||||
djangomod.__context__ = {}
|
||||
|
||||
|
||||
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
||||
class DjangomodTestCase(TestCase):
|
||||
'''
|
||||
Test cases for salt.modules.djangomod
|
||||
'''
|
||||
# 'command' function tests: 1
|
||||
|
||||
@patch('salt.modules.djangomod._get_django_admin',
|
||||
MagicMock(return_value=True))
|
||||
def test_command(self):
|
||||
'''
|
||||
Test if it runs arbitrary django management command
|
||||
'''
|
||||
mock = MagicMock(return_value=True)
|
||||
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
|
||||
self.assertTrue(djangomod.command('DJANGO_SETTINGS_MODULE',
|
||||
'validate'))
|
||||
|
||||
# 'syncdb' function tests: 1
|
||||
|
||||
@patch('salt.modules.djangomod._get_django_admin',
|
||||
MagicMock(return_value=True))
|
||||
def test_syncdb(self):
|
||||
'''
|
||||
Test if it runs the Django-Admin syncdb command
|
||||
'''
|
||||
mock = MagicMock(return_value=True)
|
||||
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
|
||||
self.assertTrue(djangomod.syncdb('DJANGO_SETTINGS_MODULE'))
|
||||
|
||||
# 'createsuperuser' function tests: 1
|
||||
|
||||
@patch('salt.modules.djangomod._get_django_admin',
|
||||
MagicMock(return_value=True))
|
||||
def test_createsuperuser(self):
|
||||
'''
|
||||
Test if it create a super user for the database.
|
||||
'''
|
||||
mock = MagicMock(return_value=True)
|
||||
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
|
||||
self.assertTrue(djangomod.createsuperuser('DJANGO_SETTINGS_MODULE',
|
||||
'SALT',
|
||||
'salt@slatstack.com'))
|
||||
|
||||
# 'loaddata' function tests: 1
|
||||
|
||||
@patch('salt.modules.djangomod._get_django_admin',
|
||||
MagicMock(return_value=True))
|
||||
def test_loaddata(self):
|
||||
'''
|
||||
Test if it loads fixture data
|
||||
'''
|
||||
mock = MagicMock(return_value=True)
|
||||
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
|
||||
self.assertTrue(djangomod.loaddata('DJANGO_SETTINGS_MODULE',
|
||||
'mydata'))
|
||||
|
||||
# 'collectstatic' function tests: 1
|
||||
|
||||
@patch('salt.modules.djangomod._get_django_admin',
|
||||
MagicMock(return_value=True))
|
||||
def test_collectstatic(self):
|
||||
'''
|
||||
Test if it collect static files from each of your applications
|
||||
into a single location
|
||||
'''
|
||||
mock = MagicMock(return_value=True)
|
||||
with patch.dict(djangomod.__salt__, {'cmd.run': mock}):
|
||||
self.assertTrue(djangomod.collectstatic('DJANGO_SETTINGS_MODULE'))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from integration import run_tests
|
||||
run_tests(DjangomodTestCase, needs_daemon=False)
|
Loading…
Reference in New Issue
Block a user