Files
formbricks-formbricks/packages/lib/response/tests/response.test.ts
T

667 lines
23 KiB
TypeScript

import { prisma } from "../../__mocks__/database";
import {
getFilteredMockResponses,
getMockUpdateResponseInput,
mockDisplay,
mockEnvironmentId,
mockMeta,
mockPerson,
mockResponse,
mockResponseData,
mockResponseNote,
mockResponseWithMockPerson,
mockSingleUseId,
mockSurveyId,
mockSurveySummaryOutput,
mockTags,
mockUserId,
} from "./__mocks__/data.mock";
import { Prisma } from "@prisma/client";
import { beforeEach, describe, expect, it } from "vitest";
import { testInputValidation } from "vitestSetup";
import { DatabaseError, ResourceNotFoundError } from "@formbricks/types/errors";
import { TResponse, TResponseFilterCriteria, TResponseInput } from "@formbricks/types/responses";
import { TTag } from "@formbricks/types/tags";
import { selectPerson } from "../../person/service";
import {
mockAttributeClass,
mockOrganizationOutput,
mockSurveyOutput,
} from "../../survey/tests/__mock__/survey.mock";
import {
createResponse,
deleteResponse,
getResponse,
getResponseBySingleUseId,
getResponseCountBySurveyId,
getResponseDownloadUrl,
getResponses,
getResponsesByEnvironmentId,
getResponsesByPersonId,
getSurveySummary,
updateResponse,
} from "../service";
import { buildWhereClause } from "../utils";
import { constantsForTests } from "./constants";
// vitest.mock("../../organization/service", async (methods) => {
// return {
// ...methods,
// getOrganizationByEnvironmentId: vitest.fn(),
// };
// });
const expectedResponseWithoutPerson: TResponse = {
...mockResponse,
person: null,
tags: mockTags.map((tagPrisma: { tag: TTag }) => tagPrisma.tag),
};
const expectedResponseWithPerson: TResponse = {
...mockResponse,
person: mockPerson,
tags: mockTags?.map((tagPrisma: { tag: TTag }) => tagPrisma.tag),
};
const mockResponseInputWithoutUserId: TResponseInput = {
environmentId: mockEnvironmentId,
surveyId: mockSurveyId,
singleUseId: mockSingleUseId,
finished: constantsForTests.boolean,
data: {},
meta: mockMeta,
};
const mockResponseInputWithUserId: TResponseInput = {
...mockResponseInputWithoutUserId,
userId: mockUserId,
};
beforeEach(() => {
// @ts-expect-error
prisma.response.create.mockImplementation(async (args) => {
if (args.data.person && args.data.person.connect) {
return {
...mockResponse,
person: mockPerson,
};
}
return mockResponse;
});
// mocking the person findFirst call as it is used in the transformPrismaPerson function
prisma.person.findFirst.mockResolvedValue(mockPerson);
prisma.responseNote.findMany.mockResolvedValue([mockResponseNote]);
prisma.response.findUnique.mockResolvedValue(mockResponse);
// @ts-expect-error
prisma.response.update.mockImplementation(async (args) => {
if (args.data.finished === true) {
return {
...mockResponse,
finished: true,
data: mockResponseData,
};
}
return {
...mockResponse,
finished: false,
data: mockResponseData,
};
});
prisma.response.findMany.mockResolvedValue([mockResponse]);
prisma.response.delete.mockResolvedValue(mockResponse);
prisma.display.delete.mockResolvedValue({ ...mockDisplay, status: "seen" });
prisma.response.count.mockResolvedValue(1);
prisma.organization.findFirst.mockResolvedValue(mockOrganizationOutput);
prisma.organization.findUnique.mockResolvedValue(mockOrganizationOutput);
prisma.product.findMany.mockResolvedValue([]);
// @ts-expect-error
prisma.response.aggregate.mockResolvedValue({ _count: { id: 1 } });
});
describe("Tests for getResponsesByPersonId", () => {
describe("Happy Path", () => {
it("Returns all responses associated with a given person ID", async () => {
prisma.response.findMany.mockResolvedValue([mockResponseWithMockPerson]);
const responses = await getResponsesByPersonId(mockPerson.id);
expect(responses).toEqual([expectedResponseWithPerson]);
});
it("Returns an empty array when no responses are found for the given person ID", async () => {
prisma.response.findMany.mockResolvedValue([]);
const responses = await getResponsesByPersonId(mockPerson.id);
expect(responses).toEqual([]);
});
});
describe("Sad Path", () => {
testInputValidation(getResponsesByPersonId, "123#", 1);
it("Throws a DatabaseError error if there is a PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.findMany.mockRejectedValue(errToThrow);
await expect(getResponsesByPersonId(mockPerson.id)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for unexpected exceptions", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.findMany.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponsesByPersonId(mockPerson.id)).rejects.toThrow(Error);
});
});
});
describe("Tests for getResponsesBySingleUseId", () => {
describe("Happy Path", () => {
it("Retrieves responses linked to a specific single-use ID", async () => {
const responses = await getResponseBySingleUseId(mockSurveyId, mockSingleUseId);
expect(responses).toEqual(expectedResponseWithoutPerson);
});
});
describe("Sad Path", () => {
testInputValidation(getResponseBySingleUseId, "123#", "123#");
it("Throws DatabaseError on PrismaClientKnownRequestError occurrence", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.findUnique.mockRejectedValue(errToThrow);
await expect(getResponseBySingleUseId(mockSurveyId, mockSingleUseId)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for other exceptions", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.findUnique.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponseBySingleUseId(mockSurveyId, mockSingleUseId)).rejects.toThrow(Error);
});
});
});
describe("Tests for createResponse service", () => {
describe("Happy Path", () => {
it("Creates a response linked to an existing user", async () => {
prisma.attribute.findMany.mockResolvedValue([]);
const response = await createResponse(mockResponseInputWithUserId);
expect(response).toEqual(expectedResponseWithPerson);
});
it("Creates a response without an associated user ID", async () => {
const response = await createResponse(mockResponseInputWithoutUserId);
expect(response).toEqual(expectedResponseWithoutPerson);
});
it("Creates a new person and response when the person does not exist", async () => {
prisma.person.findFirst.mockResolvedValue(null);
prisma.person.create.mockResolvedValue(mockPerson);
prisma.attribute.findMany.mockResolvedValue([]);
const response = await createResponse(mockResponseInputWithUserId);
expect(response).toEqual(expectedResponseWithPerson);
expect(prisma.person.create).toHaveBeenCalledWith({
data: {
environment: { connect: { id: mockEnvironmentId } },
userId: mockUserId,
},
select: selectPerson,
});
});
});
describe("Sad Path", () => {
testInputValidation(createResponse, {
...mockResponseInputWithUserId,
data: [],
});
it("Throws DatabaseError on PrismaClientKnownRequestError occurrence", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.create.mockRejectedValue(errToThrow);
prisma.attribute.findMany.mockResolvedValue([]);
await expect(createResponse(mockResponseInputWithUserId)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for other exceptions", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.create.mockRejectedValue(new Error(mockErrorMessage));
await expect(createResponse(mockResponseInputWithUserId)).rejects.toThrow(Error);
});
});
});
describe("Tests for getResponse service", () => {
describe("Happy Path", () => {
it("Retrieves a specific response by its ID", async () => {
const response = await getResponse(mockResponse.id);
expect(response).toEqual(expectedResponseWithoutPerson);
});
});
describe("Sad Path", () => {
testInputValidation(getResponse, "123#");
it("Throws ResourceNotFoundError if no response is found", async () => {
prisma.response.findUnique.mockResolvedValue(null);
const response = await getResponse(mockResponse.id);
expect(response).toBeNull();
});
it("Throws DatabaseError on PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.findUnique.mockRejectedValue(errToThrow);
await expect(getResponse(mockResponse.id)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for other unexpected issues", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.findUnique.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponse(mockResponse.id)).rejects.toThrow(Error);
});
});
});
describe("Tests for getResponses service", () => {
describe("Happy Path", () => {
it("Fetches first 10 responses for a given survey ID", async () => {
const response = await getResponses(mockSurveyId, 1, 10);
expect(response).toEqual([expectedResponseWithoutPerson]);
});
});
describe("Tests for getResponses service with filters", () => {
describe("Happy Path", () => {
it("Fetches all responses for a given survey ID with basic filters", async () => {
const whereClause = buildWhereClause({ finished: true });
let expectedWhereClause: Prisma.ResponseWhereInput | undefined = {};
// @ts-expect-error
prisma.response.findMany.mockImplementation(async (args) => {
expectedWhereClause = args?.where;
return getFilteredMockResponses({ finished: true }, false);
});
const response = await getResponses(mockSurveyId, 1, undefined, { finished: true });
expect(expectedWhereClause).toEqual({ surveyId: mockSurveyId, ...whereClause });
expect(response).toEqual(getFilteredMockResponses({ finished: true }));
});
it("Fetches all responses for a given survey ID with complex filters", async () => {
const criteria: TResponseFilterCriteria = {
finished: false,
data: {
hagrboqlnynmxh3obl1wvmtl: {
op: "equals",
value: "Google Search",
},
uvy0fa96e1xpd10nrj1je662: {
op: "includesOne",
value: ["Sun ☀️"],
},
},
tags: {
applied: ["tag1"],
notApplied: ["tag4"],
},
personAttributes: {
"Init Attribute 2": {
op: "equals",
value: "four",
},
},
};
const whereClause = buildWhereClause(criteria);
let expectedWhereClause: Prisma.ResponseWhereInput | undefined = {};
// @ts-expect-error
prisma.response.findMany.mockImplementation(async (args) => {
expectedWhereClause = args?.where;
return getFilteredMockResponses(criteria, false);
});
const response = await getResponses(mockSurveyId, 1, undefined, criteria);
expect(expectedWhereClause).toEqual({ surveyId: mockSurveyId, ...whereClause });
expect(response).toEqual(getFilteredMockResponses(criteria));
});
});
describe("Sad Path", () => {
it("Throws an error when the where clause is different and the data is matched when filters are different.", async () => {
const whereClause = buildWhereClause({ finished: true });
let expectedWhereClause: Prisma.ResponseWhereInput | undefined = {};
// @ts-expect-error
prisma.response.findMany.mockImplementation(async (args) => {
expectedWhereClause = args?.where;
return getFilteredMockResponses({ finished: true });
});
const response = await getResponses(mockSurveyId, 1, undefined, { finished: true });
expect(expectedWhereClause).not.toEqual(whereClause);
expect(response).not.toEqual(getFilteredMockResponses({ finished: false }));
});
});
});
describe("Sad Path", () => {
testInputValidation(getResponses, mockSurveyId, "1");
it("Throws DatabaseError on PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.findMany.mockRejectedValue(errToThrow);
await expect(getResponses(mockSurveyId)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for unexpected problems", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.findMany.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponses(mockSurveyId)).rejects.toThrow(Error);
});
});
});
describe("Tests for getSurveySummary service", () => {
describe("Happy Path", () => {
it("Returns a summary of the survey responses", async () => {
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.findMany.mockResolvedValue([mockResponse]);
prisma.attributeClass.findMany.mockResolvedValueOnce([mockAttributeClass]);
const summary = await getSurveySummary(mockSurveyId);
expect(summary).toEqual(mockSurveySummaryOutput);
});
});
describe("Sad Path", () => {
testInputValidation(getSurveySummary, 1);
it("Throws DatabaseError on PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.findMany.mockRejectedValue(errToThrow);
prisma.attributeClass.findMany.mockResolvedValueOnce([mockAttributeClass]);
await expect(getSurveySummary(mockSurveyId)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for unexpected problems", async () => {
const mockErrorMessage = "Mock error message";
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.findMany.mockRejectedValue(new Error(mockErrorMessage));
prisma.attributeClass.findMany.mockResolvedValueOnce([mockAttributeClass]);
await expect(getSurveySummary(mockSurveyId)).rejects.toThrow(Error);
});
});
});
describe("Tests for getResponseDownloadUrl service", () => {
describe("Happy Path", () => {
it("Returns a download URL for the csv response file", async () => {
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.count.mockResolvedValue(1);
prisma.response.findMany.mockResolvedValue([mockResponse]);
const url = await getResponseDownloadUrl(mockSurveyId, "csv");
const fileExtension = url.split(".").pop();
expect(fileExtension).toEqual("csv");
});
it("Returns a download URL for the xlsx response file", async () => {
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.count.mockResolvedValue(1);
prisma.response.findMany.mockResolvedValue([mockResponse]);
const url = await getResponseDownloadUrl(mockSurveyId, "xlsx", { finished: true });
const fileExtension = url.split(".").pop();
expect(fileExtension).toEqual("xlsx");
});
});
describe("Sad Path", () => {
testInputValidation(getResponseDownloadUrl, mockSurveyId, 123);
it("Throws error if response file is of different format than expected", async () => {
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.count.mockResolvedValue(1);
prisma.response.findMany.mockResolvedValue([mockResponse]);
const url = await getResponseDownloadUrl(mockSurveyId, "csv", { finished: true });
const fileExtension = url.split(".").pop();
expect(fileExtension).not.toEqual("xlsx");
});
it("Throws DatabaseError on PrismaClientKnownRequestError, when the getResponseCountBySurveyId fails", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.count.mockRejectedValue(errToThrow);
await expect(getResponseDownloadUrl(mockSurveyId, "csv")).rejects.toThrow(DatabaseError);
});
it("Throws DatabaseError on PrismaClientKnownRequestError, when the getResponses fails", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.survey.findUnique.mockResolvedValue(mockSurveyOutput);
prisma.response.count.mockResolvedValue(1);
prisma.response.findMany.mockRejectedValue(errToThrow);
await expect(getResponseDownloadUrl(mockSurveyId, "csv")).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for unexpected problems", async () => {
const mockErrorMessage = "Mock error message";
// error from getSurvey
prisma.survey.findUnique.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponseDownloadUrl(mockSurveyId, "xlsx")).rejects.toThrow(Error);
});
});
});
describe("Tests for getResponsesByEnvironmentId", () => {
describe("Happy Path", () => {
it("Obtains all responses associated with a specific environment ID", async () => {
const responses = await getResponsesByEnvironmentId(mockEnvironmentId);
expect(responses).toEqual([expectedResponseWithoutPerson]);
});
});
describe("Sad Path", () => {
testInputValidation(getResponsesByEnvironmentId, "123#");
it("Throws DatabaseError on PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.findMany.mockRejectedValue(errToThrow);
await expect(getResponsesByEnvironmentId(mockEnvironmentId)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for any other unhandled exceptions", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.findMany.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponsesByEnvironmentId(mockEnvironmentId)).rejects.toThrow(Error);
});
});
});
describe("Tests for updateResponse Service", () => {
describe("Happy Path", () => {
it("Updates a response (finished = true)", async () => {
const response = await updateResponse(mockResponse.id, getMockUpdateResponseInput(true));
expect(response).toEqual({
...expectedResponseWithoutPerson,
data: mockResponseData,
});
});
it("Updates a response (finished = false)", async () => {
const response = await updateResponse(mockResponse.id, getMockUpdateResponseInput(false));
expect(response).toEqual({
...expectedResponseWithoutPerson,
finished: false,
data: mockResponseData,
});
});
});
describe("Sad Path", () => {
testInputValidation(updateResponse, "123#", {});
it("Throws ResourceNotFoundError if no response is found", async () => {
prisma.response.findUnique.mockResolvedValue(null);
await expect(updateResponse(mockResponse.id, getMockUpdateResponseInput())).rejects.toThrow(
ResourceNotFoundError
);
});
it("Throws DatabaseError on PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.update.mockRejectedValue(errToThrow);
await expect(updateResponse(mockResponse.id, getMockUpdateResponseInput())).rejects.toThrow(
DatabaseError
);
});
it("Throws a generic Error for other unexpected issues", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.update.mockRejectedValue(new Error(mockErrorMessage));
await expect(updateResponse(mockResponse.id, getMockUpdateResponseInput())).rejects.toThrow(Error);
});
});
});
describe("Tests for deleteResponse service", () => {
describe("Happy Path", () => {
it("Successfully deletes a response based on its ID", async () => {
const response = await deleteResponse(mockResponse.id);
expect(response).toEqual(expectedResponseWithoutPerson);
});
});
describe("Sad Path", () => {
testInputValidation(deleteResponse, "123#");
it("Throws DatabaseError on PrismaClientKnownRequestError", async () => {
const mockErrorMessage = "Mock error message";
const errToThrow = new Prisma.PrismaClientKnownRequestError(mockErrorMessage, {
code: "P2002",
clientVersion: "0.0.1",
});
prisma.response.delete.mockRejectedValue(errToThrow);
await expect(deleteResponse(mockResponse.id)).rejects.toThrow(DatabaseError);
});
it("Throws a generic Error for any unhandled exception during deletion", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.delete.mockRejectedValue(new Error(mockErrorMessage));
await expect(deleteResponse(mockResponse.id)).rejects.toThrow(Error);
});
});
});
describe("Tests for getResponseCountBySurveyId service", () => {
describe("Happy Path", () => {
it("Counts the total number of responses for a given survey ID", async () => {
const count = await getResponseCountBySurveyId(mockSurveyId);
expect(count).toEqual(1);
});
it("Returns zero count when there are no responses for a given survey ID", async () => {
prisma.response.count.mockResolvedValue(0);
const count = await getResponseCountBySurveyId(mockSurveyId);
expect(count).toEqual(0);
});
});
describe("Sad Path", () => {
testInputValidation(getResponseCountBySurveyId, "123#");
it("Throws a generic Error for other unexpected issues", async () => {
const mockErrorMessage = "Mock error message";
prisma.response.count.mockRejectedValue(new Error(mockErrorMessage));
await expect(getResponseCountBySurveyId(mockSurveyId)).rejects.toThrow(Error);
});
});
});