chore: Improve perf of server tests (#5785)

This commit is contained in:
Tom Moor
2023-09-06 07:14:49 -04:00
committed by GitHub
parent a724a21c21
commit 3eb947e9a5
69 changed files with 2045 additions and 1551 deletions

View File

@@ -1,8 +1,13 @@
import { IntegrationService } from "@shared/types";
import env from "@server/env";
import { IntegrationAuthentication, SearchQuery } from "@server/models";
import { buildDocument, buildIntegration } from "@server/test/factories";
import { seed, getTestServer } from "@server/test/support";
import {
buildDocument,
buildIntegration,
buildTeam,
buildUser,
} from "@server/test/factories";
import { getTestServer } from "@server/test/support";
import * as Slack from "../slack";
jest.mock("../slack", () => ({
@@ -13,7 +18,12 @@ const server = getTestServer();
describe("#hooks.unfurl", () => {
it("should return documents", async () => {
const { user, document } = await seed();
const user = await buildUser();
const document = await buildDocument({
userId: user.id,
teamId: user.teamId,
});
await IntegrationAuthentication.create({
service: IntegrationService.Slack,
userId: user.id,
@@ -46,7 +56,8 @@ describe("#hooks.unfurl", () => {
describe("#hooks.slack", () => {
it("should return no matches", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const res = await server.post("/api/hooks.slack", {
body: {
token: env.SLACK_VERIFICATION_TOKEN,
@@ -61,7 +72,8 @@ describe("#hooks.slack", () => {
});
it("should return search results with summary if query is in title", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const document = await buildDocument({
title: "This title contains a search term",
userId: user.id,
@@ -83,7 +95,8 @@ describe("#hooks.slack", () => {
});
it("should return search results if query is regex-like", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
await buildDocument({
title: "This title contains a search term",
userId: user.id,
@@ -103,7 +116,8 @@ describe("#hooks.slack", () => {
});
it("should return search results with snippet if query is in text", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const document = await buildDocument({
text: "This title contains a search term",
userId: user.id,
@@ -127,7 +141,8 @@ describe("#hooks.slack", () => {
});
it("should save search term, hits and source", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
await server.post("/api/hooks.slack", {
body: {
token: env.SLACK_VERIFICATION_TOKEN,
@@ -143,6 +158,7 @@ describe("#hooks.slack", () => {
setTimeout(async () => {
const searchQuery = await SearchQuery.findAll({
where: {
teamId: team.id,
query: "contains",
},
});
@@ -150,12 +166,13 @@ describe("#hooks.slack", () => {
expect(searchQuery[0].results).toBe(0);
expect(searchQuery[0].source).toBe("slack");
resolve(undefined);
}, 100);
}, 250);
});
});
it("should respond with help content for help keyword", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const res = await server.post("/api/hooks.slack", {
body: {
token: env.SLACK_VERIFICATION_TOKEN,
@@ -170,7 +187,8 @@ describe("#hooks.slack", () => {
});
it("should respond with help content for no keyword", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const res = await server.post("/api/hooks.slack", {
body: {
token: env.SLACK_VERIFICATION_TOKEN,
@@ -185,7 +203,8 @@ describe("#hooks.slack", () => {
});
it("should return search results with snippet for unknown user", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
// unpublished document will not be returned
await buildDocument({
text: "This title contains a search term",
@@ -217,13 +236,9 @@ describe("#hooks.slack", () => {
});
it("should return search results with snippet for user through integration mapping", async () => {
const { user } = await seed();
const serviceTeamId = "slack_team_id";
await buildIntegration({
const user = await buildUser();
const integration = await buildIntegration({
teamId: user.teamId,
settings: {
serviceTeamId,
},
});
const document = await buildDocument({
text: "This title contains a search term",
@@ -234,7 +249,7 @@ describe("#hooks.slack", () => {
body: {
token: env.SLACK_VERIFICATION_TOKEN,
user_id: "unknown-slack-user-id",
team_id: serviceTeamId,
team_id: (integration.settings as any)?.serviceTeamId,
text: "contains",
},
});
@@ -249,7 +264,8 @@ describe("#hooks.slack", () => {
});
it("should error if incorrect verification token", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const res = await server.post("/api/hooks.slack", {
body: {
token: "wrong-verification-token",
@@ -264,7 +280,8 @@ describe("#hooks.slack", () => {
describe("#hooks.interactive", () => {
it("should respond with replacement message", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const document = await buildDocument({
title: "This title contains a search term",
userId: user.id,
@@ -294,7 +311,8 @@ describe("#hooks.interactive", () => {
});
it("should respond with replacement message if unknown user", async () => {
const { user, team } = await seed();
const team = await buildTeam();
const user = await buildUser({ teamId: team.id });
const document = await buildDocument({
title: "This title contains a search term",
userId: user.id,
@@ -324,7 +342,7 @@ describe("#hooks.interactive", () => {
});
it("should error if incorrect verification token", async () => {
const { user } = await seed();
const user = await buildUser();
const payload = JSON.stringify({
type: "message_action",
token: "wrong-verification-token",