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
|
package askcli
import (
"bytes"
"context"
"io"
"path/filepath"
"strings"
"testing"
"time"
)
func TestHandleUrgency_Success(t *testing.T) {
dir := t.TempDir()
oldRoot := taskAliasCacheRoot
oldNow := nowTaskAliasCache
taskAliasCacheRoot = func() (string, error) { return filepath.Join(dir, "hexai"), nil }
nowTaskAliasCache = func() time.Time { return time.Date(2026, 3, 26, 12, 0, 0, 0, time.UTC) }
defer func() {
taskAliasCacheRoot = oldRoot
nowTaskAliasCache = oldNow
}()
writeTaskAliasCacheForTest(t, taskAliasCache{
NextID: 2,
Entries: []taskAliasCacheEntry{
{UUID: "uuid-1", Alias: "0", CreatedAt: nowTaskAliasCache()},
{UUID: "uuid-2", Alias: "1", CreatedAt: nowTaskAliasCache()},
},
})
jsonData := `[{"uuid":"uuid-2","description":"Task 2","status":"pending","priority":"M","tags":["agent"],"urgency":10.0,"depends":[]},{"uuid":"uuid-1","description":"Task 1","status":"pending","priority":"H","tags":["cli"],"urgency":15.0,"depends":[]}]`
d := NewDispatcher(&spyRunner{runFn: func(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer) (int, error) {
_, _ = io.WriteString(stdout, jsonData)
return 0, nil
}})
var stdout, stderr bytes.Buffer
code, _ := d.Dispatch(context.Background(), []string{"urgency"}, nil, &stdout, &stderr)
if code != 0 {
t.Fatalf("urgency code = %d, want 0", code)
}
output := stdout.String()
lines := strings.Split(strings.TrimSpace(output), "\n")
if len(lines) < 4 {
t.Fatalf("expected at least 4 lines (header + sep + 2 tasks), got %d: %q", len(lines), output)
}
taskLine1 := lines[2]
taskLine2 := lines[3]
if !strings.Contains(taskLine1, "0") || strings.Contains(taskLine1, "uuid-1") {
t.Fatalf("first task line should contain alias 0 (urgency 15.0), got: %s", taskLine1)
}
if !strings.Contains(taskLine2, "1") || strings.Contains(taskLine2, "uuid-2") {
t.Fatalf("second task line should contain alias 1 (urgency 10.0), got: %s", taskLine2)
}
}
func TestHandleUrgency_EmptyList(t *testing.T) {
d := NewDispatcher(&spyRunner{runFn: func(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer) (int, error) {
_, _ = io.WriteString(stdout, "[]")
return 0, nil
}})
var stdout, stderr bytes.Buffer
code, _ := d.Dispatch(context.Background(), []string{"urgency"}, nil, &stdout, &stderr)
if code != 0 {
t.Fatalf("urgency code = %d, want 0 for empty list", code)
}
}
func TestHandleUrgency_ExportFails(t *testing.T) {
d := NewDispatcher(&spyRunner{runFn: func(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer) (int, error) {
return 1, nil
}})
var stdout, stderr bytes.Buffer
code, _ := d.Dispatch(context.Background(), []string{"urgency"}, nil, &stdout, &stderr)
if code != 1 {
t.Fatalf("urgency code = %d, want 1 when export fails", code)
}
}
func TestHandleUrgency_PassesCorrectArgs(t *testing.T) {
var capturedArgs []string
d := NewDispatcher(&spyRunner{runFn: func(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer) (int, error) {
capturedArgs = args
_, _ = io.WriteString(stdout, "[]")
return 0, nil
}})
var stdout, stderr bytes.Buffer
d.Dispatch(context.Background(), []string{"urgency"}, nil, &stdout, &stderr)
if len(capturedArgs) != 1 || capturedArgs[0] != "export" {
t.Fatalf("capturedArgs = %v, want [export]", capturedArgs)
}
}
|