@remit/drizzle-service 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/drizzle-service",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Drizzle ORM service parameterized by dialect (Postgres / SQLite)",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -1,10 +1,38 @@
1
1
  import assert from "node:assert/strict";
2
2
  import { randomUUID } from "node:crypto";
3
+ import { readFileSync } from "node:fs";
3
4
  import { after, before, describe, test } from "node:test";
5
+ import Database from "better-sqlite3";
6
+ import { drizzle } from "drizzle-orm/better-sqlite3";
4
7
  import { mailboxTable } from "../schema.js";
5
8
  import { createSqliteTestDb } from "../test-db-sqlite.js";
6
9
  import { MailboxRepo } from "./i4-mailbox.js";
7
10
 
11
+ /**
12
+ * The `mailbox` DDL as it actually ships, read from the committed migration
13
+ * rather than pushed from the drizzle table objects.
14
+ *
15
+ * The two disagree: the table object declares `highest_modseq` as text, the
16
+ * shipped migration still declares it `integer` (reader#73). Every other
17
+ * SQLite test in this package runs against the pushed shape, so none of them
18
+ * has ever exercised the one deployments run on — and SQLite hands a column
19
+ * with numeric affinity back as a number regardless of what the schema says.
20
+ * Reading the committed file keeps this test honest as the migration changes.
21
+ */
22
+ const shippedMailboxDdl = (): string => {
23
+ const sql = readFileSync(
24
+ new URL(
25
+ "../../../../deploy/vps/migrations-sqlite/entities/0000_happy_roland_deschain.sql",
26
+ import.meta.url,
27
+ ),
28
+ "utf8",
29
+ );
30
+ const match = sql.match(/CREATE TABLE `mailbox` \([\s\S]*?\n\);/);
31
+ if (!match)
32
+ throw new Error("mailbox DDL not found in the committed migration");
33
+ return match[0];
34
+ };
35
+
8
36
  function makeMailboxInput(accountId: string, fullPath = "INBOX") {
9
37
  return {
10
38
  accountId,
@@ -61,3 +89,51 @@ describe("MailboxRepo (sqlite)", () => {
61
89
  assert.equal(reread.highestModseq, "9007199254740993");
62
90
  });
63
91
  });
92
+
93
+ describe("MailboxRepo (sqlite, shipped column shape)", () => {
94
+ let close: () => Promise<void>;
95
+ let repo: MailboxRepo;
96
+
97
+ before(async () => {
98
+ const sqlite = new Database(":memory:");
99
+ sqlite.exec(shippedMailboxDdl());
100
+ const db = drizzle(sqlite, { schema: { mailbox: mailboxTable } });
101
+ repo = new MailboxRepo(db as never);
102
+ close = async () => {
103
+ sqlite.close();
104
+ };
105
+ });
106
+
107
+ after(async () => {
108
+ await close();
109
+ });
110
+
111
+ test("reads the sync cursor back as a string, whatever the column stores", async () => {
112
+ // A plain-digit cursor lands in a column with numeric affinity and comes
113
+ // back a number. Callers compare the value they wrote against the value
114
+ // they read — `"900" === 900` is false — so an unnormalised read makes a
115
+ // stalled cursor undetectable.
116
+ const accountId = randomUUID();
117
+ const created = await repo.create({
118
+ ...makeMailboxInput(accountId),
119
+ highestModseq: "900",
120
+ });
121
+
122
+ assert.strictEqual(created.highestModseq, "900");
123
+
124
+ const fetched = await repo.get(accountId, created.mailboxId);
125
+ assert.strictEqual(fetched.highestModseq, "900");
126
+ assert.strictEqual(fetched.highestModseq === "900", true);
127
+ });
128
+
129
+ test("keeps a resumable cursor intact through the same column", async () => {
130
+ const accountId = randomUUID();
131
+ const created = await repo.create({
132
+ ...makeMailboxInput(accountId, "Archive"),
133
+ highestModseq: "900:149",
134
+ });
135
+
136
+ const fetched = await repo.get(accountId, created.mailboxId);
137
+ assert.strictEqual(fetched.highestModseq, "900:149");
138
+ });
139
+ });
@@ -33,7 +33,15 @@ export function rowToMailbox(
33
33
  fullPath: row.fullPath,
34
34
  uidValidity: row.uidValidity,
35
35
  uidNext: row.uidNext,
36
- highestModseq: row.highestModseq,
36
+ // SQLite returns a column with numeric affinity as a number whatever the
37
+ // schema declares, and the shipped self-host migration still declares
38
+ // this one `integer` (reader#73). A cursor read back as a number is not
39
+ // merely awkward to parse: `"900" === 900` is false, so code comparing
40
+ // the value it just wrote against the value it read would conclude
41
+ // nothing had changed — which is how a stalled cursor goes unreported.
42
+ // Normalising here means every consumer sees the declared type instead
43
+ // of each one guarding separately.
44
+ highestModseq: String(row.highestModseq),
37
45
  messageCount: row.messageCount,
38
46
  unseenCount: row.unseenCount,
39
47
  deletedCount: row.deletedCount,