mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
92 lines
2.4 KiB
Python
92 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Rupesh Tare <rupesht@saltstack.com>`
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from salttesting import TestCase, skipIf
|
|
from salttesting.mock import (
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import Salt Libs
|
|
from salt.modules import mod_random
|
|
import salt.utils.pycrypto
|
|
from salt.exceptions import SaltInvocationError
|
|
|
|
# Globals
|
|
mod_random.__grains__ = {}
|
|
mod_random.__salt__ = {}
|
|
mod_random.__context__ = {}
|
|
mod_random.__opts__ = {}
|
|
|
|
|
|
def _test_hashlib():
|
|
try:
|
|
import hashlib
|
|
except ImportError:
|
|
return False
|
|
if not hasattr(hashlib, 'algorithms'):
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
SUPPORTED_HASHLIB = _test_hashlib()
|
|
|
|
|
|
@skipIf(not SUPPORTED_HASHLIB, 'Hashlib does not contain needed functionality')
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class ModrandomTestCase(TestCase):
|
|
'''
|
|
Test cases for salt.modules.mod_random
|
|
'''
|
|
def test_hash(self):
|
|
'''
|
|
Test for Encodes a value with the specified encoder.
|
|
'''
|
|
self.assertEqual(mod_random.hash('value')[0:4], 'ec2c')
|
|
|
|
self.assertRaises(SaltInvocationError,
|
|
mod_random.hash, 'value', 'algorithm')
|
|
|
|
def test_str_encode(self):
|
|
'''
|
|
Test for The value to be encoded.
|
|
'''
|
|
self.assertRaises(SaltInvocationError,
|
|
mod_random.str_encode, 'None', 'abc')
|
|
|
|
self.assertRaises(SaltInvocationError,
|
|
mod_random.str_encode, None)
|
|
|
|
self.assertEqual(mod_random.str_encode('A'), 'QQ==\n')
|
|
|
|
def test_get_str(self):
|
|
'''
|
|
Test for Returns a random string of the specified length.
|
|
'''
|
|
with patch.object(salt.utils.pycrypto,
|
|
'secure_password', return_value='A'):
|
|
self.assertEqual(mod_random.get_str(), 'A')
|
|
|
|
def test_shadow_hash(self):
|
|
'''
|
|
Test for Generates a salted hash suitable for /etc/shadow.
|
|
'''
|
|
with patch.object(salt.utils.pycrypto,
|
|
'gen_hash', return_value='A'):
|
|
self.assertEqual(mod_random.shadow_hash(), 'A')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(ModrandomTestCase, needs_daemon=False)
|