2014-12-19 15:29:33 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: Nitin Madhok <nmadhok@clemson.edu>`
|
|
|
|
|
|
|
|
tests.unit.modules.zfs_test
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Import Salt Execution module to test
|
|
|
|
from salt.modules import zfs
|
|
|
|
|
|
|
|
# Import Salt Testing libs
|
|
|
|
from salttesting import skipIf, TestCase
|
|
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
|
|
|
|
# Import Mock libraries
|
|
|
|
from salttesting.mock import (
|
|
|
|
MagicMock,
|
|
|
|
patch,
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON,
|
|
|
|
)
|
|
|
|
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
|
|
|
|
# Globals
|
|
|
|
zfs.__salt__ = {}
|
|
|
|
|
|
|
|
|
|
|
|
# Skip this test case if we don't have access to mock!
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
|
|
class ZfsTestCase(TestCase):
|
|
|
|
'''
|
|
|
|
This class contains a set of functions that test salt.modules.zfs module
|
|
|
|
'''
|
|
|
|
|
|
|
|
@patch('os.path.exists', MagicMock(return_value=True))
|
|
|
|
def test_exists_success(self):
|
|
|
|
'''
|
|
|
|
Tests successful return of exists function
|
|
|
|
'''
|
|
|
|
ret = "NAME USED AVAIL REFER MOUNTPOINT\nmyzpool/mydataset 30K 157G 30K /myzpool/mydataset"
|
|
|
|
mock_cmd = MagicMock(return_value=ret)
|
|
|
|
with patch.dict(zfs.__salt__, {'cmd.run': mock_cmd}):
|
2014-12-19 16:45:16 +00:00
|
|
|
self.assertTrue(zfs.exists('myzpool/mydataset'))
|
2014-12-19 15:29:33 +00:00
|
|
|
|
|
|
|
@patch('os.path.exists', MagicMock(return_value=False))
|
2014-12-19 15:36:28 +00:00
|
|
|
def test_exists_failure_not_exists(self):
|
2014-12-19 15:29:33 +00:00
|
|
|
'''
|
2014-12-19 15:36:28 +00:00
|
|
|
Tests unsuccessful return of exists function if dataset does not exist
|
2014-12-19 15:29:33 +00:00
|
|
|
'''
|
|
|
|
ret = "cannot open 'myzpool/mydataset': dataset does not exist"
|
|
|
|
mock_cmd = MagicMock(return_value=ret)
|
|
|
|
with patch.dict(zfs.__salt__, {'cmd.run': mock_cmd}):
|
2014-12-19 16:45:16 +00:00
|
|
|
self.assertFalse(zfs.exists('myzpool/mydataset'))
|
2014-12-19 15:29:33 +00:00
|
|
|
|
2014-12-19 15:36:28 +00:00
|
|
|
@patch('os.path.exists', MagicMock(return_value=False))
|
|
|
|
def test_exists_failure_invalid_name(self):
|
|
|
|
'''
|
|
|
|
Tests unsuccessful return of exists function if dataset name is invalid
|
|
|
|
'''
|
|
|
|
ret = "cannot open 'myzpool/': invalid dataset name"
|
|
|
|
mock_cmd = MagicMock(return_value=ret)
|
|
|
|
with patch.dict(zfs.__salt__, {'cmd.run': mock_cmd}):
|
2014-12-19 16:45:16 +00:00
|
|
|
self.assertFalse(zfs.exists('myzpool/'))
|
2014-12-19 15:36:28 +00:00
|
|
|
|
2014-12-19 16:04:19 +00:00
|
|
|
@patch('os.path.exists', MagicMock(return_value=True))
|
|
|
|
def test_create_success(self):
|
|
|
|
'''
|
|
|
|
Tests successful return of create function if ZFS file system is created
|
|
|
|
'''
|
|
|
|
ret = {'myzpool/mydataset': 'created'}
|
|
|
|
mock_cmd = MagicMock(return_value="")
|
|
|
|
with patch.dict(zfs.__salt__, {'cmd.run': mock_cmd}):
|
|
|
|
self.assertEqual(zfs.create('myzpool/mydataset'), ret)
|
|
|
|
|
2014-12-19 15:29:33 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
from integration import run_tests
|
|
|
|
run_tests(ZfsTestCase, needs_daemon=False)
|