summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2012-02-03 10:41:21 +0100
committerMartin Kosek <mkosek@redhat.com>2012-02-03 16:25:35 +0100
commit43c3fbc3b06d5bc453f0178d05f7bc63ee2dc592 (patch)
tree698cd2f6338df9bd90bc6cfd0c64c91725179df5 /tests
parent8f17a9ff975a20ad5c8691b11815a45dd11f4707 (diff)
downloadfreeipa.git-43c3fbc3b06d5bc453f0178d05f7bc63ee2dc592.tar.gz
freeipa.git-43c3fbc3b06d5bc453f0178d05f7bc63ee2dc592.tar.xz
freeipa.git-43c3fbc3b06d5bc453f0178d05f7bc63ee2dc592.zip
Fix NSEC record conversion
NSEC record needs special treatment as it is not composed from a fixed set of DNS parts divided by space, but it contains a multivalued DNS part "types" containing a list of RR types it covers. There was already a special method for parsing raw NSEC record to DNS parts, but the other direction was missing. This patch adds special NSEC convertor to fix this issue. https://fedorahosted.org/freeipa/ticket/2307
Diffstat (limited to 'tests')
-rw-r--r--tests/test_xmlrpc/test_dns_plugin.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_xmlrpc/test_dns_plugin.py b/tests/test_xmlrpc/test_dns_plugin.py
index f65fe563..b177b9d0 100644
--- a/tests/test_xmlrpc/test_dns_plugin.py
+++ b/tests/test_xmlrpc/test_dns_plugin.py
@@ -667,6 +667,26 @@ class test_dns(Declarative):
),
dict(
+ desc='Add NSEC record to %r using dnsrecord_add' % (dnsres1),
+ command=('dnsrecord_add', [dnszone1, dnsres1], {'nsec_part_next': dnszone1,
+ 'nsec_part_types' : ['TXT', 'A']}),
+ expected={
+ 'value': dnsres1,
+ 'summary': None,
+ 'result': {
+ 'objectclass': [u'top', u'idnsrecord'],
+ 'dn': unicode(dnsres1_dn),
+ 'idnsname': [dnsres1],
+ 'arecord': [u'10.10.0.1'],
+ 'cnamerecord': [u'foo-1.example.com.'],
+ 'kxrecord': [u'1 foo-1'],
+ 'txtrecord': [u'foo bar'],
+ 'nsecrecord': [dnszone1 + u' TXT A'],
+ },
+ },
+ ),
+
+ dict(
desc='Delete record %r in zone %r' % (dnsres1, dnszone1),
command=('dnsrecord_del', [dnszone1, dnsres1], {'del_all': True }),
expected={