2022-04-10 04:45:10 +00:00
|
|
|
from bopytex.planner import fake_planner
|
|
|
|
from bopytex.service import orcherstrator
|
|
|
|
from bopytex.tasks import Task
|
2022-04-10 12:37:19 +00:00
|
|
|
from bopytex.worker import Dispatcher, fake_worker
|
2022-04-09 05:30:13 +00:00
|
|
|
|
|
|
|
|
2022-04-10 04:45:10 +00:00
|
|
|
def test_service():
|
|
|
|
options = {"quantity": 3, "template": "tpl_src.tex"}
|
2022-04-10 12:37:19 +00:00
|
|
|
dispatcher = Dispatcher(actions={"DO": fake_worker})
|
|
|
|
|
|
|
|
service = orcherstrator(options, fake_planner.simple, dispatcher)
|
|
|
|
|
|
|
|
for i, task_output in enumerate(service):
|
|
|
|
assert task_output == f"FAKE - {{'number': {i}}} - [] - {i}"
|