mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
77cee2806c
* getJWTToken -> getSessionToken Ensure expiry is included in payload * Refactor test harness to avoid direct usage of getSessionToken
121 lines
3.3 KiB
TypeScript
121 lines
3.3 KiB
TypeScript
import { GroupUser } from "@server/models";
|
|
import {
|
|
buildCollection,
|
|
buildDocument,
|
|
buildGroup,
|
|
buildUser,
|
|
} from "@server/test/factories";
|
|
import { getTestServer } from "@server/test/support";
|
|
|
|
const server = getTestServer();
|
|
|
|
describe("groupMemberships.list", () => {
|
|
it("should require authentication", async () => {
|
|
const res = await server.post("/api/groupMemberships.list", {
|
|
body: {},
|
|
});
|
|
expect(res.status).toEqual(401);
|
|
});
|
|
|
|
it("should return the list of docs shared with group", async () => {
|
|
const user = await buildUser();
|
|
const collection = await buildCollection({
|
|
teamId: user.teamId,
|
|
createdById: user.id,
|
|
permission: null,
|
|
});
|
|
const document = await buildDocument({
|
|
collectionId: collection.id,
|
|
createdById: user.id,
|
|
teamId: user.teamId,
|
|
});
|
|
const group = await buildGroup({
|
|
teamId: user.teamId,
|
|
});
|
|
const member = await buildUser({
|
|
teamId: user.teamId,
|
|
});
|
|
await GroupUser.create({
|
|
groupId: group.id,
|
|
userId: member.id,
|
|
createdById: user.id,
|
|
});
|
|
|
|
await server.post("/api/documents.add_group", user, {
|
|
body: {
|
|
id: document.id,
|
|
groupId: group.id,
|
|
},
|
|
});
|
|
|
|
const res = await server.post("/api/groupMemberships.list", member);
|
|
const body = await res.json();
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data).not.toBeFalsy();
|
|
expect(body.data.documents).not.toBeFalsy();
|
|
expect(body.data.documents).toHaveLength(1);
|
|
expect(body.data.groupMemberships).not.toBeFalsy();
|
|
expect(body.data.groupMemberships).toHaveLength(1);
|
|
const sharedDoc = body.data.documents[0];
|
|
expect(sharedDoc.id).toEqual(document.id);
|
|
expect(sharedDoc.id).toEqual(body.data.groupMemberships[0].documentId);
|
|
expect(body.data.groupMemberships[0].groupId).toEqual(group.id);
|
|
expect(body.policies).not.toBeFalsy();
|
|
});
|
|
|
|
it("should return total count in pagination", async () => {
|
|
const user = await buildUser();
|
|
const collection = await buildCollection({
|
|
teamId: user.teamId,
|
|
createdById: user.id,
|
|
permission: null,
|
|
});
|
|
const group = await buildGroup({
|
|
teamId: user.teamId,
|
|
});
|
|
const member = await buildUser({
|
|
teamId: user.teamId,
|
|
});
|
|
await GroupUser.create({
|
|
groupId: group.id,
|
|
userId: member.id,
|
|
createdById: user.id,
|
|
});
|
|
|
|
// Create 3 documents and share them with the group
|
|
const documents = await Promise.all([
|
|
buildDocument({
|
|
collectionId: collection.id,
|
|
createdById: user.id,
|
|
teamId: user.teamId,
|
|
}),
|
|
buildDocument({
|
|
collectionId: collection.id,
|
|
createdById: user.id,
|
|
teamId: user.teamId,
|
|
}),
|
|
buildDocument({
|
|
collectionId: collection.id,
|
|
createdById: user.id,
|
|
teamId: user.teamId,
|
|
}),
|
|
]);
|
|
|
|
for (const document of documents) {
|
|
await server.post("/api/documents.add_group", user, {
|
|
body: {
|
|
id: document.id,
|
|
groupId: group.id,
|
|
},
|
|
});
|
|
}
|
|
|
|
const res = await server.post("/api/groupMemberships.list", member);
|
|
const body = await res.json();
|
|
expect(res.status).toEqual(200);
|
|
expect(body.pagination).not.toBeFalsy();
|
|
expect(body.pagination.total).toEqual(3);
|
|
expect(body.data.groupMemberships).toHaveLength(3);
|
|
});
|
|
});
|