salt/tests/unit/modules/test_key.py

54 lines
1.5 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Rupesh Tare <rupesht@saltstack.com>`
'''
2015-01-30 15:23:08 +00:00
# Import Python libs
from __future__ import absolute_import, print_function, unicode_literals
2017-02-19 15:35:30 +00:00
import os.path
2015-01-30 15:23:08 +00:00
# Import Salt Testing Libs
2017-02-19 15:35:30 +00:00
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.utils.crypt
import salt.modules.key as key
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-02-19 15:35:30 +00:00
class KeyTestCase(TestCase, LoaderModuleMockMixin):
'''
Test cases for salt.modules.key
'''
def setup_loader_modules(self):
return {key: {}}
2017-02-19 15:35:30 +00:00
def test_finger(self):
'''
Test for finger
'''
with patch.object(os.path, 'join', return_value='A'):
with patch.object(salt.utils.crypt,
'pem_finger', return_value='A'):
with patch.dict(key.__opts__,
2016-03-01 04:14:58 +00:00
{'pki_dir': MagicMock(return_value='A'), 'hash_type': 'sha256'}):
self.assertEqual(key.finger(), 'A')
def test_finger_master(self):
'''
Test for finger
'''
with patch.object(os.path, 'join', return_value='A'):
with patch.object(salt.utils.crypt,
'pem_finger', return_value='A'):
with patch.dict(key.__opts__,
2016-03-01 04:14:58 +00:00
{'pki_dir': 'A', 'hash_type': 'sha256'}):
self.assertEqual(key.finger_master(), 'A')