2015-01-13 13:30:17 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Rupesh Tare <rupesht@saltstack.com>`
|
|
|
|
'''
|
|
|
|
|
2015-01-23 23:04:21 +00:00
|
|
|
|
|
|
|
# Import python libs
|
2015-01-26 19:39:37 +00:00
|
|
|
try:
|
|
|
|
import dns.query
|
|
|
|
import dns.tsigkeyring
|
|
|
|
HAS_DNS = True
|
|
|
|
except:
|
|
|
|
HAS_DNS = False
|
2015-01-23 23:04:21 +00:00
|
|
|
import json
|
|
|
|
|
|
|
|
|
2015-01-13 13:30:17 +00:00
|
|
|
# Import Salt Testing Libs
|
|
|
|
from salttesting import TestCase, skipIf
|
|
|
|
from salttesting.mock import (
|
|
|
|
mock_open,
|
|
|
|
MagicMock,
|
|
|
|
patch,
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON
|
|
|
|
)
|
|
|
|
|
|
|
|
# Import Salt Libs
|
|
|
|
from salt.modules import ddns
|
|
|
|
|
|
|
|
# Globals
|
|
|
|
ddns.__grains__ = {}
|
|
|
|
ddns.__salt__ = {}
|
|
|
|
|
|
|
|
|
2015-01-26 20:17:12 +00:00
|
|
|
@skipIf(HAS_DNS is False, 'dnspython libs not installed')
|
2015-01-13 13:30:17 +00:00
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
|
|
class DDNSTestCase(TestCase):
|
|
|
|
'''
|
|
|
|
TestCase for the salt.modules.ddns module
|
|
|
|
'''
|
|
|
|
@patch('salt.modules.ddns.update')
|
|
|
|
def test_add_host(self, ddns_update):
|
|
|
|
'''
|
|
|
|
Test cases for Add, replace, or update the A
|
|
|
|
and PTR (reverse) records for a host.
|
|
|
|
'''
|
|
|
|
ddns_update.return_value = False
|
|
|
|
self.assertFalse(ddns.add_host(zone='A',
|
|
|
|
name='B',
|
|
|
|
ttl=1,
|
|
|
|
ip='172.27.0.0'))
|
|
|
|
|
|
|
|
ddns_update.return_value = True
|
|
|
|
self.assertTrue(ddns.add_host(zone='A',
|
|
|
|
name='B',
|
|
|
|
ttl=1,
|
|
|
|
ip='172.27.0.0'))
|
|
|
|
|
|
|
|
@patch('salt.modules.ddns.delete')
|
|
|
|
def test_delete_host(self, ddns_delete):
|
|
|
|
'''
|
|
|
|
Tests for delete the forward and reverse records for a host.
|
|
|
|
'''
|
|
|
|
ddns_delete.return_value = False
|
|
|
|
with patch.object(dns.query, 'udp') as mock:
|
|
|
|
mock.answer = [{'address': 'localhost'}]
|
|
|
|
self.assertFalse(ddns.delete_host(zone='A', name='B'))
|
|
|
|
|
|
|
|
def test_update(self):
|
|
|
|
'''
|
|
|
|
Test to add, replace, or update a DNS record.
|
|
|
|
'''
|
|
|
|
file_data = json.dumps({'A': 'B'})
|
|
|
|
with patch('dns.message.make_query', return_value=True):
|
|
|
|
with patch('dns.rdatatype.from_text', return_value=True):
|
|
|
|
with patch('dns.rdata.from_text', return_value=True):
|
|
|
|
mock = MagicMock(return_value=True)
|
|
|
|
with patch.dict(ddns.__salt__, {'config.option': mock}):
|
|
|
|
mock = MagicMock(return_value=True)
|
2015-01-13 14:24:49 +00:00
|
|
|
with patch.dict(ddns.__salt__,
|
|
|
|
{'file.file_exists': mock}):
|
2015-01-13 13:30:17 +00:00
|
|
|
with patch('salt.utils.fopen',
|
|
|
|
mock_open(read_data=file_data),
|
|
|
|
create=True):
|
2015-01-13 14:24:49 +00:00
|
|
|
with patch.object(dns.tsigkeyring, 'from_text',
|
|
|
|
return_value=True):
|
2015-01-13 13:30:17 +00:00
|
|
|
with patch.object(dns.query, 'udp') as mock:
|
|
|
|
mock.answer = [{'address': 'localhost'}]
|
2015-01-26 19:39:37 +00:00
|
|
|
self.assertTrue(ddns.update(zone='A',
|
|
|
|
name='B',
|
|
|
|
ttl=1,
|
|
|
|
rdtype='C',
|
|
|
|
data='D'))
|
2015-01-13 13:30:17 +00:00
|
|
|
|
|
|
|
def test_delete(self):
|
|
|
|
'''
|
|
|
|
Test to delete a DNS record.
|
|
|
|
'''
|
|
|
|
file_data = json.dumps({'A': 'B'})
|
2015-01-26 19:39:37 +00:00
|
|
|
|
|
|
|
class MockAnswer(object):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.answer = [{'address': 'localhost'}]
|
|
|
|
def rcode(self):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def mock_udp_query(*args, **kwargs):
|
|
|
|
return MockAnswer
|
|
|
|
|
|
|
|
with patch.object(dns.query, 'udp', mock_udp_query()),\
|
|
|
|
patch('salt.utils.fopen', mock_open(read_data=file_data), create=True),\
|
|
|
|
patch.object(dns.tsigkeyring, 'from_text', return_value=True),\
|
|
|
|
patch.object(ddns, '_get_keyring', return_value=None),\
|
|
|
|
patch.object(ddns, '_config', return_value=None):
|
|
|
|
self.assertTrue(ddns.delete(zone='A', name='B'))
|
2015-01-13 13:30:17 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
from integration import run_tests
|
2015-01-13 14:24:49 +00:00
|
|
|
run_tests(DDNSTestCase, needs_daemon=False)
|