mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
091346dfe8
* wip * Remove obsolete snapshots * simplify * chore(test): Convert mocks to TypeScript and tighten fetch mock types Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * Remove unneccessary patches * Migrate to msw instead of custom fetch mock * Address PR review comments - Split chained vi.useFakeTimers().setSystemTime() into separate calls. - Switch test setup to dynamic imports so EventEmitter.defaultMaxListeners assignment runs before module init (static imports were hoisted above it). - Drop redundant NODE_ENV guard in monkeyPatchSequelizeErrorsForJest; its sole caller already gates on env.isTest. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
611 lines
17 KiB
TypeScript
611 lines
17 KiB
TypeScript
import { randomUUID } from "node:crypto";
|
|
import { AttachmentPreset, CollectionPermission } from "@shared/types";
|
|
import { UserMembership } from "@server/models";
|
|
import Attachment from "@server/models/Attachment";
|
|
import {
|
|
buildUser,
|
|
buildAdmin,
|
|
buildCollection,
|
|
buildAttachment,
|
|
buildDocument,
|
|
buildViewer,
|
|
} from "@server/test/factories";
|
|
import { getTestServer } from "@server/test/support";
|
|
|
|
vi.mock("@server/storage/files");
|
|
|
|
const server = getTestServer();
|
|
|
|
describe("#attachments.list", () => {
|
|
it("should return attachments for user", async () => {
|
|
const user = await buildUser();
|
|
const document = await buildDocument({
|
|
userId: user.id,
|
|
teamId: user.teamId,
|
|
});
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
documentId: document.id,
|
|
});
|
|
const attachment2 = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
|
|
const res = await server.post("/api/attachments.list", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.pagination.total).toEqual(2);
|
|
expect(body.data.length).toEqual(2);
|
|
expect(body.data[0].id).toEqual(attachment.id);
|
|
expect(body.data[1].id).toEqual(attachment2.id);
|
|
});
|
|
|
|
it("should allow filtering by userId when user is an admin", async () => {
|
|
const admin = await buildAdmin();
|
|
const user = await buildUser({ teamId: admin.teamId });
|
|
// Attachments for user
|
|
const attachment1 = await buildAttachment({
|
|
teamId: admin.teamId,
|
|
userId: user.id,
|
|
});
|
|
// Attachment for admin
|
|
await buildAttachment({
|
|
teamId: admin.teamId,
|
|
userId: admin.id,
|
|
});
|
|
|
|
const res = await server.post("/api/attachments.list", {
|
|
body: {
|
|
userId: user.id,
|
|
token: admin.getJwtToken(),
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.length).toEqual(1);
|
|
expect(body.data[0].id).toEqual(attachment1.id);
|
|
});
|
|
|
|
it("should filter by documentId", async () => {
|
|
const user = await buildUser();
|
|
const document = await buildDocument({
|
|
userId: user.id,
|
|
teamId: user.teamId,
|
|
});
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
documentId: document.id,
|
|
});
|
|
await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
|
|
const res = await server.post("/api/attachments.list", {
|
|
body: {
|
|
documentId: document.id,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.length).toEqual(1);
|
|
expect(body.data[0].id).toEqual(attachment.id);
|
|
});
|
|
|
|
it("should not return attachments created by other users", async () => {
|
|
const user = await buildUser();
|
|
const anotherUser = await buildUser({
|
|
teamId: user.teamId,
|
|
});
|
|
await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: anotherUser.id,
|
|
});
|
|
|
|
const res = await server.post("/api/attachments.list", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.length).toEqual(0);
|
|
});
|
|
|
|
it("should require authentication", async () => {
|
|
const res = await server.post("/api/attachments.list");
|
|
expect(res.status).toEqual(401);
|
|
});
|
|
});
|
|
|
|
describe("#attachments.create", () => {
|
|
it("should require authentication", async () => {
|
|
const res = await server.post("/api/attachments.create");
|
|
expect(res.status).toEqual(401);
|
|
});
|
|
|
|
describe("member", () => {
|
|
it("should allow upload using avatar preset", async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1000,
|
|
preset: AttachmentPreset.Avatar,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
|
|
const body = await res.json();
|
|
const attachment = await Attachment.findByPk(body.data.attachment.id, {
|
|
rejectOnEmpty: true,
|
|
});
|
|
expect(attachment.expiresAt).toBeNull();
|
|
});
|
|
|
|
it("should allow attachment creation for documents", async () => {
|
|
const user = await buildUser();
|
|
const document = await buildDocument({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1000,
|
|
documentId: document.id,
|
|
preset: AttachmentPreset.DocumentAttachment,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
});
|
|
|
|
it("should create expiring attachment using import preset", async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.zip",
|
|
contentType: "application/zip",
|
|
size: 10000,
|
|
preset: AttachmentPreset.WorkspaceImport,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
|
|
const body = await res.json();
|
|
const attachment = await Attachment.findByPk(body.data.attachment.id, {
|
|
rejectOnEmpty: true,
|
|
});
|
|
expect(attachment.expiresAt).toBeTruthy();
|
|
});
|
|
|
|
it("should not allow attachment creation for other documents", async () => {
|
|
const user = await buildUser();
|
|
const document = await buildDocument();
|
|
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1000,
|
|
documentId: document.id,
|
|
preset: AttachmentPreset.DocumentAttachment,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
|
|
it("should not allow file upload for avatar preset", async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.pdf",
|
|
contentType: "application/pdf",
|
|
size: 1000,
|
|
preset: AttachmentPreset.Avatar,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(400);
|
|
});
|
|
|
|
it("should reject negative size", async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: -1,
|
|
preset: AttachmentPreset.Emoji,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(400);
|
|
});
|
|
|
|
it("should reject non-integer size", async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1.5,
|
|
preset: AttachmentPreset.Emoji,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(400);
|
|
});
|
|
});
|
|
|
|
describe("viewer", () => {
|
|
it("should allow attachment creation for documents in collections with edit access", async () => {
|
|
const user = await buildViewer();
|
|
const collection = await buildCollection({
|
|
teamId: user.teamId,
|
|
permission: null,
|
|
});
|
|
const document = await buildDocument({
|
|
teamId: user.teamId,
|
|
collectionId: collection.id,
|
|
});
|
|
|
|
await UserMembership.create({
|
|
createdById: user.id,
|
|
collectionId: collection.id,
|
|
userId: user.id,
|
|
permission: CollectionPermission.ReadWrite,
|
|
});
|
|
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1000,
|
|
documentId: document.id,
|
|
preset: AttachmentPreset.DocumentAttachment,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
});
|
|
|
|
it("should not allow attachment creation for documents", async () => {
|
|
const user = await buildViewer();
|
|
const document = await buildDocument({ teamId: user.teamId });
|
|
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1000,
|
|
documentId: document.id,
|
|
preset: AttachmentPreset.DocumentAttachment,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
|
|
it("should allow upload using avatar preset", async () => {
|
|
const user = await buildViewer();
|
|
const res = await server.post("/api/attachments.create", {
|
|
body: {
|
|
name: "test.png",
|
|
contentType: "image/png",
|
|
size: 1000,
|
|
preset: AttachmentPreset.Avatar,
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("#attachments.delete", () => {
|
|
it("should require authentication", async () => {
|
|
const res = await server.post("/api/attachments.delete");
|
|
expect(res.status).toEqual(401);
|
|
});
|
|
|
|
it("should allow deleting an attachment belonging to a document user has access to", async () => {
|
|
const user = await buildUser();
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
const res = await server.post("/api/attachments.delete", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
expect(
|
|
await Attachment.count({
|
|
where: {
|
|
teamId: user.teamId,
|
|
},
|
|
})
|
|
).toEqual(0);
|
|
});
|
|
|
|
it("should allow deleting an attachment without a document created by user", async () => {
|
|
const user = await buildUser();
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
attachment.documentId = null;
|
|
await attachment.save();
|
|
const res = await server.post("/api/attachments.delete", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
expect(
|
|
await Attachment.count({
|
|
where: {
|
|
teamId: user.teamId,
|
|
},
|
|
})
|
|
).toEqual(0);
|
|
});
|
|
|
|
it("should allow deleting an attachment without a document if admin", async () => {
|
|
const user = await buildAdmin();
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
});
|
|
attachment.documentId = null;
|
|
await attachment.save();
|
|
const res = await server.post("/api/attachments.delete", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
expect(
|
|
await Attachment.count({
|
|
where: {
|
|
teamId: user.teamId,
|
|
},
|
|
})
|
|
).toEqual(0);
|
|
});
|
|
|
|
it("should not allow deleting an attachment in another team", async () => {
|
|
const user = await buildAdmin();
|
|
const attachment = await buildAttachment();
|
|
attachment.documentId = null;
|
|
await attachment.save();
|
|
const res = await server.post("/api/attachments.delete", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
|
|
it("should not allow deleting an attachment without a document", async () => {
|
|
const user = await buildUser();
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
});
|
|
attachment.documentId = null;
|
|
await attachment.save();
|
|
const res = await server.post("/api/attachments.delete", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
|
|
it("should not allow deleting an attachment belonging to a document user does not have access to", async () => {
|
|
const user = await buildUser();
|
|
const collection = await buildCollection({
|
|
permission: null,
|
|
});
|
|
const document = await buildDocument({
|
|
teamId: collection.teamId,
|
|
userId: collection.createdById,
|
|
collectionId: collection.id,
|
|
});
|
|
const attachment = await buildAttachment({
|
|
teamId: document.teamId,
|
|
userId: document.createdById,
|
|
documentId: document.id,
|
|
acl: "private",
|
|
});
|
|
const res = await server.post("/api/attachments.delete", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
});
|
|
|
|
describe("#attachments.redirect", () => {
|
|
it("should return a redirect for an attachment belonging to a document user has access to", async () => {
|
|
const user = await buildUser();
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
redirect: "manual",
|
|
});
|
|
expect(res.status).toEqual(302);
|
|
});
|
|
|
|
it("should return a redirect for the attachment if id supplied via query params", async () => {
|
|
const user = await buildUser();
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
const res = await server.post(
|
|
`/api/attachments.redirect?id=${attachment.id}`,
|
|
{
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
},
|
|
redirect: "manual",
|
|
}
|
|
);
|
|
expect(res.status).toEqual(302);
|
|
});
|
|
|
|
it("should return a redirect for an attachment belonging to a trashed document user has access to", async () => {
|
|
const user = await buildUser();
|
|
const collection = await buildCollection({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
const document = await buildDocument({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
collectionId: collection.id,
|
|
deletedAt: new Date(),
|
|
});
|
|
const attachment = await buildAttachment({
|
|
documentId: document.id,
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
});
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
redirect: "manual",
|
|
});
|
|
expect(res.status).toEqual(302);
|
|
});
|
|
|
|
it("should always return a redirect for a public attachment", async () => {
|
|
const user = await buildUser();
|
|
const collection = await buildCollection({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
permission: null,
|
|
});
|
|
const document = await buildDocument({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
collectionId: collection.id,
|
|
});
|
|
const attachment = await buildAttachment({
|
|
teamId: user.teamId,
|
|
userId: user.id,
|
|
documentId: document.id,
|
|
});
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
redirect: "manual",
|
|
});
|
|
expect(res.status).toEqual(302);
|
|
});
|
|
|
|
it("should return a redirect for an attachment in a public bucket without authentication", async () => {
|
|
const attachment = await buildAttachment({
|
|
key: `public/${randomUUID()}/test.png`,
|
|
acl: "public-read",
|
|
});
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
id: attachment.id,
|
|
},
|
|
redirect: "manual",
|
|
});
|
|
expect(res.status).toEqual(302);
|
|
expect(res.headers.get("location")).toContain(attachment.canonicalUrl);
|
|
});
|
|
|
|
it("should return a redirect for a public-read attachment without authentication (not in public bucket)", async () => {
|
|
const attachment = await buildAttachment({
|
|
acl: "public-read",
|
|
});
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
id: attachment.id,
|
|
},
|
|
redirect: "manual",
|
|
});
|
|
expect(res.status).toEqual(302);
|
|
expect(res.headers.get("location")).toContain(await attachment.signedUrl);
|
|
});
|
|
|
|
it("should not return a redirect for a private attachment belonging to a document user does not have access to", async () => {
|
|
const user = await buildUser();
|
|
const collection = await buildCollection({
|
|
permission: null,
|
|
});
|
|
const document = await buildDocument({
|
|
teamId: collection.teamId,
|
|
userId: collection.createdById,
|
|
collectionId: collection.id,
|
|
});
|
|
const attachment = await buildAttachment({
|
|
teamId: document.teamId,
|
|
userId: document.createdById,
|
|
documentId: document.id,
|
|
acl: "private",
|
|
});
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
id: attachment.id,
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
|
|
it("should fail in absence of id", async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post("/api/attachments.redirect", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
expect(res.status).toEqual(400);
|
|
expect(body.message).toEqual("id is required");
|
|
});
|
|
});
|