UNPKG

@grouparoo/core

Version:
131 lines (111 loc) 4.34 kB
import { SharedGroupTests } from "../../../utils/prepareSharedGroupTest"; import { Group } from "../../../../src"; import { helper } from "@grouparoo/spec-helper"; describe("model/group", () => { helper.grouparooTestServer({ truncate: true, enableTestPlugin: true }); let group: Group; beforeAll(async () => { const response = await SharedGroupTests.beforeAll(); }, helper.setupTime); beforeEach(async () => { const response = await SharedGroupTests.beforeEach(); group = response.group; }); afterEach(async () => { await SharedGroupTests.afterEach(); }); describe("rules", () => { describe("floats", () => { test("exact matches", async () => { await group.setRules([ { key: "ltv", match: 100, operation: { op: "eq" } }, ]); expect(await group.countPotentialMembers()).toBe(1); }); test("comparison matches", async () => { await group.setRules([ { key: "ltv", match: 1, operation: { op: "gte" } }, ]); expect(await group.countPotentialMembers()).toBe(3); }); test("multiple rules with same key", async () => { await group.setRules([ { key: "ltv", match: 1, operation: { op: "gte" } }, { key: "ltv", match: 9999, operation: { op: "lt" } }, ]); expect(await group.countPotentialMembers()).toBe(3); }); test("multiple matches (ALL)", async () => { await group.setRules([ { key: "ltv", match: 1, operation: { op: "gte" } }, { key: "lastName", match: "Mario", operation: { op: "like" } }, ]); expect(await group.countPotentialMembers()).toBe(2); }); test("multiple matches (ANY)", async () => { await group.update({ matchType: "any" }); await group.setRules([ { key: "ltv", match: 1, operation: { op: "gte" } }, { key: "lastName", match: "%Toad%", operation: { op: "like" } }, ]); expect(await group.countPotentialMembers()).toBe(4); }); test("null match", async () => { await group.setRules([ { key: "ltv", match: "null", operation: { op: "eq" } }, ]); expect(await group.countPotentialMembers()).toBe(0); }); test("not null match", async () => { await group.setRules([ { key: "ltv", match: "null", operation: { op: "ne" } }, ]); expect(await group.countPotentialMembers()).toBe(4); }); test("exists", async () => { await group.setRules([{ key: "ltv", operation: { op: "exists" } }]); expect(await group.countPotentialMembers()).toBe(4); }); test("notExists", async () => { await group.setRules([{ key: "ltv", operation: { op: "notExists" } }]); expect(await group.countPotentialMembers()).toBe(0); }); test("array property exists", async () => { await group.setRules([ { key: "purchaseAmounts", operation: { op: "exists" } }, ]); expect(await group.countPotentialMembers()).toBe(3); }); test("array property does not exists", async () => { await group.setRules([ { key: "purchaseAmounts", operation: { op: "notExists" } }, ]); expect(await group.countPotentialMembers()).toBe(1); }); test("array property equals", async () => { await group.setRules([ { key: "purchaseAmounts", match: 50, operation: { op: "eq" } }, ]); expect(await group.countPotentialMembers()).toBe(1); }); test("array property not equals", async () => { await group.setRules([ { key: "purchaseAmounts", match: 50, operation: { op: "ne" } }, ]); expect(await group.countPotentialMembers()).toBe(3); }); test("array property comparisons gt", async () => { await group.setRules([ { key: "purchaseAmounts", match: 50, operation: { op: "gt" } }, ]); expect(await group.countPotentialMembers()).toBe(2); }); test("array property comparisons lte", async () => { await group.setRules([ { key: "purchaseAmounts", match: 50, operation: { op: "lte" } }, ]); expect(await group.countPotentialMembers()).toBe(1); }); }); }); });