summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2012-09-14 12:05:12 -0400
committerMartin Kosek <mkosek@redhat.com>2012-09-24 13:55:17 +0200
commit0b254e8b1e60b46ce29fecedbc088921a526fbd8 (patch)
tree77b273886ecb8923f8e528f8d6a07b8b2b2d7bc0 /tests
parent230261a1a542b7758db9f7211aad517ef5fecee0 (diff)
downloadfreeipa-0b254e8b1e60b46ce29fecedbc088921a526fbd8.tar.gz
freeipa-0b254e8b1e60b46ce29fecedbc088921a526fbd8.tar.xz
freeipa-0b254e8b1e60b46ce29fecedbc088921a526fbd8.zip
Always handle NotFound error in dnsrecord-mod
When there were no updated attrs when modifying a nonexistent DNS record, the error was not handled and caused an internal server error later (old_entry was used uninitialized). https://fedorahosted.org/freeipa/ticket/3055
Diffstat (limited to 'tests')
-rw-r--r--tests/test_xmlrpc/test_dns_plugin.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_xmlrpc/test_dns_plugin.py b/tests/test_xmlrpc/test_dns_plugin.py
index 6a54bcb63..3c2dc005d 100644
--- a/tests/test_xmlrpc/test_dns_plugin.py
+++ b/tests/test_xmlrpc/test_dns_plugin.py
@@ -590,6 +590,16 @@ class test_dns(Declarative):
dict(
+ desc='Try to modify nonexistent record in zone %r' % dnszone1,
+ command=('dnsrecord_mod',
+ [dnszone1, u'ghostname'],
+ {'aaaarecord': u'f001:baad::1'}),
+ expected=errors.NotFound(
+ reason=u'ghostname: DNS resource record not found'),
+ ),
+
+
+ dict(
desc='Modify AAAA record in %r in zone %r' % (dnsres1, dnszone1),
command=('dnsrecord_mod', [dnszone1, dnsres1], {'aaaarecord': u'ff02::1'}),
expected={