* feat: add enabled column to UserFeatures and TeamFeatures for tri-state semantics - Add enabled Boolean column to UserFeatures model with default true - Add enabled Boolean column to TeamFeatures model with default true - Update FeaturesRepository to use tri-state semantics: - enabled=true: feature is explicitly enabled - enabled=false: feature is explicitly disabled (blocks inheritance) - No row: inherit from team/org level - Update SQL queries to check enabled=true for feature access - Add enableFeatureForTeam method to interface and implementation Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * update comments * add integration tests * add more test * select enabled only * no @default(true) * fix types and tests * add missing enabled * add missing enabled * rename enableFeatureForTeam to updateFeatureForTeam and support FeatureState * refactor: rename updateFeatureForTeam to setTeamFeatureState Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * fix integration test * fix tests * add more tests * add missing enabled --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
493 lines
16 KiB
TypeScript
493 lines
16 KiB
TypeScript
import prismock from "../../../../tests/libs/__mocks__/prisma";
|
|
|
|
import { describe, expect, it, beforeEach } from "vitest";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
import { MembershipRole } from "@calcom/prisma/enums";
|
|
|
|
import { SelectedCalendarRepository } from "./selectedCalendar";
|
|
|
|
describe("SelectedCalendarRepository", () => {
|
|
beforeEach(() => {
|
|
prismock.selectedCalendar.deleteMany();
|
|
});
|
|
|
|
describe("getNextBatchToWatch", () => {
|
|
it("excludes calendars when calendar-cache feature is disabled on a team", async () => {
|
|
const user = await prisma.user.create({
|
|
data: {
|
|
email: "calendar-cache-disabled@example.com",
|
|
username: "calendar-cache-disabled",
|
|
},
|
|
});
|
|
|
|
const team = await prisma.team.create({
|
|
data: {
|
|
name: "Calendar Cache Disabled Team",
|
|
slug: "calendar-cache-disabled-team",
|
|
},
|
|
});
|
|
|
|
await prisma.membership.create({
|
|
data: {
|
|
userId: user.id,
|
|
teamId: team.id,
|
|
role: MembershipRole.ADMIN,
|
|
accepted: true,
|
|
},
|
|
});
|
|
|
|
await prisma.teamFeatures.create({
|
|
data: {
|
|
teamId: team.id,
|
|
featureId: "calendar-cache",
|
|
enabled: false,
|
|
assignedBy: "test",
|
|
},
|
|
});
|
|
|
|
await prisma.selectedCalendar.create({
|
|
data: {
|
|
userId: user.id,
|
|
integration: "google_calendar",
|
|
externalId: "disabled@example.com",
|
|
credentialId: 1,
|
|
},
|
|
});
|
|
|
|
const nextBatch = await SelectedCalendarRepository.getNextBatchToWatch();
|
|
|
|
expect(nextBatch).toEqual([]);
|
|
});
|
|
});
|
|
|
|
describe("create", () => {
|
|
it("should create a selected calendar", async () => {
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.create(data);
|
|
|
|
expect(result).toEqual(expect.objectContaining(data));
|
|
});
|
|
|
|
it("should throw error if we try to create a user-level calendar with same userId_integration_externalId as an existing user-level calendar", async () => {
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: null,
|
|
};
|
|
|
|
await SelectedCalendarRepository.create(data);
|
|
|
|
await expect(
|
|
SelectedCalendarRepository.create({
|
|
...data,
|
|
credentialId: 2,
|
|
})
|
|
).rejects.toThrow("Selected calendar already exists");
|
|
});
|
|
|
|
it("should allow creating a user-level calendar with same userId_integration_externalId as an existing event-type level calendar", async () => {
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: 1,
|
|
};
|
|
|
|
await SelectedCalendarRepository.create(data);
|
|
|
|
const userLevelCalendarData = {
|
|
...data,
|
|
eventTypeId: null,
|
|
};
|
|
const created = await SelectedCalendarRepository.create(userLevelCalendarData);
|
|
|
|
expect(created).toEqual(expect.objectContaining(userLevelCalendarData));
|
|
});
|
|
});
|
|
|
|
describe("update", () => {
|
|
it("should update a selected calendar and return it", async () => {
|
|
const calendarToUpdate = await SelectedCalendarRepository.create({
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
});
|
|
|
|
const updatedCalendar = await SelectedCalendarRepository.update({
|
|
where: { userId: 1, externalId: "test@gmail.com" },
|
|
data: { integration: "office365_calendar" },
|
|
});
|
|
|
|
expect(updatedCalendar.id).toBe(calendarToUpdate.id);
|
|
expect(updatedCalendar.integration).toBe("office365_calendar");
|
|
});
|
|
|
|
it("should throw error when trying to update multiple calendars", async () => {
|
|
await SelectedCalendarRepository.create({
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test1@gmail.com",
|
|
credentialId: 1,
|
|
});
|
|
|
|
await SelectedCalendarRepository.create({
|
|
userId: 1,
|
|
integration: "google_calendar2",
|
|
externalId: "test1@gmail.com",
|
|
credentialId: 2,
|
|
});
|
|
|
|
await expect(
|
|
SelectedCalendarRepository.update({
|
|
where: { userId: 1, externalId: "test1@gmail.com" },
|
|
data: { integration: "office365_calendar" },
|
|
})
|
|
).rejects.toThrow(
|
|
"Multiple SelectedCalendar records found to update. updateMany should be used instead"
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("delete", () => {
|
|
it("should delete a selected calendar and return it", async () => {
|
|
const calendar = await SelectedCalendarRepository.create({
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
});
|
|
|
|
const deleted = await SelectedCalendarRepository.delete({
|
|
where: {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
},
|
|
});
|
|
|
|
expect(deleted).toEqual(calendar);
|
|
const result = await SelectedCalendarRepository.findFirst({
|
|
where: { id: calendar.id },
|
|
});
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it("should throw error when trying to delete non-existent calendar", async () => {
|
|
await expect(
|
|
SelectedCalendarRepository.delete({
|
|
where: {
|
|
userId: 999,
|
|
integration: "google_calendar",
|
|
externalId: "nonexistent@gmail.com",
|
|
credentialId: 999,
|
|
},
|
|
})
|
|
).rejects.toThrow("SelectedCalendar not found");
|
|
});
|
|
});
|
|
|
|
describe("findUserLevelUniqueOrThrow", () => {
|
|
it("should find user level calendar", async () => {
|
|
const calendar = await SelectedCalendarRepository.create({
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: null, // User level calendar
|
|
});
|
|
|
|
const result = await SelectedCalendarRepository.findUserLevelUniqueOrThrow({
|
|
where: { userId: 1, externalId: "test@gmail.com" },
|
|
});
|
|
|
|
expect(result).toEqual(
|
|
expect.objectContaining({
|
|
userId: calendar.userId,
|
|
externalId: calendar.externalId,
|
|
})
|
|
);
|
|
});
|
|
|
|
it("should not find event type level calendar", async () => {
|
|
await SelectedCalendarRepository.create({
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: 1, // Event type level calendar
|
|
});
|
|
|
|
await expect(
|
|
SelectedCalendarRepository.findUserLevelUniqueOrThrow({
|
|
where: { userId: 1, externalId: "test@gmail.com" },
|
|
})
|
|
).rejects.toThrow("SelectedCalendar not found");
|
|
});
|
|
});
|
|
|
|
describe("upsert", () => {
|
|
describe("User Level Calendar", () => {
|
|
const eventTypeId = null;
|
|
it("should update existing calendar as long as a record with same userId_integration_externalId is present for eventTypeId=null", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const updatedData = {
|
|
...initialData,
|
|
credentialId: 2,
|
|
eventTypeId,
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(updatedData);
|
|
|
|
expect(result.credentialId).toBe(2);
|
|
expect(existingCalendar.id).toBe(result.id);
|
|
});
|
|
|
|
it("should create new calendar if no record with same userId_integration_externalId is present when eventTypeId=null", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const updatedData = {
|
|
...initialData,
|
|
externalId: "test2@gmail.com",
|
|
credentialId: 2,
|
|
eventTypeId,
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(updatedData);
|
|
expect(await prisma.selectedCalendar.count()).toBe(2);
|
|
expect(result).toEqual(expect.objectContaining(updatedData));
|
|
expect(existingCalendar.id).not.toBe(result.id);
|
|
});
|
|
});
|
|
|
|
describe("Event Type Level Calendar", () => {
|
|
const eventTypeId = 101;
|
|
it("should update existing calendar as long as record with same userId_integration_externalId_eventTypeId is present", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const updatedData = {
|
|
...initialData,
|
|
credentialId: 2,
|
|
eventTypeId,
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(updatedData);
|
|
|
|
expect(result.credentialId).toBe(2);
|
|
expect(existingCalendar.id).toBe(result.id);
|
|
});
|
|
|
|
it("should create new calendar if no record with same userId_integration_externalId_eventTypeId is present", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const updatedData = {
|
|
...initialData,
|
|
credentialId: 2,
|
|
externalId: "test2@gmail.com",
|
|
eventTypeId,
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(updatedData);
|
|
expect(await prisma.selectedCalendar.count()).toBe(2);
|
|
expect(result).toEqual(expect.objectContaining(updatedData));
|
|
expect(existingCalendar.id).not.toBe(result.id);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Delegation Credential", () => {
|
|
it("should create a selected calendar with delegationCredentialId", async () => {
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
delegationCredentialId: "delegationCredential-123",
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.create(data);
|
|
|
|
expect(result).toEqual(expect.objectContaining(data));
|
|
});
|
|
|
|
describe("upsert", () => {
|
|
describe("updation", () => {
|
|
it("should update existing record with delegationCredentialId if credentialId is -1", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: null,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: -1,
|
|
delegationCredentialId: "delegationCredential-123",
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(data);
|
|
expect(result.id).not.toBe(null);
|
|
expect(result.id).toBe(existingCalendar.id);
|
|
expect(result.credentialId).toBe(null);
|
|
expect(result.delegationCredentialId).toBe(data.delegationCredentialId);
|
|
});
|
|
|
|
it("should update existing record with credentialId if credentialId is valid(>0) even if delegationCredentialId is set", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: null,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 2,
|
|
delegationCredentialId: "delegationCredential-123",
|
|
};
|
|
const beforeDelegationCredentialId = data.delegationCredentialId;
|
|
|
|
const result = await SelectedCalendarRepository.upsert(data);
|
|
expect(result.id).not.toBe(null);
|
|
expect(result.id).toBe(existingCalendar.id);
|
|
expect(result.credentialId).toBe(data.credentialId);
|
|
expect(result.delegationCredentialId).toBe(beforeDelegationCredentialId);
|
|
});
|
|
});
|
|
|
|
describe("creation", () => {
|
|
it("should create a new record with delegationCredentialId if credentialId is -1", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
eventTypeId: null,
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "anotheremail@gmail.com",
|
|
credentialId: -1,
|
|
delegationCredentialId: "delegationCredential-123",
|
|
};
|
|
|
|
// It will create a new record because of unique constraint violation
|
|
const result = await SelectedCalendarRepository.upsert(data);
|
|
expect(result.id).not.toBe(null);
|
|
expect(result.id).not.toBe(existingCalendar.id);
|
|
expect(result.credentialId).toBe(null);
|
|
expect(result.delegationCredentialId).toBe(data.delegationCredentialId);
|
|
});
|
|
});
|
|
|
|
it("shouldnt update existing delegationCredentialId if upsert data doesn't have it", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
eventTypeId: null,
|
|
delegationCredentialId: "delegationCredential-123",
|
|
credentialId: 1,
|
|
};
|
|
|
|
const beforeDelegationCredentialId = initialData.delegationCredentialId;
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
credentialId: 1,
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(data);
|
|
expect(result.id).toBe(existingCalendar.id);
|
|
expect(result.credentialId).toBe(existingCalendar.credentialId);
|
|
expect(result.delegationCredentialId).toBe(beforeDelegationCredentialId);
|
|
});
|
|
|
|
it("shouldnt update delegationCredentialId if it is undefined", async () => {
|
|
const initialData = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
eventTypeId: null,
|
|
delegationCredentialId: "delegationCredential-123",
|
|
};
|
|
|
|
const existingCalendar = await SelectedCalendarRepository.create(initialData);
|
|
|
|
const data = {
|
|
userId: 1,
|
|
integration: "google_calendar",
|
|
externalId: "test@gmail.com",
|
|
};
|
|
|
|
const result = await SelectedCalendarRepository.upsert(data);
|
|
expect(result.id).toBe(existingCalendar.id);
|
|
expect(result.credentialId).toBe(existingCalendar.credentialId);
|
|
expect(result.delegationCredentialId).toBe(existingCalendar.delegationCredentialId);
|
|
});
|
|
});
|
|
});
|
|
});
|