summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2013-01-09 18:09:10 +0100
committerRob Crittenden <rcritten@redhat.com>2013-02-19 11:08:11 -0500
commitcfbdeebe66c1759ba49da84a0a5d2acfc184e4f3 (patch)
tree44eb4d446ba67376be87ffab8b0dbac076efea79 /tests
parent1c68c3edff0507ee78cd1f633e45ae8c3fb9638d (diff)
downloadfreeipa-cfbdeebe66c1759ba49da84a0a5d2acfc184e4f3.tar.gz
freeipa-cfbdeebe66c1759ba49da84a0a5d2acfc184e4f3.tar.xz
freeipa-cfbdeebe66c1759ba49da84a0a5d2acfc184e4f3.zip
Run interactive_prompt callbacks after CSV values are split.
https://fedorahosted.org/freeipa/ticket/3334
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cmdline/test_cli.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/test_cmdline/test_cli.py b/tests/test_cmdline/test_cli.py
index 06c6124bb..4d730d582 100644
--- a/tests/test_cmdline/test_cli.py
+++ b/tests/test_cmdline/test_cli.py
@@ -237,3 +237,31 @@ class TestCLIParsing(object):
all=False,
force=False,
version=API_VERSION)
+
+ def test_dnsrecord_del_comma(self):
+ try:
+ self.run_command(
+ 'dnszone_add', idnsname=u'test-example.com',
+ idnssoamname=u'ns.test-example.com', force=True)
+ except errors.NotFound:
+ raise nose.SkipTest('DNS is not configured')
+ try:
+ self.run_command(
+ 'dnsrecord_add',
+ dnszoneidnsname=u'test-example.com',
+ idnsname=u'test',
+ txtrecord=u'"A pretty little problem," said Holmes.')
+ with self.fake_stdin('no\nyes\n'):
+ self.check_command(
+ 'dnsrecord_del test-example.com test',
+ 'dnsrecord_del',
+ dnszoneidnsname=u'test-example.com',
+ idnsname=u'test',
+ del_all=False,
+ txtrecord=[u'"A pretty little problem," said Holmes.'],
+ structured=False,
+ raw=False,
+ all=False,
+ version=API_VERSION)
+ finally:
+ self.run_command('dnszone_del', idnsname=u'test-example.com')