mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
80794f6b5e
tab completion and dir() now show registered plugins in API name spaces. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
#
|
|
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
|
|
#
|
|
import inspect
|
|
import io
|
|
import pydoc
|
|
|
|
import pytest
|
|
|
|
from ipalib import api
|
|
|
|
|
|
@pytest.fixture()
|
|
def api_obj():
|
|
if not api.Backend.rpcclient.isconnected():
|
|
api.Backend.rpcclient.connect()
|
|
yield api
|
|
|
|
|
|
@pytest.mark.tier0
|
|
@pytest.mark.needs_ipaapi
|
|
class TestIPAConsole:
|
|
def run_pydoc(self, plugin):
|
|
s = io.StringIO()
|
|
# help() calls pydoc.doc() with pager
|
|
pydoc.doc(plugin, "Help %s", output=s)
|
|
return s.getvalue()
|
|
|
|
def test_dir(self, api_obj):
|
|
assert "Command" in dir(api_obj)
|
|
assert "group_add" in dir(api_obj.Command)
|
|
|
|
def test_signature(self, api_obj):
|
|
sig = api_obj.Command.group_add.__signature__
|
|
assert isinstance(sig, inspect.Signature)
|
|
params = sig.parameters
|
|
assert params['cn'].kind is inspect.Parameter.POSITIONAL_OR_KEYWORD
|
|
assert params['cn'].annotation is str
|
|
assert params['description'].kind is inspect.Parameter.KEYWORD_ONLY
|
|
|
|
def test_help(self, api_obj):
|
|
s = self.run_pydoc(api_obj.Command.group_add)
|
|
# check for __signature__ in help()
|
|
assert "group_add(cn: str, *, description: str = None," in s
|