mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
Updating callable provider docs
This commit is contained in:
parent
acc9259ddd
commit
7224fd4b37
BIN
docs/images/callable.png
Normal file
BIN
docs/images/callable.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -1,64 +1,60 @@
|
||||||
Callable providers
|
Callable providers
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
``Callable`` provider is a provider that decorates particular callable with
|
``Callable`` provider is a provider that wraps particular callable with
|
||||||
some injections. Every call of this provider returns result of call of initial
|
some injections. Every call of this provider returns result of call of initial
|
||||||
callable.
|
callable.
|
||||||
|
|
||||||
``Callable`` provider uses ``KwArg`` injections. ``KwArg`` injections are
|
``Callable`` provider uses ``KwArg`` injections. ``KwArg`` injections are
|
||||||
done by passing injectable values like keyword arguments during call time.
|
done by passing injectable values as keyword arguments during call time.
|
||||||
|
|
||||||
Context keyword arguments have higher priority than ``KwArg`` injections.
|
Context keyword arguments have higher priority than ``KwArg`` injections.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
.. image:: /images/callable.png
|
||||||
|
:width: 100%
|
||||||
|
:align: center
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
"""`Callable` providers examples."""
|
"""`Callable` providers examples."""
|
||||||
|
|
||||||
from objects.providers import Callable
|
from objects.providers import Callable
|
||||||
from objects.providers import Singleton
|
|
||||||
|
|
||||||
from objects.injections import KwArg
|
from objects.injections import KwArg
|
||||||
|
|
||||||
|
|
||||||
class UserService(object):
|
class SomeCrypt(object):
|
||||||
|
|
||||||
"""Example class UserService."""
|
"""Example class SomeCrypt."""
|
||||||
|
|
||||||
def get_by_id(self, id):
|
@staticmethod
|
||||||
"""Return user info by user id."""
|
def encrypt(data, password):
|
||||||
return {'id': id, 'login': 'example_user'}
|
"""Encypt data using password."""
|
||||||
|
return ''.join((password, data, password))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def decrypt(data, password):
|
||||||
|
"""Decrypt data using password."""
|
||||||
|
return data[len(password):-len(password)]
|
||||||
|
|
||||||
|
|
||||||
def get_user_by_id(user_id, users_service):
|
# Encrypt and decrypt function providers:
|
||||||
"""Example function that has input arg and dependency on database."""
|
encrypt = Callable(SomeCrypt.encrypt,
|
||||||
return users_service.get_by_id(user_id)
|
KwArg('password', 'secret123'))
|
||||||
|
decrypt = Callable(SomeCrypt.decrypt,
|
||||||
|
KwArg('password', 'secret123'))
|
||||||
# UserService and get_user_by_id providers:
|
|
||||||
users_service = Singleton(UserService)
|
|
||||||
get_user_by_id = Callable(get_user_by_id,
|
|
||||||
KwArg('users_service', users_service))
|
|
||||||
|
|
||||||
# Making some asserts:
|
# Making some asserts:
|
||||||
assert get_user_by_id(1) == {'id': 1, 'login': 'example_user'}
|
initial_data = 'some_data'
|
||||||
assert get_user_by_id(2) == {'id': 2, 'login': 'example_user'}
|
|
||||||
|
|
||||||
|
encrypted1 = encrypt(initial_data)
|
||||||
|
decrypted1 = decrypt(encrypted1)
|
||||||
|
|
||||||
|
assert decrypted1 == initial_data
|
||||||
|
|
||||||
# Context keyword arguments priority example:
|
# Context keyword arguments priority example:
|
||||||
class UserServiceMock(object):
|
encrypted2 = encrypt(initial_data, password='another_secret')
|
||||||
|
decrypted2 = decrypt(encrypted2)
|
||||||
"""Example class UserService."""
|
|
||||||
|
|
||||||
def get_by_id(self, id):
|
|
||||||
"""Return user info by user id."""
|
|
||||||
return {'id': id, 'login': 'mock'}
|
|
||||||
|
|
||||||
|
|
||||||
user_service_mock = UserServiceMock()
|
|
||||||
|
|
||||||
user3 = get_user_by_id(1, users_service=user_service_mock)
|
|
||||||
|
|
||||||
assert user3 == {'id': 1, 'login': 'mock'}
|
|
||||||
|
|
||||||
|
assert decrypted2 != initial_data
|
||||||
|
|
|
@ -1,47 +1,40 @@
|
||||||
"""`Callable` providers examples."""
|
"""`Callable` providers examples."""
|
||||||
|
|
||||||
from objects.providers import Callable
|
from objects.providers import Callable
|
||||||
from objects.providers import Singleton
|
|
||||||
|
|
||||||
from objects.injections import KwArg
|
from objects.injections import KwArg
|
||||||
|
|
||||||
|
|
||||||
class UserService(object):
|
class SomeCrypt(object):
|
||||||
|
|
||||||
"""Example class UserService."""
|
"""Example class SomeCrypt."""
|
||||||
|
|
||||||
def get_by_id(self, id):
|
@staticmethod
|
||||||
"""Return user info by user id."""
|
def encrypt(data, password):
|
||||||
return {'id': id, 'login': 'example_user'}
|
"""Encypt data using password."""
|
||||||
|
return ''.join((password, data, password))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def decrypt(data, password):
|
||||||
|
"""Decrypt data using password."""
|
||||||
|
return data[len(password):-len(password)]
|
||||||
|
|
||||||
|
|
||||||
def get_user_by_id(user_id, users_service):
|
# Encrypt and decrypt function providers:
|
||||||
"""Example function that has input arg and dependency on database."""
|
encrypt = Callable(SomeCrypt.encrypt,
|
||||||
return users_service.get_by_id(user_id)
|
KwArg('password', 'secret123'))
|
||||||
|
decrypt = Callable(SomeCrypt.decrypt,
|
||||||
|
KwArg('password', 'secret123'))
|
||||||
# UserService and get_user_by_id providers:
|
|
||||||
users_service = Singleton(UserService)
|
|
||||||
get_user_by_id = Callable(get_user_by_id,
|
|
||||||
KwArg('users_service', users_service))
|
|
||||||
|
|
||||||
# Making some asserts:
|
# Making some asserts:
|
||||||
assert get_user_by_id(1) == {'id': 1, 'login': 'example_user'}
|
initial_data = 'some_data'
|
||||||
assert get_user_by_id(2) == {'id': 2, 'login': 'example_user'}
|
|
||||||
|
|
||||||
|
encrypted1 = encrypt(initial_data)
|
||||||
|
decrypted1 = decrypt(encrypted1)
|
||||||
|
|
||||||
|
assert decrypted1 == initial_data
|
||||||
|
|
||||||
# Context keyword arguments priority example:
|
# Context keyword arguments priority example:
|
||||||
class UserServiceMock(object):
|
encrypted2 = encrypt(initial_data, password='another_secret')
|
||||||
|
decrypted2 = decrypt(encrypted2)
|
||||||
|
|
||||||
"""Example class UserService."""
|
assert decrypted2 != initial_data
|
||||||
|
|
||||||
def get_by_id(self, id):
|
|
||||||
"""Return user info by user id."""
|
|
||||||
return {'id': id, 'login': 'mock'}
|
|
||||||
|
|
||||||
|
|
||||||
user_service_mock = UserServiceMock()
|
|
||||||
|
|
||||||
user3 = get_user_by_id(1, users_service=user_service_mock)
|
|
||||||
|
|
||||||
assert user3 == {'id': 1, 'login': 'mock'}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user