Files
crewAI/lib/crewai/tests/utilities/events/test_crewai_event_bus.py
Greyson LaLonde c925d2d519
Some checks failed
Build uv cache / build-cache (3.10) (push) Has been cancelled
Build uv cache / build-cache (3.11) (push) Has been cancelled
Build uv cache / build-cache (3.12) (push) Has been cancelled
Build uv cache / build-cache (3.13) (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Notify Downstream / notify-downstream (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
chore: restructure test env, cassettes, and conftest; fix flaky tests
Consolidates pytest config, standardizes env handling, reorganizes cassette layout, removes outdated VCR configs, improves sync with threading.Condition, updates event-waiting logic, ensures cleanup, regenerates Gemini cassettes, and reverts unintended test changes.
2025-11-29 16:55:24 -05:00

90 lines
2.7 KiB
Python

import threading
from unittest.mock import Mock
from crewai.events.base_events import BaseEvent
from crewai.events.event_bus import crewai_event_bus
class TestEvent(BaseEvent):
pass
def test_specific_event_handler():
mock_handler = Mock()
condition = threading.Condition()
handler_called = [False]
@crewai_event_bus.on(TestEvent)
def handler(source, event):
with condition:
mock_handler(source, event)
handler_called[0] = True
condition.notify()
event = TestEvent(type="test_event")
crewai_event_bus.emit("source_object", event)
with condition:
if not handler_called[0]:
condition.wait(timeout=5)
assert handler_called[0], "Handler was not called within timeout"
mock_handler.assert_called_once_with("source_object", event)
def test_multiple_handlers_same_event():
"""Test that multiple handlers can be registered for the same event type."""
mock_handler1 = Mock()
mock_handler2 = Mock()
condition = threading.Condition()
handlers_called = {"handler1": False, "handler2": False}
@crewai_event_bus.on(TestEvent)
def handler1(source, event):
with condition:
mock_handler1(source, event)
handlers_called["handler1"] = True
condition.notify()
@crewai_event_bus.on(TestEvent)
def handler2(source, event):
with condition:
mock_handler2(source, event)
handlers_called["handler2"] = True
condition.notify()
event = TestEvent(type="test_event")
crewai_event_bus.emit("source_object", event)
with condition:
while not all(handlers_called.values()):
condition.wait(timeout=5)
if not all(handlers_called.values()):
break
assert handlers_called["handler1"], "Handler1 was not called within timeout"
assert handlers_called["handler2"], "Handler2 was not called within timeout"
mock_handler1.assert_called_once_with("source_object", event)
mock_handler2.assert_called_once_with("source_object", event)
def test_event_bus_error_handling():
"""Test that handler exceptions are caught and don't break the event bus."""
called = threading.Event()
error_caught = threading.Event()
@crewai_event_bus.on(TestEvent)
def broken_handler(source, event):
called.set()
raise ValueError("Simulated handler failure")
@crewai_event_bus.on(TestEvent)
def working_handler(source, event):
error_caught.set()
event = TestEvent(type="test_event")
crewai_event_bus.emit("source_object", event)
assert called.wait(timeout=2), "Broken handler was never called"
assert error_caught.wait(timeout=2), "Working handler was never called after error"