-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow state handler functions with default arguments in v3 #994
Comments
@JP-Ellis would be better to advise on the python implementation, however with regards to this comment.
The specific files you are missing, are part of the pact compatibility suite which is a git submodule, which requires initialisation. It is noted in the contributing guide :) https://github.com/pact-foundation/pact-python/blob/main/CONTRIBUTING.md#installation
|
@YOU54F , thank you for your reply. I actually did that and it is still missing. The folder |
Thanks for bringing this to my attention! On reflection, I do agree that by naïvely inspecting the number of parameters only, there are a number of edge cases that are not accounted for. In fact, thinking of the various situations, even just checking for arguments which don't have default won't be quite sufficient, as it is possible to have a keyword-only required argument which would not work in the underlying function call as all arguments are passed as position arguments. On further thinking about it, there's also the edge-case of import inspect
def f(a: int = 1, /, b: int = 2, *, c: int = 3): ...
def g(a: int, /, b: int, *, c: int): ...
def h(a: int, /, b: int, *args, c: int, **kwargs): ...
for fn in [f, g, h]:
print("Function:", fn.__name__)
for param in inspect.signature(fn).parameters.values():
print(f"- {param.name} ({param.kind}): {param.default}")
In the case were there might be I think in terms of the refactor, it would be best to create a separate utility function to check these parameters and ensure that:
There's also the question of the type annotations; and that's something I'm not entirely sure how to best handle. I might have to play around with that a bit, but it might be sufficient to simply add Lastly, just to make it even more fun, there's also the need to take into account |
@JP-Ellis , you assigned this ticket to yourself. I initially proposed to submit a PR, would this still be helpful? |
I've actually got something mostly working now on my computer, with a PR coming soon (most likely tomorrow) I hope I didn't accidentally duplicate your work 🫤 |
Have you read the Contributing Guidelines on issues?
Description
In version 3, state handler functions need to have the arguments as described by
StateHandlerFull
,StateHandlerNoAction
and so on. In function_set_function_state_handler
and_state_handler_dict
, there are checks on how many parameters there are in the function, e,g. by havinglen(inspect.signature(f).parameters) != 2
calls.I would like to replace this by something like this
This would generate more flexibility in defining state_handler functions. The TypeAliases would need be extended.
Motivation
The current implementation forbids the usage of extra parameters to be passed on to state handler functions. However, this might be a requirement when fixtures are used. E.g. in
test_provider
in thetest_01_fastapi_provider.py
, it might not be sufficient to use only the server as a fixture, but another one, where we pass the database object that we want to modify by the state handler. This requirement is definitely there for our use case.This currently cannot be passed on to the state_handler_function as fixtures are not available in normal functions. It could be relieved by using
functools.partial
. Thetest_provider_code
could then look like:I am unsure if this feature has been requested by other users. For us, it is a blocker.
Have you tried building it?
I can definitely create a PR for this, if approved by the maintainers.
I need support on how to run the complete test suite though. I currently still get many
errors when running
hatch run test
. Thedefinition
subfolder is completely empty.Also I am unsure how to extend the TypeAliases, to include optional default arguments.
Self-service
The text was updated successfully, but these errors were encountered: