mirror of
https://github.com/tiennm99/miti99bot-js.git
synced 2026-05-24 17:35:17 +00:00
99cd8449ec
Replaces the originally-planned SQL-pattern dispatcher with a direct refactor:
trading/history.js + retention.js call MongoTradesStore methods explicitly
instead of routing strings through a regex dispatcher. Cleaner abstraction;
eliminates the "7th SQL statement silently breaks" risk flagged in code-review.
- src/db/mongo-trades-store.js: 6 explicit methods (insert, byUser,
distinctUsers, oldRowsForUser, oldRows, deleteByIds). Lazy index init
for (user_id, ts desc), (ts desc), and sparse (legacy_id).
- src/db/mongo-sql-store.js: thin SqlStore shim returning {changes:1,
last_row_id:0} (number, NOT hex) to satisfy the existing
tests/db/create-sql-store.test.js:48-52 contract. Exists purely for
factory branching; trading code calls MongoTradesStore directly.
Unsupported SQL throws loud.
- trading/history.js + retention.js + index.js: accept optional
tradesStore in init args. Falls back to existing D1 sql path when
tradesStore absent — keeps trading working on D1 until Phase 04
wires dual-write.
- legacy_id: null on runtime inserts. Sparse index + field reserved
for backfill (Phase 05) to preserve original D1 integer IDs for
historical join-ability.
Pre-refactor grep gates (all PASS):
- exactly 6 SQL statements in src/modules/trading/
- zero arithmetic on .id (.id [+-*/<>])
- last_row_id consumed by zero callers in trading
Tests: 529 → 577 (+48). Lint clean.
297 lines
11 KiB
JavaScript
297 lines
11 KiB
JavaScript
/**
|
|
* @file Tests for trading/retention — trimTradesHandler per-user and global caps.
|
|
*
|
|
* Uses enhanced fake-d1 which supports:
|
|
* - SELECT DISTINCT user_id
|
|
* - SELECT id ... WHERE user_id = ? ORDER BY ts DESC LIMIT -1 OFFSET N
|
|
* - SELECT id ... ORDER BY ts DESC LIMIT -1 OFFSET N
|
|
* - DELETE FROM ... WHERE id IN (?, ...)
|
|
*
|
|
* Also covers the MongoTradesStore path added in Phase 03.
|
|
*/
|
|
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { createSqlStore } from "../../../src/db/create-sql-store.js";
|
|
import { MongoTradesStore } from "../../../src/db/mongo-trades-store.js";
|
|
import { trimTradesHandler } from "../../../src/modules/trading/retention.js";
|
|
import { makeFakeD1 } from "../../fakes/fake-d1.js";
|
|
import { makeFakeMongo } from "../../fakes/fake-mongo.js";
|
|
|
|
// ─── helpers ─────────────────────────────────────────────────────────────────
|
|
|
|
/** Build a fresh sql store backed by a new fake D1. */
|
|
function makeTestSql() {
|
|
const fakeDb = makeFakeD1();
|
|
const sql = createSqlStore("trading", { DB: fakeDb });
|
|
return { fakeDb, sql };
|
|
}
|
|
|
|
/**
|
|
* Build N trade rows for a given user_id.
|
|
* ts increases from 1..N so that the LAST row (index N-1) has the highest ts
|
|
* and is therefore the "newest".
|
|
*
|
|
* @param {number} userId
|
|
* @param {number} count
|
|
* @param {number} [idOffset=0] — added to each id to keep ids globally unique.
|
|
* @returns {object[]}
|
|
*/
|
|
function makeTrades(userId, count, idOffset = 0) {
|
|
return Array.from({ length: count }, (_, i) => ({
|
|
id: idOffset + i + 1,
|
|
user_id: userId,
|
|
symbol: "TCB",
|
|
side: "buy",
|
|
qty: 1,
|
|
price_vnd: 1000,
|
|
ts: i + 1, // ts=1 is oldest, ts=count is newest
|
|
}));
|
|
}
|
|
|
|
/** Convenience: run trimTradesHandler with muted console output. */
|
|
async function runTrim(sql, caps) {
|
|
const spy = vi.spyOn(console, "log").mockImplementation(() => {});
|
|
try {
|
|
await trimTradesHandler({}, { sql }, caps);
|
|
} finally {
|
|
spy.mockRestore();
|
|
}
|
|
}
|
|
|
|
/** Return all rows remaining in trading_trades via the fake table map. */
|
|
function allRows(fakeDb) {
|
|
return fakeDb.tables.get("trading_trades") ?? [];
|
|
}
|
|
|
|
// ─── sql=null guard ───────────────────────────────────────────────────────────
|
|
|
|
describe("trimTradesHandler — sql=null", () => {
|
|
it("returns without throwing when sql is null", async () => {
|
|
const logSpy = vi.spyOn(console, "log").mockImplementation(() => {});
|
|
await expect(trimTradesHandler({}, { sql: null })).resolves.toBeUndefined();
|
|
logSpy.mockRestore();
|
|
});
|
|
});
|
|
|
|
// ─── per-user trim ────────────────────────────────────────────────────────────
|
|
|
|
describe("trimTradesHandler — per-user trim", () => {
|
|
it("removes rows beyond cap, keeping newest", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
// 5 trades for user 1, cap=3 → keeps ts=3,4,5 (newest 3), deletes ts=1,2.
|
|
fakeDb.seed("trading_trades", makeTrades(1, 5));
|
|
|
|
await runTrim(sql, { perUserCap: 3, globalCap: 1000 });
|
|
|
|
const remaining = allRows(fakeDb);
|
|
expect(remaining).toHaveLength(3);
|
|
// Remaining should be the 3 rows with highest ts.
|
|
const tsSorted = remaining.map((r) => r.ts).sort((a, b) => b - a);
|
|
expect(tsSorted).toEqual([5, 4, 3]);
|
|
});
|
|
|
|
it("leaves users with rows <= cap untouched", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
// User 2 has 2 trades, cap=3 → none deleted.
|
|
fakeDb.seed("trading_trades", makeTrades(2, 2));
|
|
|
|
await runTrim(sql, { perUserCap: 3, globalCap: 1000 });
|
|
|
|
expect(allRows(fakeDb)).toHaveLength(2);
|
|
});
|
|
|
|
it("handles exactly cap rows — no deletion", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
fakeDb.seed("trading_trades", makeTrades(1, 3));
|
|
|
|
await runTrim(sql, { perUserCap: 3, globalCap: 1000 });
|
|
|
|
expect(allRows(fakeDb)).toHaveLength(3);
|
|
});
|
|
|
|
it("trims multiple users independently", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
// User 1: 5 trades (cap 3 → keep 3). User 2: 2 trades (cap 3 → keep 2).
|
|
fakeDb.seed("trading_trades", [...makeTrades(1, 5, 0), ...makeTrades(2, 2, 5)]);
|
|
|
|
await runTrim(sql, { perUserCap: 3, globalCap: 1000 });
|
|
|
|
const remaining = allRows(fakeDb);
|
|
// 3 from user1 + 2 from user2 = 5.
|
|
expect(remaining).toHaveLength(5);
|
|
const user1 = remaining.filter((r) => r.user_id === 1);
|
|
const user2 = remaining.filter((r) => r.user_id === 2);
|
|
expect(user1).toHaveLength(3);
|
|
expect(user2).toHaveLength(2);
|
|
});
|
|
});
|
|
|
|
// ─── global FIFO trim ─────────────────────────────────────────────────────────
|
|
|
|
describe("trimTradesHandler — global trim", () => {
|
|
it("keeps only globalCap newest rows across all users", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
// 15 trades total: user1=8, user2=7. globalCap=10 → keep 10 newest.
|
|
const trades = [...makeTrades(1, 8, 0), ...makeTrades(2, 7, 8)];
|
|
// Re-assign ts values to be globally unique so ordering is deterministic.
|
|
trades.forEach((t, i) => {
|
|
t.ts = i + 1;
|
|
});
|
|
fakeDb.seed("trading_trades", trades);
|
|
|
|
await runTrim(sql, { perUserCap: 1000, globalCap: 10 });
|
|
|
|
expect(allRows(fakeDb)).toHaveLength(10);
|
|
// All remaining rows should have the top-10 ts values (6..15).
|
|
const tsSorted = allRows(fakeDb)
|
|
.map((r) => r.ts)
|
|
.sort((a, b) => a - b);
|
|
expect(tsSorted).toEqual([6, 7, 8, 9, 10, 11, 12, 13, 14, 15]);
|
|
});
|
|
|
|
it("leaves rows untouched when count <= globalCap", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
fakeDb.seed("trading_trades", makeTrades(1, 5));
|
|
|
|
await runTrim(sql, { perUserCap: 1000, globalCap: 10 });
|
|
|
|
expect(allRows(fakeDb)).toHaveLength(5);
|
|
});
|
|
});
|
|
|
|
// ─── combined pass ────────────────────────────────────────────────────────────
|
|
|
|
describe("trimTradesHandler — combined per-user + global", () => {
|
|
it("applies per-user first, then global", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
// User 1: 6 trades (perUserCap=4 → trim to 4).
|
|
// User 2: 6 trades (perUserCap=4 → trim to 4).
|
|
// After per-user: 8 rows total.
|
|
// globalCap=6 → trim to 6.
|
|
const trades = [...makeTrades(1, 6, 0), ...makeTrades(2, 6, 6)];
|
|
// Assign globally monotone ts values.
|
|
trades.forEach((t, i) => {
|
|
t.ts = i + 1;
|
|
});
|
|
fakeDb.seed("trading_trades", trades);
|
|
|
|
await runTrim(sql, { perUserCap: 4, globalCap: 6 });
|
|
|
|
expect(allRows(fakeDb)).toHaveLength(6);
|
|
});
|
|
});
|
|
|
|
// ─── idempotence ──────────────────────────────────────────────────────────────
|
|
|
|
describe("trimTradesHandler — idempotence", () => {
|
|
it("second run is a no-op when already within caps", async () => {
|
|
const { fakeDb, sql } = makeTestSql();
|
|
fakeDb.seed("trading_trades", makeTrades(1, 5));
|
|
|
|
await runTrim(sql, { perUserCap: 3, globalCap: 10 });
|
|
const afterFirst = allRows(fakeDb).length;
|
|
|
|
await runTrim(sql, { perUserCap: 3, globalCap: 10 });
|
|
const afterSecond = allRows(fakeDb).length;
|
|
|
|
expect(afterFirst).toBe(afterSecond);
|
|
});
|
|
});
|
|
|
|
// ─── MongoTradesStore path (Phase 03) ────────────────────────────────────────
|
|
|
|
/** Build a MongoTradesStore backed by a fresh fake Mongo db. */
|
|
function makeTestTradesStore() {
|
|
const fakeDb = makeFakeMongo();
|
|
const tradesStore = new MongoTradesStore({}, fakeDb);
|
|
return { tradesStore };
|
|
}
|
|
|
|
/** Convenience: run trimTradesHandler with tradesStore, muted console output. */
|
|
async function runTrimMongo(tradesStore, caps) {
|
|
const spy = vi.spyOn(console, "log").mockImplementation(() => {});
|
|
try {
|
|
await trimTradesHandler({}, { sql: null, tradesStore }, caps);
|
|
} finally {
|
|
spy.mockRestore();
|
|
}
|
|
}
|
|
|
|
describe("trimTradesHandler — tradesStore path (null sql)", () => {
|
|
it("skips when tradesStore is null and sql is null", async () => {
|
|
const logSpy = vi.spyOn(console, "log").mockImplementation(() => {});
|
|
await expect(trimTradesHandler({}, { sql: null, tradesStore: null })).resolves.toBeUndefined();
|
|
logSpy.mockRestore();
|
|
});
|
|
|
|
it("per-user trim keeps newest rows via MongoTradesStore", async () => {
|
|
const { tradesStore } = makeTestTradesStore();
|
|
for (let i = 1; i <= 5; i++) {
|
|
await tradesStore.insert({
|
|
userId: 1,
|
|
symbol: "TCB",
|
|
side: "buy",
|
|
qty: 1,
|
|
priceVnd: 1,
|
|
ts: i,
|
|
});
|
|
}
|
|
await runTrimMongo(tradesStore, { perUserCap: 3, globalCap: 1000 });
|
|
const remaining = await tradesStore.byUser(1, 100);
|
|
expect(remaining).toHaveLength(3);
|
|
expect(remaining.map((t) => t.ts)).toEqual([5, 4, 3]);
|
|
});
|
|
|
|
it("global trim keeps newest rows across all users via MongoTradesStore", async () => {
|
|
const { tradesStore } = makeTestTradesStore();
|
|
for (let i = 1; i <= 8; i++) {
|
|
await tradesStore.insert({
|
|
userId: 1,
|
|
symbol: "TCB",
|
|
side: "buy",
|
|
qty: 1,
|
|
priceVnd: 1,
|
|
ts: i,
|
|
});
|
|
}
|
|
for (let i = 9; i <= 15; i++) {
|
|
await tradesStore.insert({
|
|
userId: 2,
|
|
symbol: "VNM",
|
|
side: "sell",
|
|
qty: 1,
|
|
priceVnd: 1,
|
|
ts: i,
|
|
});
|
|
}
|
|
await runTrimMongo(tradesStore, { perUserCap: 1000, globalCap: 10 });
|
|
|
|
const u1 = await tradesStore.byUser(1, 100);
|
|
const u2 = await tradesStore.byUser(2, 100);
|
|
expect(u1.length + u2.length).toBe(10);
|
|
});
|
|
|
|
it("uses tradesStore path even when sql is provided alongside tradesStore", async () => {
|
|
const { tradesStore } = makeTestTradesStore();
|
|
for (let i = 1; i <= 5; i++) {
|
|
await tradesStore.insert({
|
|
userId: 1,
|
|
symbol: "TCB",
|
|
side: "buy",
|
|
qty: 1,
|
|
priceVnd: 1,
|
|
ts: i,
|
|
});
|
|
}
|
|
// Provide a sql too — tradesStore must win.
|
|
const fakeD1 = makeFakeD1();
|
|
const sql = createSqlStore("trading", { DB: fakeD1 });
|
|
const logSpy = vi.spyOn(console, "log").mockImplementation(() => {});
|
|
await trimTradesHandler({}, { sql, tradesStore }, { perUserCap: 3, globalCap: 1000 });
|
|
logSpy.mockRestore();
|
|
// D1 must not have been touched.
|
|
expect(fakeD1.runLog).toHaveLength(0);
|
|
expect(fakeD1.queryLog).toHaveLength(0);
|
|
});
|
|
});
|