From a6ff85f425d5c38dd89fcd8999e0d62eadb969a1 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Wed, 20 Jun 2012 16:08:33 +0300 Subject: Add support for external group members When using ipaExternalGroup/ipaExternalMember attributes it is possible to add group members which don't exist in IPA database. This is primarily is required for AD trusts support and therefore validation is accepting only secure identifier (SID) format. https://fedorahosted.org/freeipa/ticket/2664 --- tests/test_cmdline/test_cli.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/test_cmdline/test_cli.py') diff --git a/tests/test_cmdline/test_cli.py b/tests/test_cmdline/test_cli.py index d961f872..06c6124b 100644 --- a/tests/test_cmdline/test_cli.py +++ b/tests/test_cmdline/test_cli.py @@ -66,6 +66,7 @@ class TestCLIParsing(object): cn=u'tgroup1', description=u'Test group', nonposix=False, + external=False, raw=False, all=False, version=API_VERSION) @@ -88,6 +89,7 @@ class TestCLIParsing(object): cn=u'tgroup1', description=u'Test group', nonposix=True, + external=False, raw=False, all=False, version=API_VERSION) @@ -99,6 +101,7 @@ class TestCLIParsing(object): description=u'Test group', gidnumber=u'1234', nonposix=False, + external=False, raw=False, all=False, version=API_VERSION) @@ -109,6 +112,7 @@ class TestCLIParsing(object): cn=u'tgroup1', description=u'Test group', nonposix=False, + external=False, raw=False, all=False, version=API_VERSION) -- cgit