* Add db schema * Add `CredentialRepository.findByTeamIdAndSlugs` * Add enabled app slugs for attribute syncing * Create repository for `IntegrationAttributeSync` * Create zod schemas * Create `AttributeSyncUserRuleOutputMapper` * Create `IntegrationAttributeSyncService` * Create DI contianer * Create trpc endpoints * Create page * Include team name in `CredentialRepository.findByTeamIdAndSlugs` * Update schema and relations * Update types and schemas * Add more methods to IntegrationAttributeSyncRepository * Add more services to `IntegrationAttributeSyncService` - getById - Init updateIncludeRulesAndMappings * Refactor `getTeams.handler` to use repository * Create `createAttributeSync` trpc endpoint * Create `updateAttributeSync` trpc endpoint * Add router to trpc * Create attribute sync child components * Pass custom actions to `FormCard` * Create `IntegrationAttributeSyncCard` * Pass inital props via server side * Fix prop * Only refetch on mutation * Fixes * Add form error when duplicate field and attribute combo * Add `updateTransactionWithRUleAndMappings` logic * Adjust zod schemas * Service add `updateIncludeRulesAndMappings` * Pass orgId from server to component * Rename types * Add deleteById method to repository * Add name to integrationAttributeSync * Add deleteById method to service * Rename method * Add deleteAttributeSync trpc endpoint * Make the IntegrationAttributeSyncCard a dummy component * test: add tests for IntegrationAttributeSync feature Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Move creating a attribute sync record to the service * Add i18n strings * Safe select credential in find by id and team * Fix default credentialId value in form * Update repository return types * Add i18n string * Make credentialId optional for form schema * Fix label * Add cascade deletes * Add verification that syncs belong to org * Create mapper for repository output * Type fixes * Remove old test file * Pass `attributeOptions` from parent to children * Infer types from zod schema * Type fixes * Type fix * Clean up * Add i18n strings * Remove unused file * Address feedback * Add migration file * Address feedback * Add validation for new integration values * Remove unused router * Move away from z.infer to z.ZodType * Clean up comments * Type fix * Type fixes * Type fix * fix: add passthrough to syncFormDataSchema to preserve extra fields Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * fix: remove incorrect test that expected extra fields to pass through syncFormDataSchema Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Add endpoint for SF to call * Create scratch org config * Create sf cli scripts * Create package logic * Update README * Remove unused file * Add indexes * Add aria label * Address feedback - consistent validation * Fix import paths for attribute types * Add `CredentialRepository.findByAppIdAndKeyValue` * Get credential by instance URL * Verify incoming sfdc orgId matches credential sfdc orgId * Rename method * Get user name integration syncs * refactor: change attributeSyncRules array to singular attributeSyncRule The database schema enforces a one-to-one relationship between IntegrationAttributeSync and AttributeSyncRule (via @unique constraint), and the UI only supports a single rule. This change makes the TypeScript type match the database schema and UI behavior. Changes: - Update IntegrationAttributeSync interface to use attributeSyncRule: AttributeSyncRule | null - Update mapper to return singular rule instead of wrapping in array - Update UI component to access sync.attributeSyncRule directly - Update IIntegrationAttributeSyncUpdateParams Omit type - Update tests to use attributeSyncRule: null instead of attributeSyncRules: [] Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Convert `membershipRepository.findAllByUserId` to a normal method * Add temp files to git ignore * Init and process team conditions * Biome formatting * Add `AttributeService` to get user attributes * Add DI container for AttributeService * AttributeSyncService evaluate attribute conditions * Create DI container for attributeSyncService * Return result for full condition * Evaluate if attribute sync should apply to user * Add method * Change PrismaAttributeOptionRepository to instance methods * Init AttributeSyncFieldMappingsService and process attribute syncs * Add AttributeSyncFieldMappingService DI container * Refactor orgId to organizationId * Add membership validation to sync field service * AttributeSYncFieldMappingService use repository methods * AttributeSyncFieldMappingService.processMappings add mapping logic * Add DI tokens * user-sync endpoint to implement attribute syncing * Validate team belongs to org for rule * test: add tests for AttributeSyncRuleService, AttributeSyncFieldMappingService, and AttributeService Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Remove duplicate migration file * Fix merge conflict * fix: resolve type errors in attribute sync feature (#26814) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * Rename variable * Fix log typo * Fix file name * Add error logging * Use credential teamId * fix: add missing mockTeamRepository and team validation to tests Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Fix naming * Fix file import * Type fix * Pass MembershipRepository as a dep in AttributeSyncFieldMappingService * Type fix * fix: add mockMembershipRepository to AttributeSyncFieldMappingService tests Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Update packages/app-store/salesforce/api/user-sync.ts Add error handling when getting orgId from stored salesforce id Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * fix: address Cubic code review comments - PrismaAttributeRepository: use nested select instead of include: true for options - CredentialRepository: use this.primaClient instead of global prisma, use select instead of include for relations - AttributeSyncFieldMappingService: optimize O(n*m) complexity with Map lookup for O(1) access Co-Authored-By: joe@cal.com <j.auyeung419@gmail.com> * Fix typo in CredentialRepository * Update README * Update sfdx-project * Add SFDC package tests * fix: improve Salesforce Apex test assertions to verify actual behavior - Enhanced CalComHttpMock to track HTTP callout invocations and capture requests - Updated UserUpdateHandlerTest to verify HTTP callouts are made with correct data - Updated CalComCalloutQueueableTest to verify HTTP callouts are made correctly - Replaced System.assert(true, ...) with meaningful assertions that verify: - Correct number of HTTP callouts - Request body contains expected fields - Request method is POST Addresses Cubic AI review feedback (confidence 9/10 issues only) Co-Authored-By: unknown <> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
709 lines
25 KiB
TypeScript
709 lines
25 KiB
TypeScript
import type { PrismaAttributeToUserRepository } from "@calcom/features/attributes/repositories/PrismaAttributeToUserRepository";
|
|
|
|
import type { MembershipRepository } from "@calcom/features/membership/repositories/MembershipRepository";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
import {
|
|
ConditionIdentifierEnum,
|
|
ConditionOperatorEnum,
|
|
type IAttributeSyncRule,
|
|
RuleOperatorEnum,
|
|
} from "../repositories/IIntegrationAttributeSyncRepository";
|
|
import { AttributeSyncRuleService } from "./AttributeSyncRuleService";
|
|
|
|
vi.mock("@calcom/features/attributes/di/AttributeService.container", () => ({
|
|
getAttributeService: vi.fn(() => ({
|
|
getUsersAttributesByOrgMembershipId: vi.fn(),
|
|
})),
|
|
}));
|
|
|
|
import { getAttributeService } from "@calcom/features/attributes/di/AttributeService.container";
|
|
|
|
describe("AttributeSyncRuleService", () => {
|
|
let service: AttributeSyncRuleService;
|
|
let mockMembershipRepository: {
|
|
findAllByUserId: ReturnType<typeof vi.fn>;
|
|
};
|
|
let mockAttributeToUserRepository: {
|
|
findManyIncludeAttribute: ReturnType<typeof vi.fn>;
|
|
};
|
|
let mockAttributeService: {
|
|
getUsersAttributesByOrgMembershipId: ReturnType<typeof vi.fn>;
|
|
};
|
|
|
|
beforeEach(() => {
|
|
vi.resetAllMocks();
|
|
|
|
mockMembershipRepository = {
|
|
findAllByUserId: vi.fn(),
|
|
};
|
|
|
|
mockAttributeToUserRepository = {
|
|
findManyIncludeAttribute: vi.fn(),
|
|
};
|
|
|
|
mockAttributeService = {
|
|
getUsersAttributesByOrgMembershipId: vi.fn(),
|
|
};
|
|
|
|
vi.mocked(getAttributeService).mockReturnValue(mockAttributeService);
|
|
|
|
service = new AttributeSyncRuleService({
|
|
membershipRepository: mockMembershipRepository as unknown as MembershipRepository,
|
|
attributeToUserRepository: mockAttributeToUserRepository as unknown as PrismaAttributeToUserRepository,
|
|
});
|
|
});
|
|
|
|
describe("shouldSyncApplyToUser", () => {
|
|
describe("team conditions", () => {
|
|
it("should return true when user is in specified team with IN operator and AND rule", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([
|
|
{ teamId: 10, accepted: true },
|
|
{ teamId: 30, accepted: true },
|
|
]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
expect(mockMembershipRepository.findAllByUserId).toHaveBeenCalledWith({
|
|
userId: 1,
|
|
filters: { accepted: true },
|
|
});
|
|
});
|
|
|
|
it("should return false when user is not in any specified team with IN operator and AND rule", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10, 20],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([
|
|
{ teamId: 30, accepted: true },
|
|
{ teamId: 40, accepted: true },
|
|
]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return true when user is not in specified team with NOT_IN operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.NOT_IN,
|
|
value: [10],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 20, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when user is in specified team with NOT_IN operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.NOT_IN,
|
|
value: [10],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 10, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should evaluate multiple team IDs in a single condition - all must match for AND rule", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10, 20],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([
|
|
{ teamId: 10, accepted: true },
|
|
{ teamId: 20, accepted: true },
|
|
]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when user is not in all specified teams with IN operator and AND rule", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10, 20, 30],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([
|
|
{ teamId: 10, accepted: true },
|
|
{ teamId: 20, accepted: true },
|
|
]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return true when user is in any specified team with IN operator and OR rule", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.OR,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10, 20, 30],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 10, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("attribute conditions", () => {
|
|
it("should return true when user has matching SINGLE_SELECT attribute with EQUALS operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-1",
|
|
value: "Option 1",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when user has non-matching SINGLE_SELECT attribute with EQUALS operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-2",
|
|
value: "Option 2",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return true when user has matching TEXT attribute with EQUALS operator (case-insensitive)", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["ENGINEERING"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "TEXT",
|
|
optionId: null,
|
|
value: "engineering",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return true when user has MULTI_SELECT attribute containing all required options with IN operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: ["option-1", "option-2"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "MULTI_SELECT",
|
|
optionIds: new Set(["option-1", "option-2", "option-3"]),
|
|
values: new Set(["Option 1", "Option 2", "Option 3"]),
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when user has MULTI_SELECT attribute missing some required options with IN operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: ["option-1", "option-2"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "MULTI_SELECT",
|
|
optionIds: new Set(["option-1", "option-3"]),
|
|
values: new Set(["Option 1", "Option 3"]),
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return true when user has MULTI_SELECT attribute without any excluded options with NOT_IN operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.NOT_IN,
|
|
value: ["option-4", "option-5"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "MULTI_SELECT",
|
|
optionIds: new Set(["option-1", "option-2"]),
|
|
values: new Set(["Option 1", "Option 2"]),
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when user has MULTI_SELECT attribute with some excluded options with NOT_IN operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.NOT_IN,
|
|
value: ["option-1", "option-5"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "MULTI_SELECT",
|
|
optionIds: new Set(["option-1", "option-2"]),
|
|
values: new Set(["Option 1", "Option 2"]),
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return false when user does not have the attribute with IN/EQUALS operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return true when user does not have the attribute with NOT_IN/NOT_EQUALS operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.NOT_IN,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return true when user has non-matching SINGLE_SELECT attribute with NOT_EQUALS operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.NOT_EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-2",
|
|
value: "Option 2",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("rule operators", () => {
|
|
it("should return true with AND operator when all conditions pass", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10],
|
|
},
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 10, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-1",
|
|
value: "Option 1",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false with AND operator when any condition fails", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10],
|
|
},
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 10, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-2",
|
|
value: "Option 2",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should return true with OR operator when any condition passes", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.OR,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10],
|
|
},
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 20, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-1",
|
|
value: "Option 1",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false with OR operator when all conditions fail", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.OR,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10],
|
|
},
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["option-1"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([{ teamId: 20, accepted: true }]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "SINGLE_SELECT",
|
|
optionId: "option-2",
|
|
value: "Option 2",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe("edge cases", () => {
|
|
it("should return true with AND operator and empty conditions", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false with OR operator and empty conditions", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.OR,
|
|
conditions: [],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should handle user with no team memberships", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.TEAM_ID,
|
|
operator: ConditionOperatorEnum.IN,
|
|
value: [10],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should handle NUMBER attribute type with EQUALS operator", async () => {
|
|
const user = { id: 1, organizationId: 100 };
|
|
const attributeSyncRule: IAttributeSyncRule = {
|
|
operator: RuleOperatorEnum.AND,
|
|
conditions: [
|
|
{
|
|
identifier: ConditionIdentifierEnum.ATTRIBUTE_ID,
|
|
attributeId: "attr-1",
|
|
operator: ConditionOperatorEnum.EQUALS,
|
|
value: ["42"],
|
|
},
|
|
],
|
|
};
|
|
|
|
mockMembershipRepository.findAllByUserId.mockResolvedValue([]);
|
|
mockAttributeService.getUsersAttributesByOrgMembershipId.mockResolvedValue({
|
|
"attr-1": {
|
|
type: "NUMBER",
|
|
optionId: null,
|
|
value: "42",
|
|
},
|
|
});
|
|
|
|
const result = await service.shouldSyncApplyToUser({ user, attributeSyncRule });
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
});
|
|
});
|
|
});
|