mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-14 13:49:18 +02:00
CancelTaskByUser (POST /api/tasks/{taskId}/cancel) keyed cancellation off
issue_id / chat_session_id alone, so any task whose only source link was
autopilot_run_id (run_only autopilots) or quick_create context fell into the
dead else branch and 404'd with "task not found" — even though the task was
visible (and showed a cancel X) on the agent Activity tab.
Enforce tenancy uniformly through the task's owning agent instead: agent_id is
NOT NULL on every task row (ON DELETE CASCADE), and agents are workspace-scoped,
so GetAgentTaskInWorkspace (task JOIN agent ON workspace) is a single tenant
guard that works regardless of which optional source FK is set — including
orphan tasks whose autopilot_run_id was SET NULL after the autopilot was
deleted. Privacy layers on top: chat tasks stay creator-only, and every other
task mirrors the agent Activity / snapshot private-agent visibility gate via
canAccessPrivateAgent so the id-only endpoint is never more permissive than the
surface that exposes the task.
Tests cover run_only (same-ws success, cross-ws 404 no-mutation), quick_create,
retry clones, issue-task regression, chat non-creator 403, and private-agent
plain-member 403.
Co-authored-by: J <j@multica.ai>
Co-authored-by: multica-agent <github@multica.ai>
336 lines
13 KiB
Go
336 lines
13 KiB
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
)
|
|
|
|
// CancelTaskByUser (POST /api/tasks/{taskId}/cancel) used to key cancellation
|
|
// off issue_id / chat_session_id alone, which 404'd every task whose only
|
|
// source link was autopilot_run_id or quick_create context (MUL-2827). These
|
|
// tests pin the new behavior: tenancy flows through the task's owning agent,
|
|
// with chat-creator privacy and the private-agent visibility gate layered on.
|
|
|
|
// taskStatus reads a task's current status straight from the DB so reject
|
|
// paths can assert "no side effect before the access check".
|
|
func taskStatus(t *testing.T, taskID string) string {
|
|
t.Helper()
|
|
var status string
|
|
if err := testPool.QueryRow(context.Background(),
|
|
`SELECT status FROM agent_task_queue WHERE id = $1`, taskID,
|
|
).Scan(&status); err != nil {
|
|
t.Fatalf("read task status: %v", err)
|
|
}
|
|
return status
|
|
}
|
|
|
|
// createAutopilotRunOnlyTask seeds the autopilot -> autopilot_run -> task chain
|
|
// that AutopilotService.dispatchRunOnly produces: a queued task with issue_id
|
|
// and chat_session_id NULL, linked only by autopilot_run_id. The autopilot is
|
|
// created in the agent's own workspace so the fixture works for foreign agents
|
|
// too.
|
|
func createAutopilotRunOnlyTask(t *testing.T, agentID string) string {
|
|
t.Helper()
|
|
ctx := context.Background()
|
|
|
|
var workspaceID, runtimeID string
|
|
if err := testPool.QueryRow(ctx,
|
|
`SELECT workspace_id, runtime_id FROM agent WHERE id = $1`, agentID,
|
|
).Scan(&workspaceID, &runtimeID); err != nil {
|
|
t.Fatalf("load agent workspace/runtime: %v", err)
|
|
}
|
|
|
|
var autopilotID string
|
|
if err := testPool.QueryRow(ctx, `
|
|
INSERT INTO autopilot (workspace_id, title, assignee_id, execution_mode, created_by_type, created_by_id)
|
|
VALUES ($1, 'cancel-runonly-ap', $2, 'run_only', 'member', $3)
|
|
RETURNING id
|
|
`, workspaceID, agentID, testUserID).Scan(&autopilotID); err != nil {
|
|
t.Fatalf("create autopilot: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM autopilot WHERE id = $1`, autopilotID) })
|
|
|
|
var runID string
|
|
if err := testPool.QueryRow(ctx, `
|
|
INSERT INTO autopilot_run (autopilot_id, source, status)
|
|
VALUES ($1, 'manual', 'running')
|
|
RETURNING id
|
|
`, autopilotID).Scan(&runID); err != nil {
|
|
t.Fatalf("create autopilot_run: %v", err)
|
|
}
|
|
|
|
var taskID string
|
|
if err := testPool.QueryRow(ctx, `
|
|
INSERT INTO agent_task_queue (agent_id, runtime_id, status, priority, autopilot_run_id)
|
|
VALUES ($1, $2, 'queued', 0, $3)
|
|
RETURNING id
|
|
`, agentID, runtimeID, runID).Scan(&taskID); err != nil {
|
|
t.Fatalf("create run_only task: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM agent_task_queue WHERE id = $1`, taskID) })
|
|
return taskID
|
|
}
|
|
|
|
// createForeignWorkspaceAgent stands up an isolated workspace + runtime + agent
|
|
// and returns the agent ID, for cross-tenant cancel tests.
|
|
func createForeignWorkspaceAgent(t *testing.T) string {
|
|
t.Helper()
|
|
ctx := context.Background()
|
|
|
|
var workspaceID string
|
|
if err := testPool.QueryRow(ctx, `
|
|
INSERT INTO workspace (name, slug, description, issue_prefix)
|
|
VALUES ('Foreign Cancel WS', 'foreign-cancel-ws', 'cross-tenant cancel test', 'FCW')
|
|
RETURNING id
|
|
`).Scan(&workspaceID); err != nil {
|
|
t.Fatalf("create foreign workspace: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM workspace WHERE id = $1`, workspaceID) })
|
|
|
|
var runtimeID string
|
|
if err := testPool.QueryRow(ctx, `
|
|
INSERT INTO agent_runtime (workspace_id, daemon_id, name, runtime_mode, provider, status, device_info, metadata, last_seen_at)
|
|
VALUES ($1, NULL, 'Foreign Cancel Runtime', 'cloud', 'foreign_runtime', 'online', 'Foreign runtime', '{}'::jsonb, now())
|
|
RETURNING id
|
|
`, workspaceID).Scan(&runtimeID); err != nil {
|
|
t.Fatalf("create foreign runtime: %v", err)
|
|
}
|
|
|
|
var agentID string
|
|
if err := testPool.QueryRow(ctx, `
|
|
INSERT INTO agent (workspace_id, name, description, runtime_mode, runtime_config, runtime_id, visibility, max_concurrent_tasks)
|
|
VALUES ($1, 'Foreign Cancel Agent', '', 'cloud', '{}'::jsonb, $2, 'workspace', 1)
|
|
RETURNING id
|
|
`, workspaceID, runtimeID).Scan(&agentID); err != nil {
|
|
t.Fatalf("create foreign agent: %v", err)
|
|
}
|
|
return agentID
|
|
}
|
|
|
|
// createWorkspaceMemberUser adds a plain (non-owner/admin) member to the test
|
|
// workspace and returns the user ID. The member row cascades when the user is
|
|
// deleted (member.user_id ON DELETE CASCADE).
|
|
func createWorkspaceMemberUser(t *testing.T, name, email string) string {
|
|
t.Helper()
|
|
ctx := context.Background()
|
|
|
|
var userID string
|
|
if err := testPool.QueryRow(ctx,
|
|
`INSERT INTO "user" (name, email) VALUES ($1, $2) RETURNING id`, name, email,
|
|
).Scan(&userID); err != nil {
|
|
t.Fatalf("create user %s: %v", email, err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM "user" WHERE id = $1`, userID) })
|
|
|
|
if _, err := testPool.Exec(ctx,
|
|
`INSERT INTO member (workspace_id, user_id, role) VALUES ($1, $2, 'member')`, testWorkspaceID, userID,
|
|
); err != nil {
|
|
t.Fatalf("add member %s: %v", email, err)
|
|
}
|
|
return userID
|
|
}
|
|
|
|
func cancelTaskByUserRequest(t *testing.T, userID, taskID string) *http.Request {
|
|
t.Helper()
|
|
req := newRequestAs(userID, "POST", "/api/tasks/"+taskID+"/cancel", nil)
|
|
req = withURLParam(req, "taskId", taskID)
|
|
return withChatTestWorkspaceCtx(t, req)
|
|
}
|
|
|
|
// TestCancelTaskByUser_RunOnlyAutopilot_Succeeds is the core MUL-2827 fix: a
|
|
// run_only autopilot task (issue_id + chat_session_id NULL, only
|
|
// autopilot_run_id set) is cancellable by a member of its agent's workspace.
|
|
func TestCancelTaskByUser_RunOnlyAutopilot_Succeeds(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
agentID := createHandlerTestAgent(t, "CancelRunOnlyAgent", []byte("[]"))
|
|
taskID := createAutopilotRunOnlyTask(t, agentID)
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, testUserID, taskID))
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("expected 200, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, taskID); got != "cancelled" {
|
|
t.Fatalf("task not cancelled: status = %q", got)
|
|
}
|
|
}
|
|
|
|
// TestCancelTaskByUser_RunOnlyAutopilot_CrossWorkspace_Returns404 verifies the
|
|
// tenant guard: a member of workspace A cannot cancel a run_only task whose
|
|
// agent lives in workspace B, and the task is not mutated before the check.
|
|
func TestCancelTaskByUser_RunOnlyAutopilot_CrossWorkspace_Returns404(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
foreignAgentID := createForeignWorkspaceAgent(t)
|
|
taskID := createAutopilotRunOnlyTask(t, foreignAgentID)
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, testUserID, taskID))
|
|
if w.Code != http.StatusNotFound {
|
|
t.Fatalf("expected 404, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, taskID); got != "queued" {
|
|
t.Fatalf("foreign task was mutated: status = %q", got)
|
|
}
|
|
}
|
|
|
|
// TestCancelTaskByUser_QuickCreate_Succeeds verifies a quick_create task — no
|
|
// issue yet, no chat session, only context JSONB — is cancellable during its
|
|
// active window (the pre-issue-creation phase, i.e. whenever the user clicks X).
|
|
func TestCancelTaskByUser_QuickCreate_Succeeds(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
agentID := createHandlerTestAgent(t, "CancelQuickCreateAgent", []byte("[]"))
|
|
|
|
var taskID string
|
|
if err := testPool.QueryRow(context.Background(), `
|
|
INSERT INTO agent_task_queue (agent_id, runtime_id, status, priority, issue_id, context)
|
|
VALUES ($1, (SELECT runtime_id FROM agent WHERE id = $1), 'running', 0, NULL,
|
|
'{"type":"quick_create","workspace_id":"ws","prompt":"do a thing"}'::jsonb)
|
|
RETURNING id
|
|
`, agentID).Scan(&taskID); err != nil {
|
|
t.Fatalf("create quick_create task: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM agent_task_queue WHERE id = $1`, taskID) })
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, testUserID, taskID))
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("expected 200, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, taskID); got != "cancelled" {
|
|
t.Fatalf("task not cancelled: status = %q", got)
|
|
}
|
|
}
|
|
|
|
// TestCancelTaskByUser_RetryClone_Autopilot_Succeeds verifies a retry clone of
|
|
// an autopilot task — which copies parent_task_id + autopilot_run_id verbatim,
|
|
// inheriting the NULL issue/chat links — is still cancellable.
|
|
func TestCancelTaskByUser_RetryClone_Autopilot_Succeeds(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
agentID := createHandlerTestAgent(t, "CancelRetryCloneAgent", []byte("[]"))
|
|
parentID := createAutopilotRunOnlyTask(t, agentID)
|
|
|
|
var cloneID string
|
|
if err := testPool.QueryRow(context.Background(), `
|
|
INSERT INTO agent_task_queue (agent_id, runtime_id, status, priority, autopilot_run_id, parent_task_id, attempt)
|
|
SELECT agent_id, runtime_id, 'queued', priority, autopilot_run_id, id, 1
|
|
FROM agent_task_queue WHERE id = $1
|
|
RETURNING id
|
|
`, parentID).Scan(&cloneID); err != nil {
|
|
t.Fatalf("create retry clone: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM agent_task_queue WHERE id = $1`, cloneID) })
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, testUserID, cloneID))
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("expected 200, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, cloneID); got != "cancelled" {
|
|
t.Fatalf("clone not cancelled: status = %q", got)
|
|
}
|
|
}
|
|
|
|
// TestCancelTaskByUser_IssueTask_Succeeds is a regression guard: issue-bound
|
|
// tasks (the original supported case) stay cancellable after the rewrite.
|
|
func TestCancelTaskByUser_IssueTask_Succeeds(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
agentID := createHandlerTestAgent(t, "CancelIssueTaskAgent", []byte("[]"))
|
|
|
|
var issueID, taskID string
|
|
if err := testPool.QueryRow(context.Background(), `
|
|
INSERT INTO issue (workspace_id, title, status, priority, creator_id, creator_type, number, position)
|
|
VALUES ($1, 'cancel-byid-issue', 'todo', 'medium', $2, 'member', 92001, 0)
|
|
RETURNING id
|
|
`, testWorkspaceID, testUserID).Scan(&issueID); err != nil {
|
|
t.Fatalf("create issue: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM issue WHERE id = $1`, issueID) })
|
|
|
|
if err := testPool.QueryRow(context.Background(), `
|
|
INSERT INTO agent_task_queue (agent_id, runtime_id, status, priority, issue_id)
|
|
VALUES ($1, (SELECT runtime_id FROM agent WHERE id = $1), 'queued', 0, $2)
|
|
RETURNING id
|
|
`, agentID, issueID).Scan(&taskID); err != nil {
|
|
t.Fatalf("create issue task: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM agent_task_queue WHERE id = $1`, taskID) })
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, testUserID, taskID))
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("expected 200, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, taskID); got != "cancelled" {
|
|
t.Fatalf("task not cancelled: status = %q", got)
|
|
}
|
|
}
|
|
|
|
// TestCancelTaskByUser_ChatTask_NonCreator_Returns403 preserves chat privacy:
|
|
// a workspace member who did not start the conversation cannot cancel its task.
|
|
func TestCancelTaskByUser_ChatTask_NonCreator_Returns403(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
agentID := createHandlerTestAgent(t, "CancelChatAgent", []byte("[]"))
|
|
sessionID := createHandlerTestChatSession(t, agentID) // creator = testUserID
|
|
otherUserID := createWorkspaceMemberUser(t, "Chat Bystander", "cancel-chat-bystander@multica.test")
|
|
|
|
var taskID string
|
|
if err := testPool.QueryRow(context.Background(), `
|
|
INSERT INTO agent_task_queue (agent_id, runtime_id, status, priority, issue_id, chat_session_id)
|
|
VALUES ($1, (SELECT runtime_id FROM agent WHERE id = $1), 'running', 0, NULL, $2)
|
|
RETURNING id
|
|
`, agentID, sessionID).Scan(&taskID); err != nil {
|
|
t.Fatalf("create chat task: %v", err)
|
|
}
|
|
t.Cleanup(func() { testPool.Exec(context.Background(), `DELETE FROM agent_task_queue WHERE id = $1`, taskID) })
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, otherUserID, taskID))
|
|
if w.Code != http.StatusForbidden {
|
|
t.Fatalf("expected 403, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, taskID); got != "running" {
|
|
t.Fatalf("chat task was mutated: status = %q", got)
|
|
}
|
|
}
|
|
|
|
// TestCancelTaskByUser_PrivateAgent_PlainMember_Returns403 verifies the cancel
|
|
// endpoint mirrors the agent Activity / snapshot visibility gate: a plain
|
|
// member who cannot see a private agent's tasks cannot cancel them either.
|
|
func TestCancelTaskByUser_PrivateAgent_PlainMember_Returns403(t *testing.T) {
|
|
if testHandler == nil {
|
|
t.Skip("database not available")
|
|
}
|
|
|
|
agentID, _, memberID := privateAgentTestFixture(t)
|
|
taskID := createAutopilotRunOnlyTask(t, agentID)
|
|
|
|
w := httptest.NewRecorder()
|
|
testHandler.CancelTaskByUser(w, cancelTaskByUserRequest(t, memberID, taskID))
|
|
if w.Code != http.StatusForbidden {
|
|
t.Fatalf("expected 403, got %d: %s", w.Code, w.Body.String())
|
|
}
|
|
if got := taskStatus(t, taskID); got != "queued" {
|
|
t.Fatalf("task was mutated: status = %q", got)
|
|
}
|
|
}
|