mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
58 lines
1.5 KiB
Python
58 lines
1.5 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.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
|
|
# Import Salt Libs
|
|
import salt.modules.pecl as pecl
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class PeclTestCase(TestCase):
|
|
'''
|
|
Test cases for salt.modules.pecl
|
|
'''
|
|
def test_install(self):
|
|
'''
|
|
Test to installs one or several pecl extensions.
|
|
'''
|
|
with patch.object(pecl, '_pecl', return_value='A'):
|
|
self.assertEqual(pecl.install('fuse', force=True), 'A')
|
|
|
|
self.assertFalse(pecl.install('fuse'))
|
|
|
|
with patch.object(pecl, 'list_', return_value={'A': ['A', 'B']}):
|
|
self.assertTrue(pecl.install(['A', 'B']))
|
|
|
|
def test_uninstall(self):
|
|
'''
|
|
Test to uninstall one or several pecl extensions.
|
|
'''
|
|
with patch.object(pecl, '_pecl', return_value='A'):
|
|
self.assertEqual(pecl.uninstall('fuse'), 'A')
|
|
|
|
def test_update(self):
|
|
'''
|
|
Test to update one or several pecl extensions.
|
|
'''
|
|
with patch.object(pecl, '_pecl', return_value='A'):
|
|
self.assertEqual(pecl.update('fuse'), 'A')
|
|
|
|
def test_list_(self):
|
|
'''
|
|
Test to list installed pecl extensions.
|
|
'''
|
|
with patch.object(pecl, '_pecl', return_value='A\nB'):
|
|
self.assertDictEqual(pecl.list_('channel'), {})
|