mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
54 lines
1.4 KiB
Python
54 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Rahul Handay <rahulha@saltstack.com>
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
MagicMock,
|
|
mock_open,
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
|
|
# Import Salt Libs
|
|
import salt.modules.nfs3 as nfs3
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class NfsTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.modules.nfs3
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {nfs3: {}}
|
|
|
|
def test_list_exports(self):
|
|
'''
|
|
Test for List configured exports
|
|
'''
|
|
with patch('salt.utils.files.fopen', mock_open(read_data='A B1(23')):
|
|
exports = nfs3.list_exports()
|
|
assert exports == {'A': [{'hosts': 'B1', 'options': ['23']}]}, exports
|
|
|
|
def test_del_export(self):
|
|
'''
|
|
Test for Remove an export
|
|
'''
|
|
list_exports_mock = MagicMock(return_value={
|
|
'A': [
|
|
{'hosts': ['B1'],
|
|
'options': ['23']},
|
|
],
|
|
})
|
|
with patch.object(nfs3, 'list_exports', list_exports_mock), \
|
|
patch.object(nfs3, '_write_exports', MagicMock(return_value=None)):
|
|
result = nfs3.del_export(path='A')
|
|
assert result == {}, result
|