How to fail application if dependency cannot be wired?
For example, developer make typo in Provide[...]:
container.py
class ApplicationContainer(containers.DeclarativeContainer):
some_service = providers.Singleton(object)
app.py
# FastAPI
@app.get("/")
@inject
async def some_handler(service = Depends(Provide["sOme_service"])): # suppose there is a typo in the name of the container attribute
# `service` will be <dependency_injector.wiring.Provide object at 0x7f59daf8c580>
pass
I've tried this approach, but it doesn't work for the Singleton:
Provide["some_service", required()] # AttributeError: 'dependency_injector.providers.Singleton' object has no attribute 'required'
So, how to crash app in case if dependency cannot be resolved?
Why not raise an exception here?
https://github.com/ets-labs/python-dependency-injector/blob/541131e33858ee1b8b5a7590d2bb9f929740ea1e/src/dependency_injector/wiring.py#L546-L547
+1 It would be great to have an option to raise an exception when failing to resolve a dependency.
Does this work for modules not mentioned in wire function? Mb implement into inject decorator?
I'm getting started with python-dependency-injector and have been tripped up by some self-imposed wiring errors. The end result is that my methods get called with Provide object when I would prefer an Exception explaining the issue.
My issues have fallen into two buckets:
- Improper string identifiers passed into
Provide. I have a fix for this which replaces
https://github.com/ets-labs/python-dependency-injector/blob/3858cef657cabaca3dff60890f1a1bea2ea84c97/src/dependency_injector/wiring.py#L235
resolved = self._resolve_string_id(provider, modifier)
if resolved is None:
raise KeyError(f"Unable to resolve a Provider for '{provider}'")
return resolved
- The other errors appear when a
Containerhas not been wired for theProvider. This could be that no containers have been wired or that the wrong type has been wired. I believe the solution is to update_get_sync_patchedso it comparespatched.reference_[injections|closing]withpatched.[injections|closing]to detect missing values. TheModifiercould be overloaded to handle these cases so the functionality is opt-in and doesn't change the interface. If that is not desired, another parameter could be added to_Markerwhich indicates the desired behavior.
I can submit a PR for the first case, and take a look at implementing the second. But I wanted to get some input on the approach before beginning. I realize these issues are bugs in my application and not the library, but these changes would make debugging the issues easier.