mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
|
'''
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
MagicMock,
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
|
|
# Import Salt Libs
|
|
import salt.modules.guestfs as guestfs
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class GuestfsTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.modules.guestfs
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {guestfs: {}}
|
|
|
|
# 'mount' function tests: 1
|
|
|
|
@patch('os.path.join', MagicMock(return_value=True))
|
|
@patch('os.path.isdir', MagicMock(return_value=True))
|
|
@patch('os.listdir', MagicMock(return_value=False))
|
|
def test_mount(self):
|
|
'''
|
|
Test if it mount an image
|
|
'''
|
|
mock = MagicMock(return_value='')
|
|
with patch.dict(guestfs.__salt__, {'cmd.run': mock}):
|
|
self.assertTrue(guestfs.mount('/srv/images/fedora.qcow'))
|