mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
3273bbdab7
Conflicts: - doc/ref/configuration/master.rst - doc/ref/modules/all/index.rst - doc/topics/grains/index.rst - doc/topics/releases/2016.3.4.rst - doc/topics/spm/spm_formula.rst - doc/topics/tutorials/cron.rst - doc/topics/tutorials/index.rst - doc/topics/tutorials/stormpath.rst - salt/engines/slack.py - salt/log/handlers/fluent_mod.py - salt/modules/cyg.py - salt/modules/junos.py - salt/modules/namecheap_dns.py - salt/modules/namecheap_domains.py - salt/modules/namecheap_ns.py - salt/modules/namecheap_ssl.py - salt/modules/namecheap_users.py - salt/modules/reg.py - salt/modules/tomcat.py - salt/modules/vault.py - salt/modules/win_file.py - salt/modules/zpool.py - salt/output/highstate.py - salt/renderers/pass.py - salt/runners/cache.py - salt/states/boto_apigateway.py - salt/states/boto_iam.py - salt/states/boto_route53.py - salt/states/msteams.py - salt/states/reg.py - salt/states/win_iis.py - tests/integration/modules/test_cmdmod.py - tests/integration/states/test_user.py - tests/support/helpers.py - tests/unit/cloud/clouds/test_openstack.py - tests/unit/fileserver/test_gitfs.py - tests/unit/modules/test_junos.py - tests/unit/pillar/test_git.py - tests/unit/states/test_win_path.py - tests/unit/test_pillar.py - tests/unit/utils/test_format_call.py - tests/unit/utils/test_utils.py - tests/unit/utils/test_warnings.py
121 lines
6.1 KiB
Python
121 lines
6.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Rahul Handay <rahulha@saltstack.com>
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
|
|
|
# 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
|
|
)
|
|
|
|
# Import Salt Libs
|
|
import salt.states.win_network as win_network
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class WinNetworkTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Validate the nftables state
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {win_network: {}}
|
|
|
|
def test_managed(self):
|
|
'''
|
|
Test to ensure that the named interface is configured properly.
|
|
'''
|
|
ret = {'name': 'salt',
|
|
'changes': {},
|
|
'result': False,
|
|
'comment': ''}
|
|
ret.update({'comment': 'dns_proto must be one of the following:'
|
|
' static, dhcp. ip_proto must be one of the following:'
|
|
' static, dhcp.'})
|
|
self.assertDictEqual(win_network.managed('salt'), ret)
|
|
|
|
mock_false = MagicMock(return_value=False)
|
|
mock_true = MagicMock(return_value=True)
|
|
mock1 = MagicMock(side_effect=[False, True, True, True, True, True,
|
|
True])
|
|
mock2 = MagicMock(side_effect=[False, True, True, {'salt': 'True'},
|
|
{'salt': 'True'}])
|
|
with patch.dict(win_network.__salt__, {"ip.is_enabled": mock_false,
|
|
"ip.is_disabled": mock1,
|
|
"ip.enable": mock_false,
|
|
"ip.get_interface": mock2,
|
|
"ip.set_dhcp_dns": mock_false,
|
|
"ip.set_dhcp_ip": mock_false}):
|
|
ret.update({'comment': "Interface 'salt' is up to date."
|
|
" (already disabled)", 'result': True})
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='static',
|
|
ip_proto='static',
|
|
enabled=False), ret)
|
|
|
|
with patch.dict(win_network.__opts__, {"test": False}):
|
|
ret.update({'comment': "Failed to enable interface 'salt'"
|
|
" to make changes", 'result': False})
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='static',
|
|
ip_proto='static'),
|
|
ret)
|
|
mock_false = MagicMock(side_effect=['True', False, False, False, False,
|
|
False])
|
|
|
|
with patch.dict(win_network.__salt__, {"ip.is_enabled": mock_true}):
|
|
with patch.object(win_network, '_validate', mock_false):
|
|
ret.update({'comment': 'The following SLS configuration'
|
|
' errors were detected: T r u e'})
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='static',
|
|
ip_proto='static'),
|
|
ret)
|
|
|
|
ret.update({'comment': "Unable to get current"
|
|
" configuration for interface 'salt'",
|
|
'result': False})
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='dhcp',
|
|
ip_proto='dhcp'),
|
|
ret)
|
|
|
|
mock_false = MagicMock(side_effect=[False, [''],
|
|
{'dns_proto': 'dhcp',
|
|
'ip_proto': 'dhcp'},
|
|
{'dns_proto': 'dhcp',
|
|
'ip_proto': 'dhcp'}])
|
|
ret.update({'comment': "Interface 'salt' is up to date.",
|
|
'result': True})
|
|
with patch.object(win_network, '_changes', mock_false):
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='dhcp',
|
|
ip_proto='dhcp'
|
|
), ret)
|
|
|
|
ret.update({'comment': "The following changes will be made"
|
|
" to interface 'salt': ", 'result': None})
|
|
with patch.dict(win_network.__opts__, {"test": True}):
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='dh'
|
|
'cp',
|
|
ip_proto='dhcp'
|
|
), ret)
|
|
|
|
with patch.dict(win_network.__opts__, {"test": False}):
|
|
ret.update({'comment': "Failed to set desired"
|
|
" configuration settings for interface"
|
|
" 'salt'", 'result': False})
|
|
self.assertDictEqual(win_network.managed('salt',
|
|
dns_proto='dh'
|
|
'cp',
|
|
ip_proto='dhcp'
|
|
), ret)
|