mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
dc32b67c03
Conflicts: - salt/modules/win_snmp.py - tests/integration/modules/test_saltutil.py - tests/integration/states/test_pkg.py - tests/support/helpers.py - tests/support/runtests.py - tests/unit/fileserver/test_gitfs.py - tests/whitelist.txt
118 lines
4.6 KiB
Python
118 lines
4.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:synopsis: Unit Tests for Windows SNMP Module 'module.win_snmp'
|
|
:platform: Windows
|
|
:maturity: develop
|
|
.. versionadded:: 2017.7.0
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
|
|
|
# Import Salt Libs
|
|
import salt.modules.win_snmp as win_snmp
|
|
from salt.exceptions import CommandExecutionError
|
|
|
|
# Import Salt Testing Libs
|
|
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,
|
|
)
|
|
|
|
COMMUNITY_NAMES = {'TestCommunity': 'Read Create'}
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class WinSnmpTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.modules.win_snmp
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {win_snmp: {}}
|
|
|
|
def test_get_agent_service_types(self):
|
|
'''
|
|
Test - Get the sysServices types that can be configured.
|
|
'''
|
|
with patch.dict(win_snmp.__salt__):
|
|
self.assertIsInstance(win_snmp.get_agent_service_types(), list)
|
|
|
|
def test_get_permission_types(self):
|
|
'''
|
|
Test - Get the permission types that can be configured for communities.
|
|
'''
|
|
with patch.dict(win_snmp.__salt__):
|
|
self.assertIsInstance(win_snmp.get_permission_types(), list)
|
|
|
|
def test_get_auth_traps_enabled(self):
|
|
'''
|
|
Test - Determine whether the host is configured to send authentication traps.
|
|
'''
|
|
mock_value = MagicMock(return_value={'vdata': 1})
|
|
with patch.dict(win_snmp.__salt__, {'reg.read_value': mock_value}):
|
|
self.assertTrue(win_snmp.get_auth_traps_enabled())
|
|
|
|
def test_set_auth_traps_enabled(self):
|
|
'''
|
|
Test - Manage the sending of authentication traps.
|
|
'''
|
|
mock_value = MagicMock(return_value=True)
|
|
kwargs = {'status': True}
|
|
with patch.dict(win_snmp.__salt__, {'reg.set_value': mock_value}), \
|
|
patch('salt.modules.win_snmp.get_auth_traps_enabled',
|
|
MagicMock(return_value=True)):
|
|
self.assertTrue(win_snmp.set_auth_traps_enabled(**kwargs))
|
|
|
|
def test_get_community_names(self):
|
|
'''
|
|
Test - Get the current accepted SNMP community names and their permissions.
|
|
'''
|
|
mock_ret = MagicMock(return_value=[{'vdata': 16,
|
|
'vname': 'TestCommunity'}])
|
|
mock_false = MagicMock(return_value=False)
|
|
with patch.dict(win_snmp.__salt__, {'reg.list_values': mock_ret,
|
|
'reg.key_exists': mock_false}):
|
|
self.assertEqual(win_snmp.get_community_names(),
|
|
COMMUNITY_NAMES)
|
|
|
|
def test_get_community_names_gpo(self):
|
|
'''
|
|
Test - Get the current accepted SNMP community names and their permissions.
|
|
'''
|
|
mock_ret = MagicMock(return_value=[{'vdata': 'TestCommunity',
|
|
'vname': 1}])
|
|
mock_false = MagicMock(return_value=True)
|
|
with patch.dict(win_snmp.__salt__, {'reg.list_values': mock_ret,
|
|
'reg.key_exists': mock_false}):
|
|
self.assertEqual(win_snmp.get_community_names(),
|
|
{'TestCommunity': 'Managed by GPO'})
|
|
|
|
def test_set_community_names(self):
|
|
'''
|
|
Test - Manage the SNMP accepted community names and their permissions.
|
|
'''
|
|
mock_true = MagicMock(return_value=True)
|
|
kwargs = {'communities': COMMUNITY_NAMES}
|
|
mock_false = MagicMock(return_value=False)
|
|
with patch.dict(win_snmp.__salt__, {'reg.set_value': mock_true,
|
|
'reg.key_exists': mock_false}), \
|
|
patch('salt.modules.win_snmp.get_community_names',
|
|
MagicMock(return_value=COMMUNITY_NAMES)):
|
|
self.assertTrue(win_snmp.set_community_names(**kwargs))
|
|
|
|
def test_set_community_names_gpo(self):
|
|
'''
|
|
Test - Manage the SNMP accepted community names and their permissions.
|
|
'''
|
|
mock_true = MagicMock(return_value=True)
|
|
kwargs = {'communities': COMMUNITY_NAMES}
|
|
with patch.dict(win_snmp.__salt__, {'reg.set_value': mock_true,
|
|
'reg.key_exists': mock_true}), \
|
|
patch('salt.modules.win_snmp.get_community_names',
|
|
MagicMock(return_value=COMMUNITY_NAMES)):
|
|
self.assertRaises(CommandExecutionError, win_snmp.set_community_names, **kwargs)
|