mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 18:13:56 +03:00
58 lines
1.5 KiB
Python
58 lines
1.5 KiB
Python
|
"""Tests for string module and package names."""
|
||
|
|
||
|
from pytest import fixture
|
||
|
|
||
|
from samples.wiring import module
|
||
|
from samples.wiring.service import Service
|
||
|
from samples.wiring.container import Container
|
||
|
from samples.wiring.wire_relative_string_names import wire_with_relative_string_names
|
||
|
|
||
|
|
||
|
@fixture
|
||
|
def container():
|
||
|
container = Container()
|
||
|
yield container
|
||
|
container.unwire()
|
||
|
|
||
|
|
||
|
def test_absolute_names(container: Container):
|
||
|
container.wire(
|
||
|
modules=["samples.wiring.module"],
|
||
|
packages=["samples.wiring.package"],
|
||
|
)
|
||
|
|
||
|
service = module.test_function()
|
||
|
assert isinstance(service, Service)
|
||
|
|
||
|
from samples.wiring.package.subpackage.submodule import test_function
|
||
|
service = test_function()
|
||
|
assert isinstance(service, Service)
|
||
|
|
||
|
|
||
|
def test_relative_names_with_explicit_package(container: Container):
|
||
|
container.wire(
|
||
|
modules=[".module"],
|
||
|
packages=[".package"],
|
||
|
from_package="samples.wiring",
|
||
|
)
|
||
|
|
||
|
service = module.test_function()
|
||
|
assert isinstance(service, Service)
|
||
|
|
||
|
from samples.wiring.package.subpackage.submodule import test_function
|
||
|
service = test_function()
|
||
|
assert isinstance(service, Service)
|
||
|
|
||
|
|
||
|
def test_relative_names_with_auto_package(container: Container):
|
||
|
wire_with_relative_string_names(container)
|
||
|
|
||
|
service = module.test_function()
|
||
|
assert isinstance(service, Service)
|
||
|
|
||
|
from samples.wiring.package.subpackage.submodule import test_function
|
||
|
service = test_function()
|
||
|
assert isinstance(service, Service)
|
||
|
|
||
|
|