forked from github/copilot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_session.py
More file actions
69 lines (58 loc) · 1.8 KB
/
Copy pathtest_session.py
File metadata and controls
69 lines (58 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""CopilotSession unit tests."""
import asyncio
from datetime import UTC, datetime
from unittest.mock import AsyncMock, Mock
from uuid import uuid4
import pytest
from copilot.session import CopilotSession
from copilot.session_events import (
AssistantMessageData,
SessionEvent,
SessionEventType,
SessionIdleData,
SessionMode,
)
def _event(data, event_type: SessionEventType) -> SessionEvent:
return SessionEvent(
data=data,
id=uuid4(),
timestamp=datetime.now(UTC),
type=event_type,
)
@pytest.mark.asyncio
async def test_send_and_wait_skips_autopilot_continuation_idle():
client = Mock()
client.request = AsyncMock(return_value={"messageId": "message-1"})
session = CopilotSession("session-1", client)
pending = asyncio.create_task(session.send_and_wait("keep going"))
await asyncio.sleep(0)
client.request.assert_awaited_once()
session._dispatch_event(
_event(
AssistantMessageData(content="intermediate", message_id="assistant-1"),
SessionEventType.ASSISTANT_MESSAGE,
)
)
session._dispatch_event(
_event(
SessionIdleData(mode=SessionMode.AUTOPILOT),
SessionEventType.SESSION_IDLE,
)
)
assert not pending.done()
session._dispatch_event(
_event(
AssistantMessageData(content="final", message_id="assistant-2"),
SessionEventType.ASSISTANT_MESSAGE,
)
)
session._dispatch_event(
_event(
SessionIdleData(mode=SessionMode.INTERACTIVE),
SessionEventType.SESSION_IDLE,
)
)
result = await asyncio.wait_for(pending, timeout=1)
assert result is not None
assert isinstance(result.data, AssistantMessageData)
assert result.data.content == "final"