Bopytex/test/test_service.py

15 lines
488 B
Python
Raw Normal View History

2022-04-10 04:45:10 +00:00
from bopytex.planner import fake_planner
from bopytex.service import orcherstrator
from bopytex.tasks import Task
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"}
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}"