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
135 lines
6.1 KiB
Python
135 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_dns_client as win_dns_client
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class WinDnsClientTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Validate the win_dns_client state
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {win_dns_client: {}}
|
|
|
|
def test_dns_exists(self):
|
|
'''
|
|
Test to configure the DNS server list in the specified interface
|
|
'''
|
|
ret = {'name': 'salt',
|
|
'changes': {},
|
|
'result': False,
|
|
'comment': ''}
|
|
with patch.dict(win_dns_client.__opts__, {"test": False}):
|
|
ret.update({'changes': {'Servers Added': [],
|
|
'Servers Removed': [],
|
|
'Servers Reordered': []},
|
|
'comment': 'servers entry is not a list !'})
|
|
self.assertDictEqual(win_dns_client.dns_exists('salt'), ret)
|
|
|
|
mock = MagicMock(return_value=[2, 'salt'])
|
|
with patch.dict(win_dns_client.__salt__,
|
|
{'win_dns_client.get_dns_servers': mock}):
|
|
ret.update({'changes': {}, 'comment': repr([2, 'salt']) + " are already"
|
|
" configured", 'result': True})
|
|
self.assertDictEqual(win_dns_client.dns_exists('salt',
|
|
[2, 'salt']),
|
|
ret)
|
|
|
|
mock = MagicMock(side_effect=[False, True, True])
|
|
with patch.dict(win_dns_client.__salt__,
|
|
{'win_dns_client.add_dns': mock}):
|
|
ret.update({'comment': 'Failed to add 1 as DNS'
|
|
' server number 1', 'result': False})
|
|
self.assertDictEqual(win_dns_client.dns_exists('salt',
|
|
[1, 'salt']
|
|
), ret)
|
|
|
|
mock = MagicMock(return_value=False)
|
|
with patch.dict(win_dns_client.__salt__,
|
|
{'win_dns_client.rm_dns': mock}):
|
|
ret.update({'changes': {'Servers Added': ['a'],
|
|
'Servers Removed': [],
|
|
'Servers Reordered': []},
|
|
'comment': 'Failed to remove 2 from DNS'
|
|
' server list'})
|
|
self.assertDictEqual(win_dns_client.dns_exists('salt',
|
|
['a'],
|
|
'a',
|
|
1),
|
|
ret)
|
|
|
|
ret.update({'comment': 'DNS Servers have been updated',
|
|
'result': True})
|
|
self.assertDictEqual(win_dns_client.dns_exists('salt',
|
|
['a']), ret)
|
|
|
|
def test_dns_dhcp(self):
|
|
'''
|
|
Test to configure the DNS server list from DHCP Server
|
|
'''
|
|
ret = {'name': 'salt',
|
|
'changes': {},
|
|
'result': True,
|
|
'comment': ''}
|
|
mock = MagicMock(side_effect=['dhcp', 'salt', 'salt'])
|
|
with patch.dict(win_dns_client.__salt__,
|
|
{'win_dns_client.get_dns_config': mock}):
|
|
ret.update({'comment': 'Local Area Connection already configured'
|
|
' with DNS from DHCP'})
|
|
self.assertDictEqual(win_dns_client.dns_dhcp('salt'), ret)
|
|
|
|
with patch.dict(win_dns_client.__opts__, {"test": True}):
|
|
ret.update({'comment': '', 'result': None,
|
|
'changes': {'dns': 'configured from DHCP'}})
|
|
self.assertDictEqual(win_dns_client.dns_dhcp('salt'), ret)
|
|
|
|
with patch.dict(win_dns_client.__opts__, {"test": False}):
|
|
mock = MagicMock(return_value=True)
|
|
with patch.dict(win_dns_client.__salt__,
|
|
{'win_dns_client.dns_dhcp': mock}):
|
|
ret.update({'result': True})
|
|
self.assertDictEqual(win_dns_client.dns_dhcp('salt'), ret)
|
|
|
|
def test_primary_suffix(self):
|
|
'''
|
|
Test to configure the global primary DNS suffix of a DHCP client.
|
|
'''
|
|
ret = {'name': 'salt',
|
|
'changes': {},
|
|
'result': False,
|
|
'comment': ''}
|
|
ret.update({'comment': "'updates' must be a boolean value"})
|
|
self.assertDictEqual(win_dns_client.primary_suffix('salt', updates='a'
|
|
), ret)
|
|
|
|
mock = MagicMock(side_effect=[{'vdata': 'a'}, {'vdata': False}, {'vdata': 'b'}, {'vdata': False}])
|
|
with patch.dict(win_dns_client.__salt__, {'reg.read_value': mock}):
|
|
ret.update({'comment': 'No changes needed', 'result': True})
|
|
self.assertDictEqual(win_dns_client.primary_suffix('salt', 'a'),
|
|
ret)
|
|
|
|
mock = MagicMock(return_value=True)
|
|
with patch.dict(win_dns_client.__salt__, {'reg.set_value': mock}):
|
|
ret.update({'changes': {'new': {'suffix': 'a'},
|
|
'old': {'suffix': 'b'}},
|
|
'comment': 'Updated primary DNS suffix (a)'})
|
|
self.assertDictEqual(win_dns_client.primary_suffix('salt',
|
|
'a'), ret)
|