123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- from typing import Iterator
- import pytest
- from pluggy import HookimplMarker
- from pluggy import HookspecMarker
- from pluggy import PluginManager
- from pluggy import PluginValidationError
- hookspec = HookspecMarker("example")
- hookimpl = HookimplMarker("example")
- def test_argmismatch(pm: PluginManager) -> None:
- class Api:
- @hookspec
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- class Plugin:
- @hookimpl
- def hello(self, argwrong):
- pass
- with pytest.raises(PluginValidationError) as exc:
- pm.register(Plugin())
- assert "argwrong" in str(exc.value)
- def test_only_kwargs(pm: PluginManager) -> None:
- class Api:
- @hookspec
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- with pytest.raises(TypeError) as exc:
- pm.hook.hello(3) # type: ignore[call-arg]
- message = "__call__() takes 1 positional argument but 2 were given"
- assert message in str(exc.value)
- def test_opt_in_args(pm: PluginManager) -> None:
- """Verify that two hookimpls with mutex args can serve
- under the same spec.
- """
- class Api:
- @hookspec
- def hello(self, arg1, arg2, common_arg):
- "api hook 1"
- class Plugin1:
- @hookimpl
- def hello(self, arg1, common_arg):
- return arg1 + common_arg
- class Plugin2:
- @hookimpl
- def hello(self, arg2, common_arg):
- return arg2 + common_arg
- pm.add_hookspecs(Api)
- pm.register(Plugin1())
- pm.register(Plugin2())
- results = pm.hook.hello(arg1=1, arg2=2, common_arg=0)
- assert results == [2, 1]
- def test_call_order(pm: PluginManager) -> None:
- class Api:
- @hookspec
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- class Plugin1:
- @hookimpl
- def hello(self, arg):
- return 1
- class Plugin2:
- @hookimpl
- def hello(self, arg):
- return 2
- class Plugin3:
- @hookimpl
- def hello(self, arg):
- return 3
- class Plugin4:
- @hookimpl(hookwrapper=True)
- def hello(self, arg):
- assert arg == 0
- outcome = yield
- assert outcome.get_result() == [3, 2, 1]
- assert outcome.exception is None
- assert outcome.excinfo is None
- class Plugin5:
- @hookimpl(wrapper=True)
- def hello(self, arg):
- assert arg == 0
- result = yield
- assert result == [3, 2, 1]
- return result
- pm.register(Plugin1())
- pm.register(Plugin2())
- pm.register(Plugin3())
- pm.register(Plugin4()) # hookwrapper should get same list result
- pm.register(Plugin5()) # hookwrapper should get same list result
- res = pm.hook.hello(arg=0)
- assert res == [3, 2, 1]
- def test_firstresult_definition(pm: PluginManager) -> None:
- class Api:
- @hookspec(firstresult=True)
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- class Plugin1:
- @hookimpl
- def hello(self, arg):
- return arg + 1
- class Plugin2:
- @hookimpl
- def hello(self, arg):
- return arg - 1
- class Plugin3:
- @hookimpl
- def hello(self, arg):
- return None
- class Plugin4:
- @hookimpl(wrapper=True)
- def hello(self, arg):
- assert arg == 3
- outcome = yield
- assert outcome == 2
- return outcome
- class Plugin5:
- @hookimpl(hookwrapper=True)
- def hello(self, arg):
- assert arg == 3
- outcome = yield
- assert outcome.get_result() == 2
- pm.register(Plugin1()) # discarded - not the last registered plugin
- pm.register(Plugin2()) # used as result
- pm.register(Plugin3()) # None result is ignored
- pm.register(Plugin4()) # wrapper should get same non-list result
- pm.register(Plugin5()) # hookwrapper should get same non-list result
- res = pm.hook.hello(arg=3)
- assert res == 2
- def test_firstresult_force_result_hookwrapper(pm: PluginManager) -> None:
- """Verify forcing a result in a wrapper."""
- class Api:
- @hookspec(firstresult=True)
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- class Plugin1:
- @hookimpl
- def hello(self, arg):
- return arg + 1
- class Plugin2:
- @hookimpl(hookwrapper=True)
- def hello(self, arg):
- assert arg == 3
- outcome = yield
- assert outcome.get_result() == 4
- outcome.force_result(0)
- class Plugin3:
- @hookimpl
- def hello(self, arg):
- return None
- pm.register(Plugin1())
- pm.register(Plugin2()) # wrapper
- pm.register(Plugin3()) # ignored since returns None
- res = pm.hook.hello(arg=3)
- assert res == 0 # this result is forced and not a list
- def test_firstresult_force_result(pm: PluginManager) -> None:
- """Verify forcing a result in a wrapper."""
- class Api:
- @hookspec(firstresult=True)
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- class Plugin1:
- @hookimpl
- def hello(self, arg):
- return arg + 1
- class Plugin2:
- @hookimpl(wrapper=True)
- def hello(self, arg):
- assert arg == 3
- outcome = yield
- assert outcome == 4
- return 0
- class Plugin3:
- @hookimpl
- def hello(self, arg):
- return None
- pm.register(Plugin1())
- pm.register(Plugin2()) # wrapper
- pm.register(Plugin3()) # ignored since returns None
- res = pm.hook.hello(arg=3)
- assert res == 0 # this result is forced and not a list
- def test_firstresult_returns_none(pm: PluginManager) -> None:
- """If None results are returned by underlying implementations ensure
- the multi-call loop returns a None value.
- """
- class Api:
- @hookspec(firstresult=True)
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- class Plugin1:
- @hookimpl
- def hello(self, arg):
- return None
- pm.register(Plugin1())
- res = pm.hook.hello(arg=3)
- assert res is None
- def test_firstresult_no_plugin(pm: PluginManager) -> None:
- """If no implementations/plugins have been registered for a firstresult
- hook the multi-call loop should return a None value.
- """
- class Api:
- @hookspec(firstresult=True)
- def hello(self, arg):
- "api hook 1"
- pm.add_hookspecs(Api)
- res = pm.hook.hello(arg=3)
- assert res is None
- def test_no_hookspec(pm: PluginManager) -> None:
- """A hook with hookimpls can still be called even if no hookspec
- was registered for it (and call_pending wasn't called to check
- against it).
- """
- class Plugin:
- @hookimpl
- def hello(self, arg):
- return "Plugin.hello"
- pm.register(Plugin())
- assert pm.hook.hello(arg=10, extra=20) == ["Plugin.hello"]
- def test_non_wrapper_generator(pm: PluginManager) -> None:
- """A hookimpl can be a generator without being a wrapper,
- meaning it returns an iterator result."""
- class Api:
- @hookspec
- def hello(self) -> Iterator[int]:
- raise NotImplementedError()
- pm.add_hookspecs(Api)
- class Plugin1:
- @hookimpl
- def hello(self):
- yield 1
- class Plugin2:
- @hookimpl
- def hello(self):
- yield 2
- yield 3
- class Plugin3:
- @hookimpl(wrapper=True)
- def hello(self):
- return (yield)
- pm.register(Plugin1())
- pm.register(Plugin2()) # wrapper
- res = pm.hook.hello()
- assert [y for x in res for y in x] == [2, 3, 1]
- pm.register(Plugin3())
- res = pm.hook.hello()
- assert [y for x in res for y in x] == [2, 3, 1]
|