d8e1004551
## Thinking Path > - Paperclip is the open source app people use to manage AI agents for work. > - The artifacts surface is where board users inspect files, media, and documents produced by agents. > - Grouped artifact stacks make that surface easier to scan by task, but the first pass still made grouping feel secondary to media filters. > - The follow-up request was to make grouping the default and give the grouping control the same icon-only outline treatment used on the issues page. > - This pull request keeps the existing artifact grouping API/UI, then polishes the artifacts toolbar state and Storybook review coverage. > - The benefit is that `/artifacts` now opens in the task-stack view by default while preserving explicit flat-mode filtering via `groupBy=none`. ## Linked Issues or Issue Description No public GitHub issue exists for this internal Paperclip task. ### Subsystem affected ui/ — React + Vite board UI. ### Problem or motivation The `/artifacts` grouping affordance was visually placed after the media filters, rendered as a text button, and defaulted to a flat artifact list. Internal follow-up `PAP-10465` requested the grouping icon move left of the filters, become an icon-only outlined button like `/issues`, and make Task grouping the default. ### Proposed solution Default `/artifacts` to grouped Task stacks, keep explicit flat mode available as `groupBy=none`, move the grouping control before the media chips, and restyle it as the shared icon-only outline button pattern. ### Alternatives considered Leaving flat mode as the implicit default was rejected because it does not satisfy the follow-up. Keeping a text label on the grouping trigger was rejected because `/issues` already established the icon-only outline pattern for this class of toolbar control. ### Roadmap alignment This aligns with the `Artifacts & Work Products` roadmap item by making generated outputs easier to inspect and operate from the board UI. ## What Changed - Defaulted the `/artifacts` page to `groupBy=task` when no grouping URL param is present, while keeping explicit flat mode available with `groupBy=none`. - Moved the group control before the media filter chips and changed it to an icon-only outlined button using the shared `Button` pattern. - Updated artifact page tests to cover default Task grouping, explicit flat mode, trigger ordering, and icon-only outline metadata. - Updated the artifact Storybook story so its toolbar mock matches the production ordering and grouped Task is documented as the default mode. ## Verification - `pnpm exec vitest run ui/src/pages/Artifacts.test.tsx ui/src/components/artifacts/ArtifactGroupCard.test.tsx` — passed. - `pnpm --filter @paperclipai/ui typecheck` — passed. - `pnpm --filter @paperclipai/server typecheck` — passed. - `git diff --check` — passed. - QA visual validation from internal follow-up PAP-10466 passed desktop/mobile scenarios. Screenshot evidence attached there: - Desktop default: http://paperclip-dev:3100/api/attachments/bc81305d-f5de-485c-abeb-9e7c3d9d8539/content - Desktop toolbar close-up: http://paperclip-dev:3100/api/attachments/3375a62b-2110-48f3-bafa-ea98c00f99f7/content - Mobile default: http://paperclip-dev:3100/api/attachments/bfc5642e-9248-431e-9bac-36284dec1c89/content - Mobile toolbar close-up: http://paperclip-dev:3100/api/attachments/ca79401a-5ba8-464d-bc6e-aeffd47fe695/content - GitHub PR checks on head `431964c8b` — passed, including Greptile 5/5. ## Risks Low to medium risk. The main behavior shift is intentional: `/artifacts` now queries grouped Task stacks by default. Existing flat mode remains available through the grouping menu and explicit `groupBy=none` URLs. ## Model Used OpenAI Codex, GPT-5.4 class coding model in this Paperclip heartbeat environment, with shell, git, test, and GitHub CLI tool use. Context window managed by the Codex runtime. ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have searched GitHub for duplicate or related PRs and linked them above - [x] I have either (a) linked existing issues with `Fixes: #` / `Closes #` / `Refs #` OR (b) described the issue in-PR following the relevant issue template - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [x] If this change affects the UI, I have included before/after screenshots - [x] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] All Paperclip CI gates are green - [x] Greptile is 5/5 with no open P2s, recommendations, or follow-ups - [x] I will address all Greptile and reviewer comments before requesting merge --------- Co-authored-by: Paperclip <noreply@paperclip.ing>
794 lines
28 KiB
TypeScript
794 lines
28 KiB
TypeScript
import { Readable } from "node:stream";
|
|
import express from "express";
|
|
import { eq } from "drizzle-orm";
|
|
import request from "supertest";
|
|
import { afterAll, afterEach, beforeAll, describe, expect, it, vi } from "vitest";
|
|
import {
|
|
agents,
|
|
assets,
|
|
companies,
|
|
createDb,
|
|
documents,
|
|
heartbeatRuns,
|
|
issueAttachments,
|
|
issueComments,
|
|
issueDocuments,
|
|
issues,
|
|
issueWorkProducts,
|
|
projects,
|
|
} from "@paperclipai/db";
|
|
import { ISSUE_CONTINUATION_SUMMARY_DOCUMENT_KEY } from "@paperclipai/shared";
|
|
import {
|
|
getEmbeddedPostgresTestSupport,
|
|
startEmbeddedPostgresTestDatabase,
|
|
} from "./helpers/embedded-postgres.js";
|
|
import { errorHandler } from "../middleware/index.js";
|
|
import { companyRoutes } from "../routes/companies.js";
|
|
import { companyArtifactsService } from "../services/company-artifacts.js";
|
|
import type { StorageService } from "../storage/types.js";
|
|
|
|
const embeddedPostgresSupport = await getEmbeddedPostgresTestSupport();
|
|
const describeEmbeddedPostgres = embeddedPostgresSupport.supported ? describe : describe.skip;
|
|
|
|
if (!embeddedPostgresSupport.supported) {
|
|
console.warn(
|
|
`Skipping embedded Postgres company artifacts tests on this host: ${embeddedPostgresSupport.reason ?? "unsupported environment"}`,
|
|
);
|
|
}
|
|
|
|
function createStorageService(files: Record<string, Buffer> = {}): StorageService {
|
|
return {
|
|
provider: "local_disk",
|
|
putFile: vi.fn(),
|
|
getObject: vi.fn(async (_companyId, objectKey, options) => {
|
|
const body = files[objectKey] ?? Buffer.alloc(0);
|
|
const range = options?.range;
|
|
const ranged = range ? body.subarray(range.start, range.end + 1) : body;
|
|
return {
|
|
stream: Readable.from(ranged),
|
|
contentType: "text/plain",
|
|
contentLength: ranged.length,
|
|
};
|
|
}),
|
|
headObject: vi.fn(),
|
|
deleteObject: vi.fn(),
|
|
};
|
|
}
|
|
|
|
describeEmbeddedPostgres("companyArtifactsService", () => {
|
|
let db!: ReturnType<typeof createDb>;
|
|
let tempDb: Awaited<ReturnType<typeof startEmbeddedPostgresTestDatabase>> | null = null;
|
|
|
|
beforeAll(async () => {
|
|
tempDb = await startEmbeddedPostgresTestDatabase("paperclip-company-artifacts-");
|
|
db = createDb(tempDb.connectionString);
|
|
}, 20_000);
|
|
|
|
afterEach(async () => {
|
|
await db.delete(issueWorkProducts);
|
|
await db.delete(issueAttachments);
|
|
await db.delete(assets);
|
|
await db.delete(issueComments);
|
|
await db.delete(issueDocuments);
|
|
await db.delete(documents);
|
|
await db.delete(heartbeatRuns);
|
|
await db.delete(issues);
|
|
await db.delete(projects);
|
|
await db.delete(agents);
|
|
await db.delete(companies);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await tempDb?.cleanup();
|
|
});
|
|
|
|
async function seedArtifacts() {
|
|
const companyId = "11111111-1111-4111-8111-111111111111";
|
|
const otherCompanyId = "22222222-2222-4222-8222-222222222222";
|
|
const agentId = "33333333-3333-4333-8333-333333333333";
|
|
const otherAgentId = "44444444-4444-4444-8444-444444444444";
|
|
const projectId = "55555555-5555-4555-8555-555555555555";
|
|
const issueId = "66666666-6666-4666-8666-666666666666";
|
|
const secondIssueId = "77777777-7777-4777-8777-777777777777";
|
|
const otherIssueId = "88888888-8888-4888-8888-888888888888";
|
|
const runId = "99999999-9999-4999-8999-999999999999";
|
|
const otherRunId = "19191919-1919-4191-8191-191919191919";
|
|
const directAttachmentId = "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa";
|
|
const workProductAttachmentId = "bbbbbbbb-bbbb-4bbb-8bbb-bbbbbbbbbbbb";
|
|
|
|
await db.insert(companies).values([
|
|
{ id: companyId, name: "Paperclip", issuePrefix: "PAP", requireBoardApprovalForNewAgents: false },
|
|
{ id: otherCompanyId, name: "OtherCo", issuePrefix: "OTH", requireBoardApprovalForNewAgents: false },
|
|
]);
|
|
await db.insert(agents).values([
|
|
{ id: agentId, companyId, name: "Coder", role: "engineer" },
|
|
{ id: otherAgentId, companyId: otherCompanyId, name: "Other", role: "engineer" },
|
|
]);
|
|
await db.insert(projects).values({ id: projectId, companyId, name: "Artifacts", status: "in_progress" });
|
|
await db.insert(issues).values([
|
|
{
|
|
id: issueId,
|
|
companyId,
|
|
projectId,
|
|
identifier: "PAP-1",
|
|
title: "Make the reel",
|
|
status: "done",
|
|
priority: "medium",
|
|
},
|
|
{
|
|
id: secondIssueId,
|
|
companyId,
|
|
identifier: "PAP-2",
|
|
title: "Write the plan",
|
|
status: "done",
|
|
priority: "medium",
|
|
},
|
|
{
|
|
id: otherIssueId,
|
|
companyId: otherCompanyId,
|
|
identifier: "OTH-1",
|
|
title: "Other output",
|
|
status: "done",
|
|
priority: "medium",
|
|
},
|
|
]);
|
|
await db.insert(heartbeatRuns).values([
|
|
{
|
|
id: runId,
|
|
companyId,
|
|
agentId,
|
|
status: "completed",
|
|
},
|
|
{
|
|
id: otherRunId,
|
|
companyId: otherCompanyId,
|
|
agentId: otherAgentId,
|
|
status: "completed",
|
|
},
|
|
]);
|
|
await db.insert(documents).values([
|
|
{
|
|
id: "cccccccc-cccc-4ccc-8ccc-cccccccccccc",
|
|
companyId,
|
|
title: "Review Notes",
|
|
latestBody: "# Review\n\nAgent-created review document with useful details.",
|
|
createdByAgentId: agentId,
|
|
updatedAt: new Date("2026-01-04T00:00:00.000Z"),
|
|
},
|
|
{
|
|
id: "dddddddd-dddd-4ddd-8ddd-dddddddddddd",
|
|
companyId,
|
|
title: "Continuation Summary",
|
|
latestBody: "System handoff",
|
|
createdByAgentId: agentId,
|
|
updatedAt: new Date("2026-01-05T00:00:00.000Z"),
|
|
},
|
|
{
|
|
id: "eeeeeeee-eeee-4eee-8eee-eeeeeeeeeeee",
|
|
companyId,
|
|
title: "User Upload Notes",
|
|
latestBody: "User-authored context",
|
|
createdByUserId: "user-1",
|
|
updatedAt: new Date("2026-01-06T00:00:00.000Z"),
|
|
},
|
|
{
|
|
id: "ffffffff-ffff-4fff-8fff-ffffffffffff",
|
|
companyId: otherCompanyId,
|
|
title: "Other Company Plan",
|
|
latestBody: "Must not cross tenants",
|
|
createdByAgentId: otherAgentId,
|
|
updatedAt: new Date("2026-01-07T00:00:00.000Z"),
|
|
},
|
|
]);
|
|
await db.insert(issueDocuments).values([
|
|
{
|
|
companyId,
|
|
issueId: secondIssueId,
|
|
documentId: "cccccccc-cccc-4ccc-8ccc-cccccccccccc",
|
|
key: "review",
|
|
},
|
|
{
|
|
companyId,
|
|
issueId,
|
|
documentId: "dddddddd-dddd-4ddd-8ddd-dddddddddddd",
|
|
key: ISSUE_CONTINUATION_SUMMARY_DOCUMENT_KEY,
|
|
},
|
|
{
|
|
companyId,
|
|
issueId,
|
|
documentId: "eeeeeeee-eeee-4eee-8eee-eeeeeeeeeeee",
|
|
key: "user-notes",
|
|
},
|
|
{
|
|
companyId: otherCompanyId,
|
|
issueId: otherIssueId,
|
|
documentId: "ffffffff-ffff-4fff-8fff-ffffffffffff",
|
|
key: "plan",
|
|
},
|
|
]);
|
|
await db.insert(issueComments).values({
|
|
id: "12121212-1212-4121-8121-121212121212",
|
|
companyId,
|
|
issueId,
|
|
authorType: "agent",
|
|
authorAgentId: agentId,
|
|
body: "comment with screenshot",
|
|
});
|
|
await db.insert(assets).values([
|
|
{
|
|
id: "13131313-1313-4131-8131-131313131313",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "direct-video.mp4",
|
|
contentType: "video/mp4",
|
|
byteSize: 100,
|
|
sha256: "sha256-direct-video",
|
|
originalFilename: "direct-video.mp4",
|
|
createdByAgentId: agentId,
|
|
},
|
|
{
|
|
id: "14141414-1414-4141-8141-141414141414",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "primary-cut.mp4",
|
|
contentType: "video/mp4",
|
|
byteSize: 200,
|
|
sha256: "sha256-primary-cut",
|
|
originalFilename: "primary-cut.mp4",
|
|
createdByAgentId: agentId,
|
|
},
|
|
{
|
|
id: "15151515-1515-4151-8151-151515151515",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "operator-screenshot.png",
|
|
contentType: "image/png",
|
|
byteSize: 300,
|
|
sha256: "sha256-user",
|
|
originalFilename: "operator-screenshot.png",
|
|
createdByUserId: "user-1",
|
|
},
|
|
{
|
|
id: "16161616-1616-4161-8161-161616161616",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "comment-screenshot.png",
|
|
contentType: "image/png",
|
|
byteSize: 400,
|
|
sha256: "sha256-comment",
|
|
originalFilename: "comment-screenshot.png",
|
|
createdByAgentId: agentId,
|
|
},
|
|
{
|
|
id: "17171717-1717-4171-8171-171717171717",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "notes.txt",
|
|
contentType: "text/plain",
|
|
byteSize: 64,
|
|
sha256: "sha256-notes",
|
|
originalFilename: "notes.txt",
|
|
createdByAgentId: agentId,
|
|
},
|
|
]);
|
|
await db.insert(issueAttachments).values([
|
|
{
|
|
id: directAttachmentId,
|
|
companyId,
|
|
issueId,
|
|
assetId: "13131313-1313-4131-8131-131313131313",
|
|
updatedAt: new Date("2026-01-03T00:00:00.000Z"),
|
|
},
|
|
{
|
|
id: workProductAttachmentId,
|
|
companyId,
|
|
issueId,
|
|
assetId: "14141414-1414-4141-8141-141414141414",
|
|
updatedAt: new Date("2026-01-02T00:00:00.000Z"),
|
|
},
|
|
{
|
|
companyId,
|
|
issueId,
|
|
assetId: "15151515-1515-4151-8151-151515151515",
|
|
updatedAt: new Date("2026-01-08T00:00:00.000Z"),
|
|
},
|
|
{
|
|
companyId,
|
|
issueId,
|
|
assetId: "16161616-1616-4161-8161-161616161616",
|
|
issueCommentId: "12121212-1212-4121-8121-121212121212",
|
|
updatedAt: new Date("2026-01-09T00:00:00.000Z"),
|
|
},
|
|
{
|
|
companyId,
|
|
issueId,
|
|
assetId: "17171717-1717-4171-8171-171717171717",
|
|
updatedAt: new Date("2026-01-01T00:00:00.000Z"),
|
|
},
|
|
]);
|
|
await db.insert(issueWorkProducts).values({
|
|
id: "18181818-1818-4181-8181-181818181818",
|
|
companyId,
|
|
projectId,
|
|
issueId,
|
|
type: "artifact",
|
|
provider: "paperclip",
|
|
title: "Primary Cut",
|
|
status: "ready_for_review",
|
|
summary: "Main render for review",
|
|
isPrimary: true,
|
|
metadata: {
|
|
attachmentId: workProductAttachmentId,
|
|
contentType: "video/mp4",
|
|
byteSize: 200,
|
|
contentPath: `/api/attachments/${workProductAttachmentId}/content`,
|
|
openPath: `/api/attachments/${workProductAttachmentId}/content`,
|
|
downloadPath: `/api/attachments/${workProductAttachmentId}/content?download=1`,
|
|
originalFilename: "primary-cut.mp4",
|
|
},
|
|
createdByRunId: runId,
|
|
updatedAt: new Date("2026-01-02T12:00:00.000Z"),
|
|
});
|
|
|
|
return { companyId, otherCompanyId, projectId, issueId, secondIssueId, otherIssueId, otherRunId };
|
|
}
|
|
|
|
it("projects agent-created documents, direct attachments, and work products while excluding noisy sources", async () => {
|
|
const { companyId } = await seedArtifacts();
|
|
const storage = createStorageService({ "notes.txt": Buffer.from("Text file preview from an agent output.") });
|
|
const result = await companyArtifactsService(db, storage).list(companyId, { limit: 20 });
|
|
|
|
expect(result.nextCursor).toBeNull();
|
|
expect(result.artifacts.map((artifact) => artifact.title)).toEqual([
|
|
"Review Notes",
|
|
"direct-video.mp4",
|
|
"Primary Cut",
|
|
"notes.txt",
|
|
]);
|
|
expect(result.artifacts.map((artifact) => artifact.source)).toEqual([
|
|
"document",
|
|
"attachment",
|
|
"work_product",
|
|
"attachment",
|
|
]);
|
|
expect(result.artifacts.find((artifact) => artifact.title === "notes.txt")?.previewText)
|
|
.toBe("Text file preview from an agent output.");
|
|
expect(result.artifacts.some((artifact) => artifact.title === "primary-cut.mp4")).toBe(false);
|
|
expect(result.artifacts.some((artifact) => artifact.title === "Continuation Summary")).toBe(false);
|
|
expect(result.artifacts.some((artifact) => artifact.title === "operator-screenshot.png")).toBe(false);
|
|
expect(result.artifacts.some((artifact) => artifact.title === "comment-screenshot.png")).toBe(false);
|
|
expect(result.artifacts.some((artifact) => artifact.issue.identifier === "OTH-1")).toBe(false);
|
|
});
|
|
|
|
it("supports project, kind, search, and cursor filters", async () => {
|
|
const { companyId, projectId } = await seedArtifacts();
|
|
const storage = createStorageService({ "notes.txt": Buffer.from("Searchable notes preview") });
|
|
|
|
const projectVideos = await companyArtifactsService(db, storage).list(companyId, {
|
|
projectId,
|
|
kind: "video",
|
|
limit: 10,
|
|
});
|
|
expect(projectVideos.artifacts.map((artifact) => artifact.title)).toEqual(["direct-video.mp4", "Primary Cut"]);
|
|
|
|
const search = await companyArtifactsService(db, storage).list(companyId, {
|
|
q: "review document",
|
|
limit: 10,
|
|
});
|
|
expect(search.artifacts.map((artifact) => artifact.title)).toEqual(["Review Notes"]);
|
|
|
|
const firstPage = await companyArtifactsService(db, storage).list(companyId, { limit: 2 });
|
|
expect(firstPage.artifacts.map((artifact) => artifact.title)).toEqual(["Review Notes", "direct-video.mp4"]);
|
|
expect(firstPage.nextCursor).toEqual(expect.any(String));
|
|
|
|
const secondPage = await companyArtifactsService(db, storage).list(companyId, {
|
|
limit: 10,
|
|
cursor: firstPage.nextCursor ?? undefined,
|
|
});
|
|
expect(secondPage.artifacts.map((artifact) => artifact.title)).toEqual(["Primary Cut", "notes.txt"]);
|
|
|
|
const pageAfterPrimaryWorkProduct = await companyArtifactsService(db, storage).list(companyId, { limit: 3 });
|
|
expect(pageAfterPrimaryWorkProduct.artifacts.map((artifact) => artifact.title)).toEqual([
|
|
"Review Notes",
|
|
"direct-video.mp4",
|
|
"Primary Cut",
|
|
]);
|
|
|
|
const afterPrimaryCursor = await companyArtifactsService(db, storage).list(companyId, {
|
|
limit: 10,
|
|
cursor: pageAfterPrimaryWorkProduct.nextCursor ?? undefined,
|
|
});
|
|
expect(afterPrimaryCursor.artifacts.map((artifact) => artifact.title)).toEqual(["notes.txt"]);
|
|
});
|
|
|
|
it("deduplicates work product attachments beyond the work product fetch window", async () => {
|
|
const { companyId, projectId, issueId } = await seedArtifacts();
|
|
const dedupedAttachmentId = "abababab-abab-4bab-8bab-abababababab";
|
|
|
|
await db.insert(assets).values({
|
|
id: "acacacac-acac-4cac-8cac-acacacacacac",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "late-render.mp4",
|
|
contentType: "video/mp4",
|
|
byteSize: 500,
|
|
sha256: "sha256-late-render",
|
|
originalFilename: "late-render.mp4",
|
|
createdByAgentId: "33333333-3333-4333-8333-333333333333",
|
|
});
|
|
await db.insert(issueAttachments).values({
|
|
id: dedupedAttachmentId,
|
|
companyId,
|
|
issueId,
|
|
assetId: "acacacac-acac-4cac-8cac-acacacacacac",
|
|
updatedAt: new Date("2026-01-20T00:00:00.000Z"),
|
|
});
|
|
|
|
const fillerWorkProducts = Array.from({ length: 21 }, (_, index) => ({
|
|
id: `00000000-0000-4000-8000-${String(index + 1).padStart(12, "0")}`,
|
|
companyId,
|
|
projectId,
|
|
issueId,
|
|
type: "artifact" as const,
|
|
provider: "paperclip",
|
|
title: `Filler Video ${index + 1}`,
|
|
status: "ready_for_review" as const,
|
|
summary: "Filler artifact to push the attachment-backed work product past the fetch window",
|
|
metadata: { contentType: "video/mp4" },
|
|
createdByRunId: "99999999-9999-4999-8999-999999999999",
|
|
updatedAt: new Date(`2026-01-10T00:${String(index).padStart(2, "0")}:00.000Z`),
|
|
}));
|
|
await db.insert(issueWorkProducts).values([
|
|
...fillerWorkProducts,
|
|
{
|
|
id: "adadadad-adad-4dad-8dad-adadadadadad",
|
|
companyId,
|
|
projectId,
|
|
issueId,
|
|
type: "artifact",
|
|
provider: "paperclip",
|
|
title: "Late Render",
|
|
status: "ready_for_review",
|
|
summary: "Attachment-backed work product outside the limited fetch window",
|
|
metadata: {
|
|
attachmentId: dedupedAttachmentId,
|
|
contentType: "video/mp4",
|
|
byteSize: 500,
|
|
contentPath: `/api/attachments/${dedupedAttachmentId}/content`,
|
|
openPath: `/api/attachments/${dedupedAttachmentId}/content`,
|
|
downloadPath: `/api/attachments/${dedupedAttachmentId}/content?download=1`,
|
|
originalFilename: "late-render.mp4",
|
|
},
|
|
createdByRunId: "99999999-9999-4999-8999-999999999999",
|
|
updatedAt: new Date("2026-01-01T12:00:00.000Z"),
|
|
},
|
|
]);
|
|
|
|
const result = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
kind: "video",
|
|
limit: 20,
|
|
});
|
|
|
|
expect(result.artifacts.some((artifact) => artifact.title === "late-render.mp4")).toBe(false);
|
|
});
|
|
|
|
it("does not project a foreign agent from a malformed work product run reference", async () => {
|
|
const { companyId, issueId, otherRunId } = await seedArtifacts();
|
|
|
|
await db.insert(issueWorkProducts).values({
|
|
id: "1a1a1a1a-1a1a-4a1a-8a1a-1a1a1a1a1a1a",
|
|
companyId,
|
|
issueId,
|
|
type: "artifact",
|
|
provider: "paperclip",
|
|
title: "Forged Run Artifact",
|
|
status: "ready_for_review",
|
|
summary: "Historically malformed run attribution",
|
|
metadata: { contentType: "text/plain" },
|
|
createdByRunId: otherRunId,
|
|
updatedAt: new Date("2026-01-10T00:00:00.000Z"),
|
|
});
|
|
|
|
const result = await companyArtifactsService(db, createStorageService()).list(companyId, { limit: 20 });
|
|
const forged = result.artifacts.find((artifact) => artifact.title === "Forged Run Artifact");
|
|
|
|
expect(forged).toBeTruthy();
|
|
expect(forged?.createdByAgent).toBeNull();
|
|
expect(result.artifacts.some((artifact) => artifact.createdByAgent?.name === "Other")).toBe(false);
|
|
});
|
|
|
|
it("does not leak foreign issue or project metadata through malformed artifact link rows", async () => {
|
|
const { companyId, otherCompanyId, otherIssueId } = await seedArtifacts();
|
|
const foreignProjectId = "1b1b1b1b-1b1b-4b1b-8b1b-1b1b1b1b1b1b";
|
|
const malformedAttachmentId = "1c1c1c1c-1c1c-4c1c-8c1c-1c1c1c1c1c1c";
|
|
|
|
await db.insert(projects).values({
|
|
id: foreignProjectId,
|
|
companyId: otherCompanyId,
|
|
name: "Foreign Project",
|
|
status: "in_progress",
|
|
});
|
|
await db.update(issues).set({ projectId: foreignProjectId }).where(eq(issues.id, otherIssueId));
|
|
await db.insert(documents).values({
|
|
id: "1d1d1d1d-1d1d-4d1d-8d1d-1d1d1d1d1d1d",
|
|
companyId,
|
|
title: "Forged Link Document",
|
|
latestBody: "This row is company-owned but points at a foreign issue.",
|
|
createdByAgentId: "33333333-3333-4333-8333-333333333333",
|
|
updatedAt: new Date("2026-01-30T00:00:00.000Z"),
|
|
});
|
|
await db.insert(issueDocuments).values({
|
|
companyId,
|
|
issueId: otherIssueId,
|
|
documentId: "1d1d1d1d-1d1d-4d1d-8d1d-1d1d1d1d1d1d",
|
|
key: "forged-link-document",
|
|
});
|
|
await db.insert(assets).values({
|
|
id: "1e1e1e1e-1e1e-4e1e-8e1e-1e1e1e1e1e1e",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "forged-link.txt",
|
|
contentType: "text/plain",
|
|
byteSize: 42,
|
|
sha256: "sha256-forged-link",
|
|
originalFilename: "forged-link.txt",
|
|
createdByAgentId: "33333333-3333-4333-8333-333333333333",
|
|
});
|
|
await db.insert(issueAttachments).values({
|
|
id: malformedAttachmentId,
|
|
companyId,
|
|
issueId: otherIssueId,
|
|
assetId: "1e1e1e1e-1e1e-4e1e-8e1e-1e1e1e1e1e1e",
|
|
updatedAt: new Date("2026-01-29T00:00:00.000Z"),
|
|
});
|
|
await db.insert(issueWorkProducts).values({
|
|
id: "1f1f1f1f-1f1f-4f1f-8f1f-1f1f1f1f1f1f",
|
|
companyId,
|
|
issueId: otherIssueId,
|
|
type: "artifact",
|
|
provider: "paperclip",
|
|
title: "Forged Link Work Product",
|
|
status: "ready_for_review",
|
|
summary: "This row is company-owned but points at a foreign issue.",
|
|
metadata: { contentType: "text/plain" },
|
|
createdByRunId: "99999999-9999-4999-8999-999999999999",
|
|
updatedAt: new Date("2026-01-28T00:00:00.000Z"),
|
|
});
|
|
|
|
const flat = await companyArtifactsService(db, createStorageService()).list(companyId, { limit: 20 });
|
|
expect(flat.artifacts.map((artifact) => artifact.title)).not.toEqual(expect.arrayContaining([
|
|
"Forged Link Document",
|
|
"forged-link.txt",
|
|
"Forged Link Work Product",
|
|
]));
|
|
expect(flat.artifacts.some((artifact) => artifact.issue.identifier === "OTH-1")).toBe(false);
|
|
expect(flat.artifacts.some((artifact) => artifact.issue.title === "Other output")).toBe(false);
|
|
expect(flat.artifacts.some((artifact) => artifact.project?.name === "Foreign Project")).toBe(false);
|
|
|
|
const grouped = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
limit: 20,
|
|
});
|
|
expect(grouped.groups?.some((group) => group.issue.identifier === "OTH-1")).toBe(false);
|
|
expect(grouped.groups?.some((group) => group.issue.title === "Other output")).toBe(false);
|
|
expect(grouped.groups?.some((group) =>
|
|
group.previewArtifacts.some((artifact) => artifact.project?.name === "Foreign Project")
|
|
)).toBe(false);
|
|
|
|
const selectedForeignGroup = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
groupIssueId: otherIssueId,
|
|
limit: 20,
|
|
});
|
|
expect(selectedForeignGroup).toEqual({
|
|
artifacts: [],
|
|
selectedGroup: null,
|
|
nextCursor: null,
|
|
});
|
|
});
|
|
|
|
it("groups artifacts by task after applying media, project, and search filters", async () => {
|
|
const { companyId, projectId, issueId } = await seedArtifacts();
|
|
const storage = createStorageService({ "notes.txt": Buffer.from("Searchable notes preview") });
|
|
|
|
const grouped = await companyArtifactsService(db, storage).list(companyId, {
|
|
groupBy: "task",
|
|
limit: 10,
|
|
});
|
|
expect(grouped.artifacts).toEqual([]);
|
|
expect(grouped.nextCursor).toBeNull();
|
|
expect(grouped.groups?.map((group) => ({
|
|
issue: group.issue.identifier,
|
|
count: group.count,
|
|
mediaKinds: group.mediaKinds,
|
|
href: group.href,
|
|
}))).toEqual([
|
|
{
|
|
issue: "PAP-2",
|
|
count: 1,
|
|
mediaKinds: ["document"],
|
|
href: "/PAP/artifacts?groupBy=task&groupIssueId=77777777-7777-4777-8777-777777777777",
|
|
},
|
|
{
|
|
issue: "PAP-1",
|
|
count: 3,
|
|
mediaKinds: ["video", "text"],
|
|
href: "/PAP/artifacts?groupBy=task&groupIssueId=66666666-6666-4666-8666-666666666666",
|
|
},
|
|
]);
|
|
expect(grouped.groups?.find((group) => group.issue.id === issueId)?.previewArtifacts.map((artifact) => artifact.title))
|
|
.toEqual(["direct-video.mp4", "Primary Cut", "notes.txt"]);
|
|
|
|
const projectVideos = await companyArtifactsService(db, storage).list(companyId, {
|
|
groupBy: "task",
|
|
projectId,
|
|
kind: "video",
|
|
limit: 10,
|
|
});
|
|
expect(projectVideos.groups?.map((group) => ({
|
|
issue: group.issue.identifier,
|
|
count: group.count,
|
|
href: group.href,
|
|
}))).toEqual([
|
|
{
|
|
issue: "PAP-1",
|
|
count: 2,
|
|
href:
|
|
"/PAP/artifacts?groupBy=task&groupIssueId=66666666-6666-4666-8666-666666666666&kind=video&projectId=55555555-5555-4555-8555-555555555555",
|
|
},
|
|
]);
|
|
|
|
const search = await companyArtifactsService(db, storage).list(companyId, {
|
|
groupBy: "task",
|
|
q: "review document",
|
|
limit: 10,
|
|
});
|
|
expect(search.groups?.map((group) => ({ issue: group.issue.identifier, count: group.count }))).toEqual([
|
|
{ issue: "PAP-2", count: 1 },
|
|
]);
|
|
});
|
|
|
|
it("paginates grouped task lists with the active group cursor", async () => {
|
|
const { companyId } = await seedArtifacts();
|
|
|
|
const firstPage = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
limit: 1,
|
|
});
|
|
expect(firstPage.groups?.map((group) => group.issue.identifier)).toEqual(["PAP-2"]);
|
|
expect(firstPage.nextCursor).toEqual(expect.any(String));
|
|
|
|
const secondPage = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
limit: 10,
|
|
cursor: firstPage.nextCursor ?? undefined,
|
|
});
|
|
expect(secondPage.groups?.map((group) => group.issue.identifier)).toEqual(["PAP-1"]);
|
|
expect(secondPage.nextCursor).toBeNull();
|
|
});
|
|
|
|
it("groups parent-task artifacts under the topmost same-company ancestor", async () => {
|
|
const { companyId, issueId, secondIssueId } = await seedArtifacts();
|
|
const grandchildIssueId = "21212121-2121-4212-8121-212121212121";
|
|
const grandchildAttachmentId = "23232323-2323-4232-8232-232323232323";
|
|
|
|
await db.update(issues).set({ parentId: issueId }).where(eq(issues.id, secondIssueId));
|
|
await db.insert(issues).values({
|
|
id: grandchildIssueId,
|
|
companyId,
|
|
parentId: secondIssueId,
|
|
identifier: "PAP-3",
|
|
title: "Grandchild render",
|
|
status: "done",
|
|
priority: "medium",
|
|
});
|
|
await db.insert(assets).values({
|
|
id: "24242424-2424-4242-8242-242424242424",
|
|
companyId,
|
|
provider: "local_disk",
|
|
objectKey: "grandchild.txt",
|
|
contentType: "text/plain",
|
|
byteSize: 48,
|
|
sha256: "sha256-grandchild",
|
|
originalFilename: "grandchild.txt",
|
|
createdByAgentId: "33333333-3333-4333-8333-333333333333",
|
|
});
|
|
await db.insert(issueAttachments).values({
|
|
id: grandchildAttachmentId,
|
|
companyId,
|
|
issueId: grandchildIssueId,
|
|
assetId: "24242424-2424-4242-8242-242424242424",
|
|
updatedAt: new Date("2026-01-05T00:00:00.000Z"),
|
|
});
|
|
|
|
const grouped = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "parent_task",
|
|
limit: 10,
|
|
});
|
|
|
|
expect(grouped.artifacts).toEqual([]);
|
|
expect(grouped.groups?.map((group) => ({
|
|
issue: group.issue.identifier,
|
|
count: group.count,
|
|
previewTitles: group.previewArtifacts.map((artifact) => artifact.title),
|
|
}))).toEqual([
|
|
{
|
|
issue: "PAP-1",
|
|
count: 5,
|
|
previewTitles: ["grandchild.txt", "Review Notes", "direct-video.mp4"],
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("returns selected group artifact pages and metadata without leaking foreign group issues", async () => {
|
|
const { companyId, issueId, otherIssueId } = await seedArtifacts();
|
|
|
|
const selected = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
groupIssueId: issueId,
|
|
limit: 2,
|
|
});
|
|
expect(selected.groups).toBeUndefined();
|
|
expect(selected.selectedGroup).toMatchObject({
|
|
id: `task:${issueId}`,
|
|
groupBy: "task",
|
|
issue: { identifier: "PAP-1" },
|
|
count: 3,
|
|
});
|
|
expect(selected.artifacts.map((artifact) => artifact.title)).toEqual(["direct-video.mp4", "Primary Cut"]);
|
|
expect(selected.nextCursor).toEqual(expect.any(String));
|
|
|
|
const selectedSecondPage = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
groupIssueId: issueId,
|
|
limit: 10,
|
|
cursor: selected.nextCursor ?? undefined,
|
|
});
|
|
expect(selectedSecondPage.artifacts.map((artifact) => artifact.title)).toEqual(["notes.txt"]);
|
|
|
|
const selectedEmptyByFilter = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
groupIssueId: issueId,
|
|
q: "does-not-match-this-stack",
|
|
limit: 10,
|
|
});
|
|
expect(selectedEmptyByFilter.selectedGroup).toMatchObject({
|
|
id: `task:${issueId}`,
|
|
count: 0,
|
|
});
|
|
expect(selectedEmptyByFilter.artifacts).toEqual([]);
|
|
|
|
const foreignSelected = await companyArtifactsService(db, createStorageService()).list(companyId, {
|
|
groupBy: "task",
|
|
groupIssueId: otherIssueId,
|
|
limit: 10,
|
|
});
|
|
expect(foreignSelected).toEqual({
|
|
artifacts: [],
|
|
selectedGroup: null,
|
|
nextCursor: null,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("company artifacts route authorization", () => {
|
|
it("rejects agent access across company boundaries before reading artifacts", async () => {
|
|
const app = express();
|
|
app.use((_req, _res, next) => {
|
|
(_req as any).actor = {
|
|
type: "agent",
|
|
agentId: "agent-1",
|
|
companyId: "company-allowed",
|
|
};
|
|
next();
|
|
});
|
|
app.use("/api/companies", companyRoutes({} as any, createStorageService()));
|
|
app.use(errorHandler);
|
|
|
|
const res = await request(app).get("/api/companies/company-denied/artifacts");
|
|
|
|
expect(res.status).toBe(403);
|
|
expect(res.body.error).toBe("Agent key cannot access another company");
|
|
});
|
|
});
|