From 337c9964d42066368460da9a7c0d770142e2d1c3 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 13 Aug 2008 06:25:42 +0000 Subject: 145: Added new CLI.parse() method; added corresponding unit tests --- ipalib/tests/test_cli.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ipalib/tests/test_cli.py') diff --git a/ipalib/tests/test_cli.py b/ipalib/tests/test_cli.py index e80dee43..4e2942d7 100644 --- a/ipalib/tests/test_cli.py +++ b/ipalib/tests/test_cli.py @@ -98,6 +98,23 @@ class test_CLI(ClassChecker): args = tuple('--%s=%s' % (cli.to_cli(k), v) for (k,v) in kw.items()) assert dict(o.parse_kw(args)) == kw + def test_parse(self): + """ + Tests the `parse` method. + """ + o = self.cls(None) + args = ['hello', 'naughty', 'nurse'] + kw = dict( + first_name='Naughty', + last_name='Nurse', + ) + opts = ['--%s=%s' % (k.replace('_', '-'), v) for (k, v) in kw.items()] + assert o.parse(args + []) == (args, {}) + assert o.parse(opts + []) == ([], kw) + assert o.parse(args + opts) == (args, kw) + assert o.parse(opts + args) == (args, kw) + + def test_mcl(self): """ Tests the `mcl` (Max Command Length) property . -- cgit