-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathClosedSessionGuardTest.java
More file actions
374 lines (315 loc) · 14.8 KB
/
ClosedSessionGuardTest.java
File metadata and controls
374 lines (315 loc) · 14.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
package com.github.copilot.sdk;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import com.github.copilot.sdk.events.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
import com.github.copilot.sdk.json.PermissionHandler;
import com.github.copilot.sdk.json.SessionConfig;
/**
* Tests for closed-session guard functionality in CopilotSession.
*
* <p>
* Verifies that all public methods that interact with session state throw
* IllegalStateException when invoked after close(), and that close() itself is
* idempotent.
* </p>
*/
public class ClosedSessionGuardTest {
private static E2ETestContext ctx;
@BeforeAll
static void setup() throws Exception {
ctx = E2ETestContext.create();
}
@AfterAll
static void teardown() throws Exception {
if (ctx != null) {
ctx.close();
}
}
/**
* Verifies that send(String) throws IllegalStateException after session is
* terminated.
*/
@Test
void testSendStringThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.send("test message");
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that send(MessageOptions) throws IllegalStateException after session
* is terminated.
*/
@Test
void testSendOptionsThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.send(new MessageOptions().setPrompt("test message"));
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that sendAndWait(String) throws IllegalStateException after session
* is terminated.
*/
@Test
void testSendAndWaitStringThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.sendAndWait("test message");
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that sendAndWait(MessageOptions) throws IllegalStateException after
* session is terminated.
*/
@Test
void testSendAndWaitOptionsThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.sendAndWait(new MessageOptions().setPrompt("test message"));
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that sendAndWait(MessageOptions, long) throws IllegalStateException
* after session is terminated.
*/
@Test
void testSendAndWaitWithTimeoutThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.sendAndWait(new MessageOptions().setPrompt("test message"), 5000);
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that on(Consumer) throws IllegalStateException after session is
* terminated.
*/
@Test
void testOnConsumerThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.on(evt -> {
// Handler should never be registered
});
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that on(Class, Consumer) throws IllegalStateException after session
* is terminated.
*/
@Test
void testOnTypedConsumerThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.on(AssistantMessageEvent.class, msg -> {
// Handler should never be registered
});
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that getMessages() throws IllegalStateException after session is
* terminated.
*/
@Test
void testGetMessagesThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.getMessages();
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that abort() throws IllegalStateException after session is
* terminated.
*/
@Test
void testAbortThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.abort();
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that setEventErrorHandler() throws IllegalStateException after
* session is terminated.
*/
@Test
void testSetEventErrorHandlerThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.setEventErrorHandler((event, ex) -> {
// Handler should never be set
});
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that setEventErrorPolicy() throws IllegalStateException after
* session is terminated.
*/
@Test
void testSetEventErrorPolicyThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
IllegalStateException thrown = assertThrows(IllegalStateException.class, () -> {
session.setEventErrorPolicy(EventErrorPolicy.SUPPRESS_AND_LOG_ERRORS);
});
assertTrue(thrown.getMessage().contains("closed"), "Exception message should mention session is closed");
}
}
/**
* Verifies that getSessionId() still works after session is terminated (it's
* just a field read).
*/
@Test
void testGetSessionIdWorksAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
String sessionIdBeforeClose = session.getSessionId();
session.close();
String sessionIdAfterClose = session.getSessionId();
assertEquals(sessionIdBeforeClose, sessionIdAfterClose, "Session ID should remain accessible after close");
}
}
/**
* Verifies that getWorkspacePath() still works after session is terminated
* (it's just a field read).
*/
@Test
void testGetWorkspacePathWorksAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
String pathBeforeClose = session.getWorkspacePath();
session.close();
String pathAfterClose = session.getWorkspacePath();
assertEquals(pathBeforeClose, pathAfterClose, "Workspace path should remain accessible after close");
}
}
/**
* Verifies that close() is idempotent and can be called multiple times safely.
*/
@Test
void testCloseIsIdempotent() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
// First close should succeed
assertDoesNotThrow(() -> session.close());
// Second close should also succeed (no-op)
assertDoesNotThrow(() -> session.close());
// Third close should also succeed (no-op)
assertDoesNotThrow(() -> session.close());
}
}
/**
* Verifies that try-with-resources double-close scenario works correctly.
*/
@Test
void testTryWithResourcesDoubleClose() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
try (session) {
// Manual close within try-with-resources
session.close();
// Automatic close will happen at end of block
} // Second close happens here
// Should be able to verify it's closed
assertThrows(IllegalStateException.class, () -> {
session.send("test");
});
}
}
/**
* Verifies that setModel() throws IllegalStateException after session is
* terminated.
*/
@Test
void testSetModelThrowsAfterTermination() throws Exception {
ctx.configureForTest("session", "should_receive_session_events");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig()
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL).setModel("fake-test-model")).get();
session.close();
assertThrows(IllegalStateException.class, () -> {
session.setModel("gpt-4.1");
});
}
}
}