-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.test.ts
More file actions
251 lines (210 loc) · 7.33 KB
/
opencode.test.ts
File metadata and controls
251 lines (210 loc) · 7.33 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
import { afterEach, beforeEach, describe, expect, test } from 'bun:test'
import fs from 'node:fs'
import os from 'node:os'
import path from 'node:path'
import type { Config } from '@opencode-ai/sdk'
import { createConfigHandler } from '../../src/lib/config-handler.ts'
const OPENCODE_AVAILABLE = (() => {
const result = Bun.spawnSync(['which', 'opencode'])
return result.exitCode === 0
})()
const TIMEOUT_MS = 120_000
const MAX_RETRIES = 2
const RETRY_DELAY_MS = 3_000
const REPO_ROOT = path.resolve(import.meta.dirname, '../..')
function buildOpencodeConfig(): string {
const pluginPath = `file://${path.join(REPO_ROOT, 'src/index.ts')}`
return JSON.stringify({
plugin: [pluginPath],
})
}
describe.skipIf(!OPENCODE_AVAILABLE)('opencode integration', () => {
let testEnv: {
tempDir: string
projectDir: string
originalCwd: string
}
beforeEach(() => {
const tempBase = fs.mkdtempSync(
path.join(os.tmpdir(), 'systematic-opencode-'),
)
testEnv = {
tempDir: tempBase,
projectDir: path.join(tempBase, 'project'),
originalCwd: process.cwd(),
}
fs.mkdirSync(testEnv.projectDir, { recursive: true })
})
afterEach(() => {
process.chdir(testEnv.originalCwd)
if (testEnv.tempDir) {
fs.rmSync(testEnv.tempDir, { recursive: true, force: true })
}
})
async function runOpencode(
prompt: string,
): Promise<{ stdout: string; stderr: string; exitCode: number }> {
let lastResult: { stdout: string; stderr: string; exitCode: number } = {
stdout: '',
stderr: '',
exitCode: -1,
}
for (let attempt = 1; attempt <= MAX_RETRIES; attempt++) {
const result = Bun.spawnSync(['opencode', 'run', prompt], {
cwd: testEnv.projectDir,
env: {
...process.env,
OPENCODE_CONFIG_CONTENT: buildOpencodeConfig(),
},
timeout: TIMEOUT_MS,
})
lastResult = {
stdout: result.stdout.toString(),
stderr: result.stderr.toString(),
exitCode: result.exitCode ?? -1,
}
const isTimeout =
lastResult.exitCode === -1 || lastResult.stderr.includes('ETIMEDOUT')
const isRateLimit =
lastResult.stderr.includes('rate limit') ||
lastResult.stderr.includes('429')
if (!isTimeout && !isRateLimit && lastResult.exitCode === 0) {
return lastResult
}
if (attempt < MAX_RETRIES) {
const delay = RETRY_DELAY_MS * attempt
console.log(
`Attempt ${attempt}/${MAX_RETRIES} failed, retrying in ${delay}ms...`,
)
await Bun.sleep(delay)
}
}
return lastResult
}
test(
'systematic_skill tool loads systematic:brainstorming skill',
async () => {
const result = await runOpencode(
'Use the systematic_skill tool to load systematic:brainstorming',
)
expect(result.stdout).toMatch(
/<skill-instruction>|brainstorm|systematic|skill loaded/i,
)
},
TIMEOUT_MS * MAX_RETRIES,
)
test(
'systematic_skill tool lists systematic skills in description',
async () => {
const result = await runOpencode(
'What skills are available? List the systematic skills you can load.',
)
expect(result.stdout).toMatch(/brainstorming|systematic.*skills/i)
},
TIMEOUT_MS * MAX_RETRIES,
)
})
describe('config handler integration', () => {
let testEnv: {
tempDir: string
bundledDir: string
projectDir: string
}
beforeEach(() => {
const tempBase = fs.mkdtempSync(
path.join(os.tmpdir(), 'systematic-config-integration-'),
)
testEnv = {
tempDir: tempBase,
bundledDir: path.join(tempBase, 'bundled'),
projectDir: path.join(tempBase, 'project'),
}
fs.mkdirSync(path.join(testEnv.bundledDir, 'skills', 'test-skill'), {
recursive: true,
})
fs.mkdirSync(path.join(testEnv.bundledDir, 'agents'), { recursive: true })
fs.mkdirSync(path.join(testEnv.bundledDir, 'commands'), { recursive: true })
fs.mkdirSync(testEnv.projectDir, { recursive: true })
fs.writeFileSync(
path.join(testEnv.bundledDir, 'skills', 'test-skill', 'SKILL.md'),
`---
name: test-skill
description: A skill for integration testing
---
# Test Skill
Integration test content.`,
)
})
afterEach(() => {
if (testEnv.tempDir) {
fs.rmSync(testEnv.tempDir, { recursive: true, force: true })
}
})
test('registers skills with systematic: prefix in command name', async () => {
const handler = createConfigHandler({
directory: testEnv.projectDir,
bundledSkillsDir: path.join(testEnv.bundledDir, 'skills'),
bundledAgentsDir: path.join(testEnv.bundledDir, 'agents'),
bundledCommandsDir: path.join(testEnv.bundledDir, 'commands'),
})
const config: Config = {}
await handler(config)
const commandNames = Object.keys(config.command || {})
expect(commandNames).toContain('systematic:test-skill')
expect(commandNames).not.toContain('test-skill')
})
test('adds (Systematic - Skill) prefix to skill descriptions', async () => {
const handler = createConfigHandler({
directory: testEnv.projectDir,
bundledSkillsDir: path.join(testEnv.bundledDir, 'skills'),
bundledAgentsDir: path.join(testEnv.bundledDir, 'agents'),
bundledCommandsDir: path.join(testEnv.bundledDir, 'commands'),
})
const config: Config = {}
await handler(config)
const skillCommand = config.command?.['systematic:test-skill']
expect(skillCommand?.description).toMatch(/^\(Systematic - Skill\) /)
expect(skillCommand?.description).toBe(
'(Systematic - Skill) A skill for integration testing',
)
})
test('wraps skill template in <skill-instruction> tags', async () => {
const handler = createConfigHandler({
directory: testEnv.projectDir,
bundledSkillsDir: path.join(testEnv.bundledDir, 'skills'),
bundledAgentsDir: path.join(testEnv.bundledDir, 'agents'),
bundledCommandsDir: path.join(testEnv.bundledDir, 'commands'),
})
const config: Config = {}
await handler(config)
const skillCommand = config.command?.['systematic:test-skill']
expect(skillCommand?.template).toContain('<skill-instruction>')
expect(skillCommand?.template).toContain('</skill-instruction>')
expect(skillCommand?.template).toContain('Base directory for this skill:')
expect(skillCommand?.template).toContain('Integration test content.')
})
test('skill template does not contain frontmatter', async () => {
const handler = createConfigHandler({
directory: testEnv.projectDir,
bundledSkillsDir: path.join(testEnv.bundledDir, 'skills'),
bundledAgentsDir: path.join(testEnv.bundledDir, 'agents'),
bundledCommandsDir: path.join(testEnv.bundledDir, 'commands'),
})
const config: Config = {}
await handler(config)
const skillCommand = config.command?.['systematic:test-skill']
expect(skillCommand?.template).not.toContain('name: test-skill')
expect(skillCommand?.template).not.toContain(
'description: A skill for integration testing',
)
})
})
describe('opencode availability check', () => {
test('reports opencode installation status', () => {
console.log(`OpenCode available: ${OPENCODE_AVAILABLE}`)
if (!OPENCODE_AVAILABLE) {
console.log('OpenCode not installed. Install from: https://opencode.ai')
}
expect(true).toBe(true)
})
})