2015-01-08 08:44:51 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Import Salt Testing libs
|
|
|
|
from salttesting import skipIf, TestCase
|
|
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
from salttesting.mock import (
|
|
|
|
MagicMock,
|
|
|
|
patch,
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON
|
|
|
|
)
|
|
|
|
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
|
|
|
|
# Import Salt libs
|
|
|
|
from salt.utils.odict import OrderedDict
|
|
|
|
from salt.modules import pillar as pillarmod
|
|
|
|
|
|
|
|
|
|
|
|
pillar_value_1 = dict(a=1, b='very secret')
|
|
|
|
|
|
|
|
|
|
|
|
class PillarModuleTestCase(TestCase):
|
|
|
|
|
|
|
|
def test_obfuscate_inner_recursion(self):
|
|
|
|
self.assertEqual(
|
2015-01-08 16:41:49 +00:00
|
|
|
pillarmod._obfuscate_inner(dict(a=[1, 2],
|
|
|
|
b=dict(pwd='secret', deeper=('a', 1)))),
|
2015-01-08 08:44:51 +00:00
|
|
|
dict(a=['<int>', '<int>'],
|
|
|
|
b=dict(pwd='<str>', deeper=('<str>', '<int>')))
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_obfuscate_inner_more_types(self):
|
2015-01-08 16:41:49 +00:00
|
|
|
self.assertEqual(pillarmod._obfuscate_inner(OrderedDict([('key', 'value')])),
|
2015-01-08 08:44:51 +00:00
|
|
|
OrderedDict([('key', '<str>')]))
|
|
|
|
|
2015-01-08 16:41:49 +00:00
|
|
|
self.assertEqual(pillarmod._obfuscate_inner(set((1, 2))),
|
2015-01-08 08:44:51 +00:00
|
|
|
set(['<int>']))
|
|
|
|
|
2015-01-08 16:41:49 +00:00
|
|
|
self.assertEqual(pillarmod._obfuscate_inner((1, 2)),
|
2015-01-08 08:44:51 +00:00
|
|
|
('<int>', '<int>'))
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
|
|
@patch('salt.modules.pillar.items', MagicMock(return_value=pillar_value_1))
|
|
|
|
def test_obfuscate(self):
|
|
|
|
self.assertEqual(pillarmod.obfuscate(),
|
|
|
|
dict(a='<int>', b='<str>'))
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
|
|
@patch('salt.modules.pillar.items', MagicMock(return_value=pillar_value_1))
|
|
|
|
def test_ls(self):
|
|
|
|
self.assertEqual(pillarmod.ls(), ['a', 'b'])
|
|
|
|
|
|
|
|
|
|
|
|
# gracinet: not sure this is really useful, but other test modules have this as well
|
|
|
|
if __name__ == '__main__':
|
|
|
|
from integration import run_tests
|
|
|
|
run_tests(PillarModuleTestCase, needs_daemon=False)
|