salt/tests/unit/states/test_libcloud_dns.py
rallytime 3273bbdab7
Merge branch '2017.7' into '2018.3'
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
2018-06-01 14:54:12 -04:00

150 lines
4.5 KiB
Python

# -*- coding: utf-8 -*-
'''
:codeauthor: Anthony Shaw <anthonyshaw@apache.org>
'''
# 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 (
NO_MOCK,
NO_MOCK_REASON
)
import salt.states.libcloud_dns as libcloud_dns
from salt.modules.libcloud_dns import _simple_record, _simple_zone
class DNSTestZone(object):
def __init__(self, id, domain):
self.id = id
self.type = 'master'
self.ttl = 4400
self.domain = domain
self.extra = {}
class DNSTestRecord(object):
def __init__(self, id, name, record_type, data):
self.id = id
self.name = name
self.type = record_type
self.ttl = 4400
self.data = data
self.zone = DNSTestZone('test', 'domain')
self.extra = {}
@skipIf(NO_MOCK, NO_MOCK_REASON)
class LibcloudDnsModuleTestCase(TestCase, LoaderModuleMockMixin):
def setup_loader_modules(self):
test_records = {
'zone1': [_simple_record(DNSTestRecord(0, 'www', 'A', '127.0.0.1'))]
}
def list_zones(profile):
return [_simple_zone(DNSTestZone('zone1', 'test.com'))]
def list_records(zone_id, profile):
return test_records[zone_id]
def create_record(*args):
return True
def delete_record(*args):
return True
def create_zone(*args):
return True
def delete_zone(*args):
return True
return {
libcloud_dns: {
'__salt__': {
'libcloud_dns.list_zones': list_zones,
'libcloud_dns.list_records': list_records,
'libcloud_dns.create_record': create_record,
'libcloud_dns.delete_record': delete_record,
'libcloud_dns.create_zone': create_zone,
'libcloud_dns.delete_zone': delete_zone
}
}
}
def test_present_record_exists(self):
'''
Try and create a record that already exists
'''
result = libcloud_dns.record_present('www', 'test.com', 'A', '127.0.0.1', 'test')
self.assertTrue(result)
def test_present_record_does_not_exist(self):
'''
Try and create a record that already exists
'''
result = libcloud_dns.record_present('mail', 'test.com', 'A', '127.0.0.1', 'test')
self.assertTrue(result)
def test_absent_record_exists(self):
'''
Try and deny a record that already exists
'''
result = libcloud_dns.record_absent('www', 'test.com', 'A', '127.0.0.1', 'test')
self.assertTrue(result)
def test_absent_record_does_not_exist(self):
'''
Try and deny a record that already exists
'''
result = libcloud_dns.record_absent('mail', 'test.com', 'A', '127.0.0.1', 'test')
self.assertTrue(result)
def test_present_zone_not_found(self):
'''
Assert that when you try and ensure present state for a record to a zone that doesn't exist
it fails gracefully
'''
result = libcloud_dns.record_present('mail', 'notatest.com', 'A', '127.0.0.1', 'test')
self.assertFalse(result['result'])
def test_absent_zone_not_found(self):
'''
Assert that when you try and ensure absent state for a record to a zone that doesn't exist
it fails gracefully
'''
result = libcloud_dns.record_absent('mail', 'notatest.com', 'A', '127.0.0.1', 'test')
self.assertFalse(result['result'])
def test_zone_present(self):
'''
Assert that a zone is present (that did not exist)
'''
result = libcloud_dns.zone_present('testing.com', 'master', 'test1')
self.assertTrue(result)
def test_zone_already_present(self):
'''
Assert that a zone is present (that did exist)
'''
result = libcloud_dns.zone_present('test.com', 'master', 'test1')
self.assertTrue(result)
def test_zone_absent(self):
'''
Assert that a zone that did exist is absent
'''
result = libcloud_dns.zone_absent('test.com', 'test1')
self.assertTrue(result)
def test_zone_already_absent(self):
'''
Assert that a zone that did not exist is absent
'''
result = libcloud_dns.zone_absent('testing.com', 'test1')
self.assertTrue(result)