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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
|
package api
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"os"
"path/filepath"
"strings"
"testing"
"time"
)
// createFakeClaude writes a shell script to a temp dir that prints output and exits with the
// given code. Returns the script path. Used to mock the claude binary in elaborate tests.
func createFakeClaude(t *testing.T, output string, exitCode int) string {
t.Helper()
dir := t.TempDir()
outputFile := filepath.Join(dir, "output.json")
if err := os.WriteFile(outputFile, []byte(output), 0600); err != nil {
t.Fatal(err)
}
script := filepath.Join(dir, "claude")
content := fmt.Sprintf("#!/bin/sh\ncat %q\nexit %d\n", outputFile, exitCode)
if err := os.WriteFile(script, []byte(content), 0755); err != nil {
t.Fatal(err)
}
return script
}
// hasTool is a test helper that reports whether name is in the tools slice.
func hasTool(tools []string, name string) bool {
for _, t := range tools {
if t == name {
return true
}
}
return false
}
// --- sanitizeElaboratedTask unit tests ---
func TestSanitize_AddsWriteWhenInstructionsMentionFileCreation(t *testing.T) {
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: "Create a new file called output.txt with the results.",
AllowedTools: []string{"Bash"},
},
}
sanitizeElaboratedTask(task)
if !hasTool(task.Agent.AllowedTools, "Write") {
t.Errorf("expected Write in allowed_tools, got %v", task.Agent.AllowedTools)
}
}
func TestSanitize_AddsReadWhenEditIsPresent(t *testing.T) {
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: "Modify the configuration file.",
AllowedTools: []string{"Edit"},
},
}
sanitizeElaboratedTask(task)
if !hasTool(task.Agent.AllowedTools, "Read") {
t.Errorf("expected Read added alongside Edit, got %v", task.Agent.AllowedTools)
}
}
func TestSanitize_NoDuplicateTools(t *testing.T) {
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: "Run go test ./...",
AllowedTools: []string{"Bash"},
},
}
sanitizeElaboratedTask(task)
count := 0
for _, tool := range task.Agent.AllowedTools {
if tool == "Bash" {
count++
}
}
if count != 1 {
t.Errorf("Bash duplicated in allowed_tools: %v", task.Agent.AllowedTools)
}
}
func TestSanitize_AddsAcceptanceCriteriaWhenMissing(t *testing.T) {
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: "Do something useful with the codebase.",
AllowedTools: []string{"Bash"},
},
}
sanitizeElaboratedTask(task)
lower := strings.ToLower(task.Agent.Instructions)
if !strings.Contains(lower, "acceptance") && !strings.Contains(lower, "done when") {
t.Error("expected acceptance criteria section appended to instructions")
}
}
func TestSanitize_NoopWhenAcceptanceCriteriaAlreadyPresent(t *testing.T) {
original := "Do something.\n\n## Acceptance Criteria\n- All tests pass."
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: original,
AllowedTools: []string{"Bash"},
},
}
sanitizeElaboratedTask(task)
if task.Agent.Instructions != original {
t.Errorf("instructions were modified when acceptance criteria were already present")
}
}
func TestSanitize_AddsTDDReminderForCodingTaskWithoutTestMention(t *testing.T) {
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: "## Acceptance Criteria\nFix the bug.\n\nModify the handler to return 404 instead of 500.",
AllowedTools: []string{"Edit", "Read"},
},
}
sanitizeElaboratedTask(task)
lower := strings.ToLower(task.Agent.Instructions)
if !strings.Contains(lower, "tdd") && !strings.Contains(lower, "test") {
t.Error("expected TDD reminder for coding task without test mention")
}
}
func TestSanitize_NoTDDReminderWhenTestsAlreadyMentioned(t *testing.T) {
original := "## Acceptance Criteria\nAll tests pass.\n\nEdit the file and run go test ./... to verify."
task := &elaboratedTask{
Agent: elaboratedAgent{
Instructions: original,
AllowedTools: []string{"Edit", "Read", "Bash"},
},
}
before := task.Agent.Instructions
sanitizeElaboratedTask(task)
// Should NOT add a second TDD block since tests are already mentioned.
// Count occurrences of "tdd" / "test" — just verify no double-append.
if strings.Count(strings.ToLower(task.Agent.Instructions), "tdd") > 1 {
t.Errorf("TDD block added twice; instructions:\n%s", task.Agent.Instructions)
}
_ = before
}
func TestElaboratePrompt_RequiresAcceptanceCriteria(t *testing.T) {
prompt := buildElaboratePrompt("")
lower := strings.ToLower(prompt)
if !strings.Contains(lower, "acceptance criteria") {
t.Error("elaborate prompt should instruct the model to include acceptance criteria")
}
}
func TestElaboratePrompt_RequiresAllRelevantTools(t *testing.T) {
prompt := buildElaboratePrompt("")
// Prompt must remind the model to include file-creating tools when needed.
if !strings.Contains(prompt, "Write") {
t.Error("elaborate prompt should mention the Write tool so models know to include it")
}
}
func TestElaborateTask_SanitizationAppliedToResponse(t *testing.T) {
srv, _ := testServer(t)
// Elaborator returns a task that needs Write (instructions say "create file")
// but does NOT include it in allowed_tools.
task := elaboratedTask{
Name: "Generate report",
Description: "Creates a report file.",
Agent: elaboratedAgent{
Type: "claude",
Model: "sonnet",
Instructions: "Create a new file called report.md with the analysis results.\n\n## Acceptance Criteria\n- report.md exists.",
MaxBudgetUSD: 0.5,
AllowedTools: []string{"Bash"}, // Write intentionally missing
},
Timeout: "15m",
Priority: "normal",
Tags: []string{"report"},
}
taskJSON, _ := json.Marshal(task)
wrapper := map[string]string{"result": string(taskJSON)}
wrapperJSON, _ := json.Marshal(wrapper)
srv.elaborateCmdPath = createFakeClaude(t, string(wrapperJSON), 0)
body := `{"prompt":"generate a report"}`
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusOK {
t.Fatalf("status: want 200, got %d; body: %s", w.Code, w.Body.String())
}
var result elaboratedTask
if err := json.NewDecoder(w.Body).Decode(&result); err != nil {
t.Fatalf("failed to decode response: %v", err)
}
if !hasTool(result.Agent.AllowedTools, "Write") {
t.Errorf("expected Write in sanitized allowed_tools, got %v", result.Agent.AllowedTools)
}
}
func TestElaboratePrompt_ContainsWorkDir(t *testing.T) {
prompt := buildElaboratePrompt("/some/custom/path")
if !strings.Contains(prompt, "/some/custom/path") {
t.Error("prompt should contain the provided workDir")
}
if strings.Contains(prompt, "/root/workspace/claudomator") {
t.Error("prompt should not hardcode /root/workspace/claudomator")
}
}
func TestElaboratePrompt_EmptyWorkDir(t *testing.T) {
prompt := buildElaboratePrompt("")
if strings.Contains(prompt, "/root") {
t.Error("prompt should not reference /root when workDir is empty")
}
}
func TestElaborateTask_Success(t *testing.T) {
srv, _ := testServer(t)
// Build fake Claude output: {"result": "<task-json>"}
task := elaboratedTask{
Name: "Run Go tests with race detector",
Description: "Runs the Go test suite with -race flag and checks coverage.",
Agent: elaboratedAgent{
Type: "claude",
Model: "sonnet",
Instructions: "Run go test -race ./... and report results.",
ProjectDir: "",
MaxBudgetUSD: 0.5,
AllowedTools: []string{"Bash"},
},
Timeout: "15m",
Priority: "normal",
Tags: []string{"testing", "ci"},
}
taskJSON, err := json.Marshal(task)
if err != nil {
t.Fatal(err)
}
wrapper := map[string]string{"result": string(taskJSON)}
wrapperJSON, err := json.Marshal(wrapper)
if err != nil {
t.Fatal(err)
}
srv.elaborateCmdPath = createFakeClaude(t, string(wrapperJSON), 0)
body := `{"prompt":"run the Go test suite with race detector and fail if coverage < 80%"}`
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusOK {
t.Fatalf("status: want 200, got %d; body: %s", w.Code, w.Body.String())
}
var result elaboratedTask
if err := json.NewDecoder(w.Body).Decode(&result); err != nil {
t.Fatalf("failed to decode response: %v", err)
}
if result.Name == "" {
t.Error("expected non-empty name")
}
if result.Agent.Instructions == "" {
t.Error("expected non-empty instructions")
}
}
func TestElaborateTask_EmptyPrompt(t *testing.T) {
srv, _ := testServer(t)
body := `{"prompt":""}`
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusBadRequest {
t.Fatalf("status: want 400, got %d; body: %s", w.Code, w.Body.String())
}
var resp map[string]string
json.NewDecoder(w.Body).Decode(&resp)
if resp["error"] == "" {
t.Error("expected error message in response")
}
}
func TestElaborateTask_MarkdownFencedJSON(t *testing.T) {
srv, _ := testServer(t)
// Build a valid task JSON but wrap it in markdown fences as haiku sometimes does.
task := elaboratedTask{
Name: "Test task",
Description: "Does something.",
Agent: elaboratedAgent{
Type: "claude",
Model: "sonnet",
Instructions: "Do the thing.",
MaxBudgetUSD: 0.5,
AllowedTools: []string{"Bash"},
},
Timeout: "15m",
Priority: "normal",
Tags: []string{"test"},
}
taskJSON, _ := json.Marshal(task)
fenced := "```json\n" + string(taskJSON) + "\n```"
wrapper := map[string]string{"result": fenced}
wrapperJSON, _ := json.Marshal(wrapper)
srv.elaborateCmdPath = createFakeClaude(t, string(wrapperJSON), 0)
body := `{"prompt":"do something"}`
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusOK {
t.Fatalf("status: want 200, got %d; body: %s", w.Code, w.Body.String())
}
var result elaboratedTask
if err := json.NewDecoder(w.Body).Decode(&result); err != nil {
t.Fatalf("failed to decode response: %v", err)
}
if result.Name != task.Name {
t.Errorf("name: want %q, got %q", task.Name, result.Name)
}
}
func TestElaborateTask_InvalidJSONFromClaude(t *testing.T) {
srv, _ := testServer(t)
// Fake Claude returns something that is not valid JSON.
srv.elaborateCmdPath = createFakeClaude(t, "not valid json at all", 0)
body := `{"prompt":"do something"}`
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusBadGateway {
t.Fatalf("status: want 502, got %d; body: %s", w.Code, w.Body.String())
}
var resp map[string]string
json.NewDecoder(w.Body).Decode(&resp)
if resp["error"] == "" {
t.Error("expected error message in response")
}
}
func createFakeClaudeCapturingArgs(t *testing.T, output string, exitCode int, argsFile string) string {
t.Helper()
dir := t.TempDir()
outputFile := filepath.Join(dir, "output.json")
if err := os.WriteFile(outputFile, []byte(output), 0600); err != nil {
t.Fatal(err)
}
script := filepath.Join(dir, "claude")
// Use printf to handle arguments safely
content := fmt.Sprintf("#!/bin/sh\nprintf \"%%s\\n\" \"$@\" > %q\ncat %q\nexit %d\n", argsFile, outputFile, exitCode)
if err := os.WriteFile(script, []byte(content), 0755); err != nil {
t.Fatal(err)
}
return script
}
func TestElaborateTask_WithProjectContext(t *testing.T) {
srv, _ := testServer(t)
// Create a temporary workspace with CLAUDE.md and SESSION_STATE.md
workDir := t.TempDir()
claudeContent := "Claude context info"
sessionContent := "Session state info"
if err := os.WriteFile(filepath.Join(workDir, "CLAUDE.md"), []byte(claudeContent), 0600); err != nil {
t.Fatal(err)
}
if err := os.WriteFile(filepath.Join(workDir, "SESSION_STATE.md"), []byte(sessionContent), 0600); err != nil {
t.Fatal(err)
}
// Capture arguments passed to claude
argsFile := filepath.Join(t.TempDir(), "args.txt")
task := elaboratedTask{
Name: "Task with context",
Agent: elaboratedAgent{
Instructions: "Instructions",
},
}
taskJSON, _ := json.Marshal(task)
wrapper := map[string]string{"result": string(taskJSON)}
wrapperJSON, _ := json.Marshal(wrapper)
// Modified createFakeClaude to capture arguments
srv.elaborateCmdPath = createFakeClaudeCapturingArgs(t, string(wrapperJSON), 0, argsFile)
body := fmt.Sprintf(`{"prompt":"do something", "project_dir":"%s"}`, workDir)
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusOK {
t.Fatalf("status: want 200, got %d; body: %s", w.Code, w.Body.String())
}
// Check if captured arguments contain the context
capturedArgs, err := os.ReadFile(argsFile)
if err != nil {
t.Fatal(err)
}
argsStr := string(capturedArgs)
if !strings.Contains(argsStr, claudeContent) {
t.Errorf("expected arguments to contain CLAUDE.md content, got %s", argsStr)
}
if !strings.Contains(argsStr, sessionContent) {
t.Errorf("expected arguments to contain SESSION_STATE.md content, got %s", argsStr)
}
}
func TestElaborateTask_AppendsRawNarrative(t *testing.T) {
srv, _ := testServer(t)
workDir := t.TempDir()
prompt := "this is my raw request"
task := elaboratedTask{
Name: "Task",
Agent: elaboratedAgent{
Instructions: "Instructions",
},
}
taskJSON, _ := json.Marshal(task)
wrapper := map[string]string{"result": string(taskJSON)}
wrapperJSON, _ := json.Marshal(wrapper)
srv.elaborateCmdPath = createFakeClaude(t, string(wrapperJSON), 0)
body := fmt.Sprintf(`{"prompt":"%s", "project_dir":"%s"}`, prompt, workDir)
req := httptest.NewRequest("POST", "/api/tasks/elaborate", bytes.NewBufferString(body))
req.Header.Set("Content-Type", "application/json")
w := httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)
if w.Code != http.StatusOK {
t.Fatalf("status: want 200, got %d; body: %s", w.Code, w.Body.String())
}
// It runs in a goroutine, so wait a bit
path := filepath.Join(workDir, "docs", "RAW_NARRATIVE.md")
var data []byte
var err error
for i := 0; i < 10; i++ {
data, err = os.ReadFile(path)
if err == nil {
break
}
time.Sleep(10 * time.Millisecond)
}
if err != nil {
t.Fatalf("failed to read RAW_NARRATIVE.md: %v", err)
}
if !strings.Contains(string(data), prompt) {
t.Errorf("expected RAW_NARRATIVE.md to contain prompt, got %s", string(data))
}
}
|