This PR moves the entire project to Typescript. Due to the ~1000 ignores this will lead to a messy codebase for a while, but the churn is worth it – all of those ignore comments are places that were never type-safe previously. closes #1282
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module 'fetc... Remove this comment to see the full error message
|
|
import TestServer from "fetch-test-server";
|
|
import webService from "@server/services/web";
|
|
import { flushdb, seed } from "@server/test/support";
|
|
|
|
const app = webService();
|
|
const server = new TestServer(app.callback());
|
|
beforeEach(() => flushdb());
|
|
afterAll(() => server.close());
|
|
describe("#team.update", () => {
|
|
it("should update team details", async () => {
|
|
const { admin } = await seed();
|
|
const res = await server.post("/api/team.update", {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
name: "New name",
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.name).toEqual("New name");
|
|
});
|
|
|
|
it("should only allow member,viewer or admin as default role", async () => {
|
|
const { admin } = await seed();
|
|
const res = await server.post("/api/team.update", {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
defaultUserRole: "New name",
|
|
},
|
|
});
|
|
expect(res.status).toEqual(400);
|
|
const successRes = await server.post("/api/team.update", {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
defaultUserRole: "viewer",
|
|
},
|
|
});
|
|
const body = await successRes.json();
|
|
expect(successRes.status).toEqual(200);
|
|
expect(body.data.defaultUserRole).toBe("viewer");
|
|
});
|
|
|
|
it("should allow identical team details", async () => {
|
|
const { admin, team } = await seed();
|
|
const res = await server.post("/api/team.update", {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
name: team.name,
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.name).toEqual(team.name);
|
|
});
|
|
|
|
it("should require admin", async () => {
|
|
const { user } = await seed();
|
|
const res = await server.post("/api/team.update", {
|
|
body: {
|
|
token: user.getJwtToken(),
|
|
name: "New name",
|
|
},
|
|
});
|
|
expect(res.status).toEqual(403);
|
|
});
|
|
|
|
it("should require authentication", async () => {
|
|
await seed();
|
|
const res = await server.post("/api/team.update");
|
|
expect(res.status).toEqual(401);
|
|
});
|
|
});
|