mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Jayesh Kariya <jayeshk@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 skipIf, TestCase
|
|
from tests.support.mock import (
|
|
NO_MOCK,
|
|
NO_MOCK_REASON,
|
|
MagicMock,
|
|
patch)
|
|
|
|
# Import Salt Libs
|
|
import salt.states.aptpkg as aptpkg
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class AptTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.states.aptpkg
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {aptpkg: {}}
|
|
|
|
# 'held' function tests: 1
|
|
|
|
def test_held(self):
|
|
'''
|
|
Test to set package in 'hold' state, meaning it will not be upgraded.
|
|
'''
|
|
name = 'tmux'
|
|
|
|
ret = {'name': name,
|
|
'result': False,
|
|
'changes': {},
|
|
'comment': 'Package {0} does not have a state'.format(name)}
|
|
|
|
mock = MagicMock(return_value=False)
|
|
with patch.dict(aptpkg.__salt__, {'pkg.get_selections': mock}):
|
|
self.assertDictEqual(aptpkg.held(name), ret)
|