Files
2026-07-13 13:32:57 +08:00

519 lines
19 KiB
TypeScript

import { describe, expect, vi } from "vitest";
// Mock the db prisma client
vi.mock("~/db.server", () => ({
prisma: {},
$replica: {},
}));
import { replicationContainerTest } from "@internal/testcontainers";
import { setTimeout } from "node:timers/promises";
import { RunsRepository } from "~/services/runsRepository/runsRepository.server";
import { setupClickhouseReplication } from "./utils/replicationUtils";
vi.setConfig({ testTimeout: 60_000 });
/**
* Regression tests for keyset pagination over `(created_at, run_id)`.
*
* `listRunIds`/`listRuns` order by the composite key `(created_at, run_id)` but
* the old cursor predicate cut on `run_id` alone. That is only sound when
* `run_id` lexicographic order matches `created_at` order. When a burst of runs
* is created such that the two orders diverge (here: deliberately reversed),
* keyset pagination both re-includes already-seen runs (duplicates) and drops
* runs it should have returned (skips).
*
* Each test inserts runs with explicit ids so that `run_id` ascending order is
* the exact reverse of `created_at` ascending order, then walks every page and
* asserts the union is exactly the inserted set with no duplicates.
*/
describe("RunsRepository cursor pagination", () => {
replicationContainerTest(
"forward pagination returns every run exactly once when run_id order is the reverse of created_at order",
async ({ clickhouseContainer, redisOptions, postgresContainer, prisma }) => {
const { clickhouse } = await setupClickhouseReplication({
prisma,
databaseUrl: postgresContainer.getConnectionUri(),
clickhouseUrl: clickhouseContainer.getConnectionUrl(),
redisOptions,
});
const organization = await prisma.organization.create({
data: { title: "test", slug: "test" },
});
const project = await prisma.project.create({
data: {
name: "test",
slug: "test",
organizationId: organization.id,
externalRef: "test",
},
});
const runtimeEnvironment = await prisma.runtimeEnvironment.create({
data: {
slug: "test",
type: "DEVELOPMENT",
projectId: project.id,
organizationId: organization.id,
apiKey: "test",
pkApiKey: "test",
shortcode: "test",
},
});
// run_id ascending: a < b < c < d < e
// created_at ascending: e < d < c < b < a (the exact reverse)
const ids = [
"aaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbb",
"cccccccccccccccccccccccc",
"dddddddddddddddddddddddd",
"eeeeeeeeeeeeeeeeeeeeeeee",
];
const base = Date.now() - 60 * 60 * 1000; // relative, so fixtures never age out of the default 7d window
for (let i = 0; i < ids.length; i++) {
await prisma.taskRun.create({
data: {
id: ids[i],
// earliest-created run has the largest run_id (reverse correlation)
createdAt: new Date(base + (ids.length - 1 - i) * 1000),
friendlyId: `run_${ids[i]}`,
taskIdentifier: "my-task",
payload: JSON.stringify({ foo: "bar" }),
traceId: `trace_${i}`,
spanId: `span_${i}`,
queue: "test",
runtimeEnvironmentId: runtimeEnvironment.id,
projectId: project.id,
organizationId: organization.id,
environmentType: "DEVELOPMENT",
engine: "V2",
},
});
}
await setTimeout(1000);
const runsRepository = new RunsRepository({ prisma, clickhouse });
const baseOptions = {
projectId: project.id,
environmentId: runtimeEnvironment.id,
organizationId: organization.id,
};
// Walk every forward page, size 2, accumulating ids.
const seen: string[] = [];
let cursor: string | undefined = undefined;
for (let guard = 0; guard < 20; guard++) {
const page = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor, direction: cursor ? "forward" : undefined },
});
seen.push(...page.runs.map((r) => r.id));
if (!page.pagination.nextCursor) break;
cursor = page.pagination.nextCursor;
}
// No duplicates, no skips: every inserted run appears exactly once.
expect(seen.slice().sort()).toEqual(ids.slice().sort());
expect(new Set(seen).size).toBe(ids.length);
}
);
replicationContainerTest(
"backward pagination round-trips to the previous page when run_id order is the reverse of created_at order",
async ({ clickhouseContainer, redisOptions, postgresContainer, prisma }) => {
const { clickhouse } = await setupClickhouseReplication({
prisma,
databaseUrl: postgresContainer.getConnectionUri(),
clickhouseUrl: clickhouseContainer.getConnectionUrl(),
redisOptions,
});
const organization = await prisma.organization.create({
data: { title: "test", slug: "test" },
});
const project = await prisma.project.create({
data: {
name: "test",
slug: "test",
organizationId: organization.id,
externalRef: "test",
},
});
const runtimeEnvironment = await prisma.runtimeEnvironment.create({
data: {
slug: "test",
type: "DEVELOPMENT",
projectId: project.id,
organizationId: organization.id,
apiKey: "test",
pkApiKey: "test",
shortcode: "test",
},
});
// run_id ascending: a < b < c ; created_at ascending: c < b < a (reversed).
const ids = [
"aaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbb",
"cccccccccccccccccccccccc",
];
const base = Date.now() - 60 * 60 * 1000; // relative, so fixtures never age out of the default 7d window
for (let i = 0; i < ids.length; i++) {
await prisma.taskRun.create({
data: {
id: ids[i],
createdAt: new Date(base + (ids.length - 1 - i) * 1000),
friendlyId: `run_${ids[i]}`,
taskIdentifier: "my-task",
payload: JSON.stringify({ foo: "bar" }),
traceId: `trace_${i}`,
spanId: `span_${i}`,
queue: "test",
runtimeEnvironmentId: runtimeEnvironment.id,
projectId: project.id,
organizationId: organization.id,
environmentType: "DEVELOPMENT",
engine: "V2",
},
});
}
await setTimeout(1000);
const runsRepository = new RunsRepository({ prisma, clickhouse });
const baseOptions = {
projectId: project.id,
environmentId: runtimeEnvironment.id,
organizationId: organization.id,
};
// Forward order (created_at DESC) is [a, b, c]. First page (size 2) = {a, b}.
const firstPage = await runsRepository.listRuns({
...baseOptions,
page: { size: 2 },
});
const firstIds = firstPage.runs.map((r) => r.id).sort();
expect(firstIds).toEqual(["aaaaaaaaaaaaaaaaaaaaaaaa", "bbbbbbbbbbbbbbbbbbbbbbbb"]);
expect(firstPage.pagination.nextCursor).toBeTruthy();
// Forward to the second page = {c}; it exposes a previousCursor.
const secondPage = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor: firstPage.pagination.nextCursor!, direction: "forward" },
});
expect(secondPage.runs.map((r) => r.id)).toEqual(["cccccccccccccccccccccccc"]);
expect(secondPage.pagination.previousCursor).toBeTruthy();
// Stepping backward from the second page must land back on the first page
// exactly — no duplicated or skipped runs across the boundary.
const backPage = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor: secondPage.pagination.previousCursor!, direction: "backward" },
});
expect(backPage.runs.map((r) => r.id).sort()).toEqual(firstIds);
}
);
replicationContainerTest(
"legacy bare run_id cursor still uses the old (run_id-only) predicate for backwards compatibility",
async ({ clickhouseContainer, redisOptions, postgresContainer, prisma }) => {
const { clickhouse } = await setupClickhouseReplication({
prisma,
databaseUrl: postgresContainer.getConnectionUri(),
clickhouseUrl: clickhouseContainer.getConnectionUrl(),
redisOptions,
});
const organization = await prisma.organization.create({
data: { title: "test", slug: "test" },
});
const project = await prisma.project.create({
data: {
name: "test",
slug: "test",
organizationId: organization.id,
externalRef: "test",
},
});
const runtimeEnvironment = await prisma.runtimeEnvironment.create({
data: {
slug: "test",
type: "DEVELOPMENT",
projectId: project.id,
organizationId: organization.id,
apiKey: "test",
pkApiKey: "test",
shortcode: "test",
},
});
const ids = [
"aaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbb",
"cccccccccccccccccccccccc",
];
const base = Date.now() - 60 * 60 * 1000; // relative, so fixtures never age out of the default 7d window
for (let i = 0; i < ids.length; i++) {
await prisma.taskRun.create({
data: {
id: ids[i],
createdAt: new Date(base + i * 1000),
friendlyId: `run_${ids[i]}`,
taskIdentifier: "my-task",
payload: JSON.stringify({ foo: "bar" }),
traceId: `trace_${i}`,
spanId: `span_${i}`,
queue: "test",
runtimeEnvironmentId: runtimeEnvironment.id,
projectId: project.id,
organizationId: organization.id,
environmentType: "DEVELOPMENT",
engine: "V2",
},
});
}
await setTimeout(1000);
const runsRepository = new RunsRepository({ prisma, clickhouse });
// A legacy cursor is a bare run_id. The old predicate is `run_id < cursor`,
// so passing the largest run_id must return the two smaller ones.
const page = await runsRepository.listRuns({
projectId: project.id,
environmentId: runtimeEnvironment.id,
organizationId: organization.id,
page: { size: 10, cursor: "cccccccccccccccccccccccc", direction: "forward" },
});
const returned = page.runs.map((r) => r.id).sort();
expect(returned).toEqual(["aaaaaaaaaaaaaaaaaaaaaaaa", "bbbbbbbbbbbbbbbbbbbbbbbb"]);
}
);
replicationContainerTest(
"backward pagination across multiple pages returns each page intact (no straddling)",
async ({ clickhouseContainer, redisOptions, postgresContainer, prisma }) => {
const { clickhouse } = await setupClickhouseReplication({
prisma,
databaseUrl: postgresContainer.getConnectionUri(),
clickhouseUrl: clickhouseContainer.getConnectionUrl(),
redisOptions,
});
const organization = await prisma.organization.create({
data: { title: "test", slug: "test" },
});
const project = await prisma.project.create({
data: {
name: "test",
slug: "test",
organizationId: organization.id,
externalRef: "test",
},
});
const runtimeEnvironment = await prisma.runtimeEnvironment.create({
data: {
slug: "test",
type: "DEVELOPMENT",
projectId: project.id,
organizationId: organization.id,
apiKey: "test",
pkApiKey: "test",
shortcode: "test",
},
});
// Five runs so a backward page has more rows before it (hasMore === true),
// which is the case the off-by-one in the backward slice corrupts.
const ids = [
"aaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbb",
"cccccccccccccccccccccccc",
"dddddddddddddddddddddddd",
"eeeeeeeeeeeeeeeeeeeeeeee",
];
const base = Date.now() - 60 * 60 * 1000; // relative, so fixtures never age out of the default 7d window
for (let i = 0; i < ids.length; i++) {
await prisma.taskRun.create({
data: {
id: ids[i],
createdAt: new Date(base + (ids.length - 1 - i) * 1000),
friendlyId: `run_${ids[i]}`,
taskIdentifier: "my-task",
payload: JSON.stringify({ foo: "bar" }),
traceId: `trace_${i}`,
spanId: `span_${i}`,
queue: "test",
runtimeEnvironmentId: runtimeEnvironment.id,
projectId: project.id,
organizationId: organization.id,
environmentType: "DEVELOPMENT",
engine: "V2",
},
});
}
await setTimeout(1000);
const runsRepository = new RunsRepository({ prisma, clickhouse });
const baseOptions = {
projectId: project.id,
environmentId: runtimeEnvironment.id,
organizationId: organization.id,
};
const sortIds = (page: string[]) => page.slice().sort();
// Walk every forward page, capturing the run ids and the previousCursor.
const forwardPages: Array<{ ids: string[]; previousCursor: string | null }> = [];
let cursor: string | undefined = undefined;
for (let guard = 0; guard < 20; guard++) {
const page = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor, direction: cursor ? "forward" : undefined },
});
forwardPages.push({
ids: page.runs.map((r) => r.id),
previousCursor: page.pagination.previousCursor,
});
if (!page.pagination.nextCursor) break;
cursor = page.pagination.nextCursor;
}
// Forward pagination itself must cover every run exactly once, in 3 pages.
expect(forwardPages.flatMap((p) => p.ids).sort()).toEqual(ids.slice().sort());
expect(forwardPages).toHaveLength(3);
// Walk backward from the last page. Each backward page must equal the
// corresponding forward page exactly — no row from an adjacent page
// bleeding in (the straddle bug returned e.g. {b,c} instead of {c,d}).
const backwardPages: string[][] = [];
let backCursor: string | null = forwardPages[forwardPages.length - 1].previousCursor;
for (let guard = 0; guard < 20 && backCursor; guard++) {
const page = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor: backCursor, direction: "backward" },
});
backwardPages.push(page.runs.map((r) => r.id));
backCursor = page.pagination.previousCursor;
}
const expectedBackward = forwardPages
.slice(0, -1)
.reverse()
.map((p) => sortIds(p.ids));
expect(backwardPages.map(sortIds)).toEqual(expectedBackward);
// And the full backward traversal (last page + everything walked back to
// the start) covers every run exactly once.
const seen = [...forwardPages[forwardPages.length - 1].ids, ...backwardPages.flat()];
expect(seen.slice().sort()).toEqual(ids.slice().sort());
expect(new Set(seen).size).toBe(ids.length);
}
);
replicationContainerTest(
"a partial backward page still exposes a forward cursor (no stranding)",
async ({ clickhouseContainer, redisOptions, postgresContainer, prisma }) => {
const { clickhouse } = await setupClickhouseReplication({
prisma,
databaseUrl: postgresContainer.getConnectionUri(),
clickhouseUrl: clickhouseContainer.getConnectionUrl(),
redisOptions,
});
const organization = await prisma.organization.create({
data: { title: "test", slug: "test" },
});
const project = await prisma.project.create({
data: {
name: "test",
slug: "test",
organizationId: organization.id,
externalRef: "test",
},
});
const runtimeEnvironment = await prisma.runtimeEnvironment.create({
data: {
slug: "test",
type: "DEVELOPMENT",
projectId: project.id,
organizationId: organization.id,
apiKey: "test",
pkApiKey: "test",
shortcode: "test",
},
});
// Three runs; created_at descending order is [a, b, c] (a newest).
const ids = [
"aaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbb",
"cccccccccccccccccccccccc",
];
const base = Date.now() - 60 * 60 * 1000; // relative, so fixtures never age out of the default 7d window
for (let i = 0; i < ids.length; i++) {
await prisma.taskRun.create({
data: {
id: ids[i],
createdAt: new Date(base + (ids.length - 1 - i) * 1000),
friendlyId: `run_${ids[i]}`,
taskIdentifier: "my-task",
payload: JSON.stringify({ foo: "bar" }),
traceId: `trace_${i}`,
spanId: `span_${i}`,
queue: "test",
runtimeEnvironmentId: runtimeEnvironment.id,
projectId: project.id,
organizationId: organization.id,
environmentType: "DEVELOPMENT",
engine: "V2",
},
});
}
await setTimeout(1000);
const runsRepository = new RunsRepository({ prisma, clickhouse });
const baseOptions = {
projectId: project.id,
environmentId: runtimeEnvironment.id,
organizationId: organization.id,
};
// First page (size 2) = {a, b}; its nextCursor sits at b's boundary.
const first = await runsRepository.listRuns({ ...baseOptions, page: { size: 2 } });
expect(first.runs.map((r) => r.id).sort()).toEqual([
"aaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbb",
]);
// Paging backward from that cursor lands on a *partial* page — just the
// newest run {a}, with no rows before it (hasMore === false).
const back = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor: first.pagination.nextCursor!, direction: "backward" },
});
expect(back.runs.map((r) => r.id)).toEqual(["aaaaaaaaaaaaaaaaaaaaaaaa"]);
// A partial backward page must still expose a forward cursor, or the user
// is stranded with no way to page back down.
expect(back.pagination.nextCursor).toBeTruthy();
// And paging forward from it reaches the remaining runs.
const forward = await runsRepository.listRuns({
...baseOptions,
page: { size: 2, cursor: back.pagination.nextCursor!, direction: "forward" },
});
expect(forward.runs.map((r) => r.id).sort()).toEqual([
"bbbbbbbbbbbbbbbbbbbbbbbb",
"cccccccccccccccccccccccc",
]);
}
);
});