forked from github/copilot-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSessionConfigE2ETest.java
More file actions
127 lines (106 loc) · 5.78 KB
/
SessionConfigE2ETest.java
File metadata and controls
127 lines (106 loc) · 5.78 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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
package com.github.copilot.sdk;
import static org.junit.jupiter.api.Assertions.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import com.github.copilot.sdk.json.MessageOptions;
import com.github.copilot.sdk.json.PermissionHandler;
import com.github.copilot.sdk.json.ResumeSessionConfig;
import com.github.copilot.sdk.json.SessionConfig;
/**
* E2E tests for session configuration features.
*/
public class SessionConfigE2ETest {
private static E2ETestContext ctx;
@BeforeAll
static void setup() throws Exception {
ctx = E2ETestContext.create();
}
@AfterAll
static void teardown() throws Exception {
if (ctx != null) {
ctx.close();
}
}
@Disabled("Requires test harness update with instructionDirectories snapshots - see reference impl PR #1190")
@Test
void testShouldApplyInstructionDirectoriesOnCreate() throws Exception {
ctx.configureForTest("session_config", "should_apply_instructiondirectories_on_create");
// Set up instruction directory with a custom instruction file
Path projectDir = ctx.getWorkDir().resolve("instruction-create-project");
Path instructionDir = ctx.getWorkDir().resolve("extra-create-instructions");
Path instructionFilesDir = instructionDir.resolve(".github").resolve("instructions");
String sentinel = "JAVA_CREATE_INSTRUCTION_DIRECTORIES_SENTINEL";
Files.createDirectories(projectDir);
Files.createDirectories(instructionFilesDir);
Files.writeString(instructionFilesDir.resolve("extra.instructions.md"), "Always include " + sentinel + ".");
try (CopilotClient client = ctx.createClient()) {
CopilotSession session = client.createSession(new SessionConfig().setWorkingDirectory(projectDir.toString())
.setInstructionDirectories(List.of(instructionDir.toString()))
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL)).get();
session.sendAndWait(new MessageOptions().setPrompt("What is 1+1?")).get(60, TimeUnit.SECONDS);
List<Map<String, Object>> exchanges = ctx.getExchanges();
assertFalse(exchanges.isEmpty(), "Should have at least one exchange");
String systemMessage = getSystemMessage(exchanges.get(0));
assertNotNull(systemMessage, "System message should not be null");
assertTrue(systemMessage.contains(sentinel),
"System message should contain the instruction sentinel: " + sentinel);
}
}
@Disabled("Requires test harness update with instructionDirectories snapshots - see reference impl PR #1190")
@Test
void testShouldApplyInstructionDirectoriesOnResume() throws Exception {
ctx.configureForTest("session_config", "should_apply_instructiondirectories_on_resume");
// Set up instruction directory with a custom instruction file
Path projectDir = ctx.getWorkDir().resolve("instruction-resume-project");
Path instructionDir = ctx.getWorkDir().resolve("extra-resume-instructions");
Path instructionFilesDir = instructionDir.resolve(".github").resolve("instructions");
String sentinel = "JAVA_RESUME_INSTRUCTION_DIRECTORIES_SENTINEL";
Files.createDirectories(projectDir);
Files.createDirectories(instructionFilesDir);
Files.writeString(instructionFilesDir.resolve("extra.instructions.md"), "Always include " + sentinel + ".");
try (CopilotClient client = ctx.createClient()) {
// Create a session first
CopilotSession session1 = client.createSession(new SessionConfig()
.setWorkingDirectory(projectDir.toString()).setOnPermissionRequest(PermissionHandler.APPROVE_ALL))
.get();
// Resume with instructionDirectories
CopilotSession session2 = client.resumeSession(session1.getSessionId(),
new ResumeSessionConfig().setWorkingDirectory(projectDir.toString())
.setInstructionDirectories(List.of(instructionDir.toString()))
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL))
.get();
session2.sendAndWait(new MessageOptions().setPrompt("What is 1+1?")).get(60, TimeUnit.SECONDS);
List<Map<String, Object>> exchanges = ctx.getExchanges();
assertFalse(exchanges.isEmpty(), "Should have at least one exchange");
String systemMessage = getSystemMessage(exchanges.get(0));
assertNotNull(systemMessage, "System message should not be null");
assertTrue(systemMessage.contains(sentinel),
"System message should contain the instruction sentinel: " + sentinel);
}
}
@SuppressWarnings("unchecked")
private static String getSystemMessage(Map<String, Object> exchange) {
Object messagesObj = exchange.get("messages");
if (messagesObj instanceof List<?> messages) {
for (Object msg : messages) {
if (msg instanceof Map<?, ?> msgMap) {
if ("system".equals(msgMap.get("role"))) {
Object content = msgMap.get("content");
return content != null ? content.toString() : null;
}
}
}
}
return null;
}
}