2015-01-14 10:59:14 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Rupesh Tare <rupesht@saltstack.com>`
|
|
|
|
'''
|
|
|
|
|
2015-01-21 02:26:45 +00:00
|
|
|
# Import Python libs
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-01-14 10:59:14 +00:00
|
|
|
# Import Salt Testing Libs
|
2017-02-19 15:35:30 +00:00
|
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import TestCase, skipIf
|
|
|
|
from tests.support.mock import (
|
2015-01-14 10:59:14 +00:00
|
|
|
MagicMock,
|
|
|
|
patch,
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON
|
|
|
|
)
|
|
|
|
|
|
|
|
# Import Salt Libs
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.modules.genesis as genesis
|
2015-01-14 10:59:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-02-19 15:35:30 +00:00
|
|
|
class GenesisTestCase(TestCase, LoaderModuleMockMixin):
|
2015-01-14 10:59:14 +00:00
|
|
|
'''
|
|
|
|
Test cases for salt.modules.genesis
|
|
|
|
'''
|
2017-03-22 12:12:36 +00:00
|
|
|
def setup_loader_modules(self):
|
|
|
|
return {genesis: {}}
|
2017-02-19 15:35:30 +00:00
|
|
|
|
2015-01-14 10:59:14 +00:00
|
|
|
def test_bootstrap(self):
|
|
|
|
'''
|
|
|
|
Test for Create an image for a specific platform.
|
|
|
|
'''
|
|
|
|
mock = MagicMock(return_value=False)
|
|
|
|
with patch.dict(genesis.__salt__, {'file.directory_exists': mock}):
|
|
|
|
mock = MagicMock(side_effect=Exception('foo'))
|
|
|
|
with patch.dict(genesis.__salt__, {'file.mkdir': mock}):
|
|
|
|
self.assertEqual(genesis.bootstrap('platform', 'root'),
|
|
|
|
{'Error': "Exception('foo',)"})
|
|
|
|
|
|
|
|
with patch.object(genesis, '_bootstrap_yum', return_value='A'):
|
2015-12-05 01:44:42 +00:00
|
|
|
with patch.dict(genesis.__salt__, {'mount.umount': MagicMock(),
|
2015-12-07 22:19:22 +00:00
|
|
|
'file.rmdir': MagicMock(),
|
|
|
|
'file.directory_exists': MagicMock()}):
|
2015-12-07 15:52:06 +00:00
|
|
|
with patch.dict(genesis.__salt__, {'disk.blkid': MagicMock(return_value={})}):
|
2015-12-07 22:19:22 +00:00
|
|
|
self.assertEqual(genesis.bootstrap('rpm', 'root', 'dir'), None)
|
2015-01-14 10:59:14 +00:00
|
|
|
|
2017-08-24 10:00:36 +00:00
|
|
|
common_parms = {'platform': 'deb',
|
|
|
|
'root': 'root',
|
|
|
|
'img_format': 'dir',
|
|
|
|
'arch': 'amd64',
|
|
|
|
'flavor': 'stable',
|
|
|
|
'static_qemu': 'qemu'}
|
|
|
|
|
|
|
|
param_sets = [
|
|
|
|
|
|
|
|
{'params': {},
|
2017-08-24 13:04:37 +00:00
|
|
|
'cmd': ['debootstrap', '--foreign', '--arch', 'amd64',
|
2017-08-24 13:07:08 +00:00
|
|
|
'stable', 'root', 'http://ftp.debian.org/debian/']
|
2017-08-24 13:04:37 +00:00
|
|
|
},
|
2017-08-24 10:00:36 +00:00
|
|
|
|
|
|
|
{'params': {'pkgs': 'vim'},
|
2017-08-24 13:04:37 +00:00
|
|
|
'cmd': ['debootstrap', '--foreign', '--arch', 'amd64',
|
2017-08-24 13:07:08 +00:00
|
|
|
'--include', 'vim',
|
|
|
|
'stable', 'root', 'http://ftp.debian.org/debian/']
|
2017-08-24 13:04:37 +00:00
|
|
|
},
|
2017-08-24 10:00:36 +00:00
|
|
|
|
|
|
|
{'params': {'pkgs': 'vim,emacs'},
|
2017-08-24 13:04:37 +00:00
|
|
|
'cmd': ['debootstrap', '--foreign', '--arch', 'amd64',
|
2017-08-24 13:07:08 +00:00
|
|
|
'--include', 'vim,emacs',
|
|
|
|
'stable', 'root', 'http://ftp.debian.org/debian/']
|
2017-08-24 13:04:37 +00:00
|
|
|
},
|
2017-08-24 10:00:36 +00:00
|
|
|
|
|
|
|
{'params': {'pkgs': ['vim', 'emacs']},
|
2017-08-24 13:04:37 +00:00
|
|
|
'cmd': ['debootstrap', '--foreign', '--arch', 'amd64',
|
2017-08-24 13:07:08 +00:00
|
|
|
'--include', 'vim,emacs',
|
|
|
|
'stable', 'root', 'http://ftp.debian.org/debian/']
|
2017-08-24 13:04:37 +00:00
|
|
|
},
|
2017-08-24 10:00:36 +00:00
|
|
|
|
|
|
|
{'params': {'pkgs': ['vim', 'emacs'], 'exclude_pkgs': ['vim', 'foo']},
|
2017-08-24 13:04:37 +00:00
|
|
|
'cmd': ['debootstrap', '--foreign', '--arch', 'amd64',
|
2017-08-24 13:07:08 +00:00
|
|
|
'--include', 'vim,emacs', '--exclude', 'vim,foo',
|
|
|
|
'stable', 'root', 'http://ftp.debian.org/debian/']
|
2017-08-24 13:04:37 +00:00
|
|
|
},
|
2017-08-24 10:00:36 +00:00
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
for param_set in param_sets:
|
|
|
|
|
2015-12-05 01:44:42 +00:00
|
|
|
with patch.dict(genesis.__salt__, {'mount.umount': MagicMock(),
|
2015-12-07 22:19:22 +00:00
|
|
|
'file.rmdir': MagicMock(),
|
2017-08-24 10:00:36 +00:00
|
|
|
'file.directory_exists': MagicMock(),
|
2017-08-24 13:04:37 +00:00
|
|
|
'cmd.run': MagicMock(),
|
|
|
|
'disk.blkid': MagicMock(return_value={})}):
|
|
|
|
with patch('salt.modules.genesis.salt.utils.which', return_value=True):
|
2017-09-08 19:37:09 +00:00
|
|
|
with patch('salt.modules.genesis.salt.utils.validate.path.is_executable',
|
2017-09-07 15:04:39 +00:00
|
|
|
return_value=True):
|
|
|
|
param_set['params'].update(common_parms)
|
|
|
|
self.assertEqual(genesis.bootstrap(**param_set['params']), None)
|
|
|
|
genesis.__salt__['cmd.run'].assert_any_call(param_set['cmd'], python_shell=False)
|
2015-01-14 10:59:14 +00:00
|
|
|
|
2015-12-02 17:45:01 +00:00
|
|
|
with patch.object(genesis, '_bootstrap_pacman', return_value='A') as pacman_patch:
|
2015-12-07 22:19:22 +00:00
|
|
|
with patch.dict(genesis.__salt__, {'mount.umount': MagicMock(),
|
|
|
|
'file.rmdir': MagicMock(),
|
|
|
|
'file.directory_exists': MagicMock(),
|
|
|
|
'disk.blkid': MagicMock(return_value={})}):
|
|
|
|
genesis.bootstrap('pacman', 'root', 'dir')
|
|
|
|
pacman_patch.assert_called_with('root', img_format='dir', exclude_pkgs=[], pkgs=[])
|
2015-01-14 10:59:14 +00:00
|
|
|
|
|
|
|
def test_avail_platforms(self):
|
|
|
|
'''
|
|
|
|
Test for Return which platforms are available
|
|
|
|
'''
|
2017-04-10 13:00:57 +00:00
|
|
|
with patch('salt.utils.which', MagicMock(return_value=False)):
|
|
|
|
self.assertFalse(genesis.avail_platforms()['deb'])
|
2015-01-14 10:59:14 +00:00
|
|
|
|
|
|
|
def test_pack(self):
|
|
|
|
'''
|
|
|
|
Test for Pack up a directory structure, into a specific format
|
|
|
|
'''
|
|
|
|
with patch.object(genesis, '_tar', return_value='tar'):
|
|
|
|
self.assertEqual(genesis.pack('name', 'root'), None)
|
|
|
|
|
|
|
|
def test_unpack(self):
|
|
|
|
'''
|
|
|
|
Test for Unpack an image into a directory structure
|
|
|
|
'''
|
|
|
|
with patch.object(genesis, '_untar', return_value='untar'):
|
|
|
|
self.assertEqual(genesis.unpack('name', 'root'), None)
|