2025-03-02 20:43:01 +02:00
|
|
|
import { describe, expect, it } from "vitest";
|
2025-03-02 19:39:06 +02:00
|
|
|
import becca from "../becca/becca.js";
|
|
|
|
import sql from "./sql.js";
|
|
|
|
import migration from "./migration.js";
|
|
|
|
import cls from "./cls.js";
|
|
|
|
|
|
|
|
describe("Migration", () => {
|
|
|
|
it("migrates from v214", async () => {
|
2025-03-02 20:43:01 +02:00
|
|
|
await new Promise<void>((resolve) => {
|
2025-03-02 19:39:06 +02:00
|
|
|
cls.init(async () => {
|
|
|
|
sql.rebuildIntegrationTestDatabase("test/db/document_v214.db");
|
|
|
|
await migration.migrateIfNecessary();
|
2025-03-02 20:43:01 +02:00
|
|
|
expect(sql.getValue("SELECT count(*) FROM blobs")).toBe(116);
|
2025-03-02 19:39:06 +02:00
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|