summaryrefslogtreecommitdiff
path: root/internal/askcli/command_info_add_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-23 08:21:27 +0200
committerPaul Buetow <paul@buetow.org>2026-03-23 08:21:27 +0200
commit1e2e96f92d6fb25ae55303d90444534369bda0aa (patch)
treec809ee89978c6de886f66541807d3efc447ac180 /internal/askcli/command_info_add_test.go
parent4958ea5100ebf8d4ff9fd818b7bc59d01989feb4 (diff)
fix: correct taskwarrior filter ordering in dep and info commands
- command_dep.go handleDepAddRm: was passing uuid as a modification argument (task modify <uuid> depends:...) which could modify ALL agent tasks; now uses uuid:<uuid> as filter - command_dep.go handleDepList: updated deprecated 'uuid <value>' space syntax to canonical 'uuid:<uuid>' colon syntax - command_info_add.go handleInfo: same space→colon fix for consistency All mutation commands now uniformly use uuid:<uuid> as the filter before the action verb. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/askcli/command_info_add_test.go')
-rw-r--r--internal/askcli/command_info_add_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/askcli/command_info_add_test.go b/internal/askcli/command_info_add_test.go
index b809097..ce821ca 100644
--- a/internal/askcli/command_info_add_test.go
+++ b/internal/askcli/command_info_add_test.go
@@ -11,7 +11,8 @@ import (
func TestHandleInfo_Success(t *testing.T) {
jsonData := `[{"uuid":"test-uuid","description":"Test task","status":"pending","priority":"H","tags":["cli","agent"],"urgency":15.0,"depends":["dep-1"],"annotations":[{"description":"Note 1","entry":"2026-03-22T10:00:00Z"}]}]`
d := NewDispatcher(&spyRunner{runFn: func(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer) (int, error) {
- if args[0] == "uuid" {
+ // args[0] is "uuid:<uuid>" (the filter); emit data for any export call
+ if len(args) > 0 && strings.HasPrefix(args[0], "uuid:") {
io.WriteString(stdout, jsonData)
}
return 0, nil