mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-24 06:33:01 -04:00
450 lines
19 KiB
TypeScript
450 lines
19 KiB
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import { $ } from "bun"
|
|
import { fileURLToPath } from "url"
|
|
import path from "path"
|
|
import { SqliteClient } from "@effect/sql-sqlite-bun"
|
|
import { EffectDrizzleSqlite } from "@opencode-ai/core/database/drizzle"
|
|
import { Effect, Layer } from "effect"
|
|
import { sql } from "drizzle-orm"
|
|
import { DatabaseMigration } from "@opencode-ai/core/database/migration"
|
|
import { migrations } from "@opencode-ai/core/database/migration.gen"
|
|
import { Database } from "@opencode-ai/core/database/database"
|
|
import { tmpdir } from "./fixture/tmpdir"
|
|
import type { SqlClient } from "effect/unstable/sql/SqlClient"
|
|
import legacyCredentialsMigration from "@opencode-ai/core/database/migration/20260805200742_import_legacy_credentials"
|
|
import worktreeMigration from "@opencode-ai/core/database/migration/20260812213948_worktree"
|
|
import previousV2Migration from "@opencode-ai/core/database/migration/20260804233008_loose_psylocke"
|
|
import workspaceMigration from "@opencode-ai/core/database/migration/20260808023530_workspace_domain"
|
|
import executionClaimsMigration from "@opencode-ai/core/database/migration/20260811161259_execution_claim_attempts"
|
|
import sessionInboxMigration from "@opencode-ai/core/database/migration/20260812181746_session_inbox"
|
|
import { Global } from "@opencode-ai/util/global"
|
|
|
|
const run = <A, E>(
|
|
effect: Effect.Effect<A, E, SqlClient | Global.Service>,
|
|
global = Global.make({ data: path.join(process.cwd(), ".test-data") }),
|
|
) =>
|
|
Effect.runPromise(
|
|
effect.pipe(
|
|
Effect.provideService(Global.Service, global),
|
|
Effect.provide(SqliteClient.layer({ filename: ":memory:", disableWAL: true })),
|
|
Effect.scoped,
|
|
),
|
|
)
|
|
|
|
const makeDb = EffectDrizzleSqlite.makeWithDefaults()
|
|
|
|
describe("DatabaseMigration", () => {
|
|
test("serializes concurrent embedded initialization for one database path", async () => {
|
|
await using tmp = await tmpdir()
|
|
const filename = path.join(tmp.path, "embedded.sqlite")
|
|
|
|
await Effect.runPromise(
|
|
Effect.all(
|
|
[Database.layer({ path: filename }), Database.layer({ path: filename })].map((layer) =>
|
|
Effect.scoped(Layer.build(layer)),
|
|
),
|
|
{ concurrency: "unbounded" },
|
|
).pipe(Effect.provideService(Global.Service, Global.make({ data: tmp.path }))),
|
|
)
|
|
})
|
|
|
|
if (process.platform === "linux") {
|
|
test("declared schema has no ungenerated migrations", async () => {
|
|
const result = await $`bun ${fileURLToPath(new URL("../script/migration.ts", import.meta.url))} --check`
|
|
.quiet()
|
|
.nothrow()
|
|
expect(result.exitCode, result.stderr.toString()).toBe(0)
|
|
expect(result.stdout.toString()).toContain("No schema changes, nothing to migrate")
|
|
}, 30_000)
|
|
}
|
|
|
|
test("bootstraps the current schema and records the migration registry", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* DatabaseMigration.apply(db)
|
|
|
|
expect(yield* db.get(sql`SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'session_v2'`)).toEqual(
|
|
{
|
|
name: "session_v2",
|
|
},
|
|
)
|
|
expect(
|
|
yield* db.get(sql`SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'session_pending'`),
|
|
).toEqual({ name: "session_pending" })
|
|
expect(yield* db.get(sql`SELECT count(*) AS count FROM migration`)).toEqual({ count: migrations.length })
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("rejects a non-empty database without a session table", async () => {
|
|
await expect(
|
|
run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`CREATE TABLE unrelated (id text PRIMARY KEY)`)
|
|
yield* DatabaseMigration.apply(db)
|
|
}),
|
|
),
|
|
).rejects.toThrow("Database is not empty and has no session table")
|
|
})
|
|
|
|
test("bootstraps alongside underscore-prefixed embedder tables", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`CREATE TABLE _embedder_state (id text PRIMARY KEY)`)
|
|
yield* DatabaseMigration.apply(db)
|
|
expect(yield* db.get(sql`SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'session_v2'`)).toEqual(
|
|
{ name: "session_v2" },
|
|
)
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("applies generic migrations once and records their order", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`CREATE TABLE session (id text PRIMARY KEY)`)
|
|
const input = [
|
|
{
|
|
id: "first",
|
|
up: (tx: Parameters<Parameters<typeof db.transaction>[0]>[0]) =>
|
|
tx.run(sql`CREATE TABLE applied (id text PRIMARY KEY)`),
|
|
},
|
|
{
|
|
id: "second",
|
|
up: (tx: Parameters<Parameters<typeof db.transaction>[0]>[0]) =>
|
|
tx.run(sql`INSERT INTO applied (id) VALUES ('second')`),
|
|
},
|
|
]
|
|
|
|
yield* DatabaseMigration.applyOnly(db, input)
|
|
yield* DatabaseMigration.applyOnly(db, input)
|
|
|
|
expect(yield* db.all(sql`SELECT id FROM applied`)).toEqual([{ id: "second" }])
|
|
expect(yield* db.all(sql`SELECT id FROM migration ORDER BY time_completed, id`)).toEqual([
|
|
{ id: "first" },
|
|
{ id: "second" },
|
|
])
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("preserves previous V2 state through the current migration lineage", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`PRAGMA foreign_keys = ON`)
|
|
yield* db.run(sql`CREATE TABLE migration (id text PRIMARY KEY, time_completed integer NOT NULL)`)
|
|
yield* db.run(sql`
|
|
INSERT INTO migration (id, time_completed)
|
|
VALUES ('20260730195856_optional_session_title', 1)
|
|
`)
|
|
yield* db.run(sql`CREATE TABLE project (id text PRIMARY KEY)`)
|
|
yield* db.run(sql`
|
|
CREATE TABLE project_directory (
|
|
project_id text NOT NULL,
|
|
directory text NOT NULL,
|
|
type text,
|
|
strategy text,
|
|
time_created integer NOT NULL,
|
|
PRIMARY KEY (project_id, directory)
|
|
)
|
|
`)
|
|
yield* db.run(sql`
|
|
CREATE TABLE workspace (
|
|
id text PRIMARY KEY,
|
|
type text NOT NULL,
|
|
name text NOT NULL,
|
|
project_id text NOT NULL,
|
|
time_used integer NOT NULL
|
|
)
|
|
`)
|
|
yield* db.run(sql`
|
|
CREATE TABLE session (
|
|
id text PRIMARY KEY,
|
|
project_id text NOT NULL REFERENCES project(id) ON DELETE CASCADE,
|
|
workspace_id text,
|
|
parent_id text,
|
|
time_suspended integer
|
|
)
|
|
`)
|
|
yield* db.run(sql`CREATE INDEX session_project_idx ON session (project_id)`)
|
|
yield* db.run(sql`CREATE INDEX session_workspace_idx ON session (workspace_id)`)
|
|
yield* db.run(sql`CREATE INDEX session_parent_idx ON session (parent_id)`)
|
|
yield* db.run(
|
|
sql`CREATE INDEX session_time_suspended_idx ON session (time_suspended) WHERE "session"."time_suspended" IS NOT NULL`,
|
|
)
|
|
yield* db.run(sql`
|
|
CREATE TABLE session_message (
|
|
id text PRIMARY KEY,
|
|
session_id text NOT NULL REFERENCES session(id) ON DELETE CASCADE,
|
|
data text NOT NULL
|
|
)
|
|
`)
|
|
yield* db.run(sql`CREATE TABLE message (id text PRIMARY KEY, session_id text NOT NULL)`)
|
|
yield* db.run(sql`
|
|
CREATE TABLE session_pending (
|
|
id text PRIMARY KEY,
|
|
session_id text NOT NULL REFERENCES session(id) ON DELETE CASCADE
|
|
)
|
|
`)
|
|
yield* db.run(sql`CREATE TABLE event_sequence (aggregate_id text PRIMARY KEY, seq integer NOT NULL)`)
|
|
yield* db.run(sql`
|
|
CREATE TABLE event (
|
|
id text PRIMARY KEY,
|
|
aggregate_id text NOT NULL REFERENCES event_sequence(aggregate_id) ON DELETE CASCADE,
|
|
seq integer NOT NULL,
|
|
created integer NOT NULL,
|
|
type text NOT NULL,
|
|
data text NOT NULL
|
|
)
|
|
`)
|
|
yield* db.run(sql`CREATE TABLE data_migration (name text PRIMARY KEY)`)
|
|
yield* db.run(sql`INSERT INTO project VALUES ('project')`)
|
|
yield* db.run(sql`INSERT INTO project_directory VALUES ('project', '/repo', 'main', NULL, 1)`)
|
|
yield* db.run(sql`INSERT INTO session VALUES ('session', 'project', NULL, NULL, NULL)`)
|
|
yield* db.run(sql`INSERT INTO session_message VALUES ('message', 'session', '{"text":"preserved"}')`)
|
|
yield* db.run(sql`INSERT INTO session_pending VALUES ('pending', 'session')`)
|
|
yield* db.run(sql`INSERT INTO event_sequence VALUES ('session', 41)`)
|
|
yield* db.run(sql`INSERT INTO event VALUES ('event', 'session', 41, 1, 'session.text.ended.1', '{}')`)
|
|
|
|
yield* DatabaseMigration.applyOnly(db, [
|
|
previousV2Migration,
|
|
workspaceMigration,
|
|
executionClaimsMigration,
|
|
sessionInboxMigration,
|
|
worktreeMigration,
|
|
])
|
|
|
|
expect(yield* db.get(sql`SELECT id, resume_attempts FROM session_v2`)).toEqual({
|
|
id: "session",
|
|
resume_attempts: 0,
|
|
})
|
|
expect(yield* db.get(sql`SELECT id, data FROM session_message`)).toEqual({
|
|
id: "message",
|
|
data: '{"text":"preserved"}',
|
|
})
|
|
expect(yield* db.get(sql`SELECT id FROM session_pending`)).toEqual({ id: "pending" })
|
|
expect(yield* db.get(sql`SELECT seq FROM event_sequence`)).toEqual({ seq: 41 })
|
|
expect(yield* db.get(sql`SELECT id, seq FROM event`)).toEqual({ id: "event", seq: 41 })
|
|
expect(
|
|
yield* db.get(sql`SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'session'`),
|
|
).toBeUndefined()
|
|
expect(yield* db.get(sql`SELECT directory FROM worktree`)).toEqual({ directory: "/repo" })
|
|
expect(yield* db.all<{ table: string }>(sql`PRAGMA foreign_key_list(session_message)`)).toContainEqual(
|
|
expect.objectContaining({ table: "session_v2" }),
|
|
)
|
|
expect(yield* db.all<{ table: string }>(sql`PRAGMA foreign_key_list(session_pending)`)).toContainEqual(
|
|
expect.objectContaining({ table: "session_v2" }),
|
|
)
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("rejects previous V2 databases with V1-only session history", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`CREATE TABLE migration (id text PRIMARY KEY, time_completed integer NOT NULL)`)
|
|
yield* db.run(sql`
|
|
INSERT INTO migration (id, time_completed)
|
|
VALUES ('20260730195856_optional_session_title', 1)
|
|
`)
|
|
yield* db.run(sql`CREATE TABLE session (id text PRIMARY KEY)`)
|
|
yield* db.run(sql`CREATE TABLE session_message (id text PRIMARY KEY, session_id text NOT NULL)`)
|
|
yield* db.run(sql`CREATE TABLE message (id text PRIMARY KEY, session_id text NOT NULL)`)
|
|
yield* db.run(sql`INSERT INTO session VALUES ('session')`)
|
|
yield* db.run(sql`INSERT INTO message VALUES ('message', 'session')`)
|
|
|
|
expect((yield* Effect.exit(DatabaseMigration.applyOnly(db, [previousV2Migration])))._tag).toBe("Failure")
|
|
expect(yield* db.get(sql`SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'session'`)).toEqual({
|
|
name: "session",
|
|
})
|
|
expect(yield* db.get(sql`SELECT id FROM migration WHERE id = ${previousV2Migration.id}`)).toBeUndefined()
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("copies project directories into worktrees without removing the old table", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`CREATE TABLE project (id text PRIMARY KEY)`)
|
|
yield* db.run(
|
|
sql`CREATE TABLE project_directory (project_id text NOT NULL, directory text NOT NULL, type text, strategy text, time_created integer NOT NULL, PRIMARY KEY (project_id, directory))`,
|
|
)
|
|
yield* db.run(
|
|
sql`INSERT INTO project_directory (project_id, directory, type, strategy, time_created) VALUES ('project', '/root', 'main', NULL, 1), ('project', '/legacy', 'git_worktree', NULL, 2), ('project', '/strategy', NULL, 'git_worktree', 3), ('project', '/custom', NULL, 'acme/snapshot', 4)`,
|
|
)
|
|
|
|
yield* DatabaseMigration.applyOnly(db, [worktreeMigration])
|
|
|
|
expect(yield* db.all(sql`SELECT directory, strategy FROM worktree ORDER BY directory`)).toEqual([
|
|
{ directory: "/custom", strategy: "acme/snapshot" },
|
|
{ directory: "/legacy", strategy: "git" },
|
|
{ directory: "/root", strategy: null },
|
|
{ directory: "/strategy", strategy: "git" },
|
|
])
|
|
expect(yield* db.get(sql`SELECT count(*) AS count FROM project_directory`)).toEqual({ count: 4 })
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("imports legacy JSON credentials without changing the source file or existing credentials", async () => {
|
|
await using tmp = await tmpdir()
|
|
const source = path.join(tmp.path, "auth.json")
|
|
const content = JSON.stringify({
|
|
openai: { type: "oauth", refresh: "refresh", access: "access", expires: 123, accountId: "account" },
|
|
anthropic: { type: "api", key: "legacy-key", metadata: { region: "us" } },
|
|
"https://example.com/": { type: "wellknown", key: "TOKEN", token: "wellknown-key" },
|
|
invalid: { type: "unknown" },
|
|
})
|
|
await Bun.write(source, content)
|
|
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* DatabaseMigration.apply(db)
|
|
const now = Date.now()
|
|
yield* db.run(sql`
|
|
INSERT INTO credential (id, integration_id, label, value, time_created, time_updated)
|
|
VALUES ('existing', 'anthropic', 'Existing', ${JSON.stringify({ type: "key", key: "current-key" })}, ${now}, ${now})
|
|
`)
|
|
|
|
yield* db.run(sql`DELETE FROM migration WHERE id = ${legacyCredentialsMigration.id}`)
|
|
yield* DatabaseMigration.applyOnly(db, [legacyCredentialsMigration])
|
|
|
|
expect(yield* db.all(sql`SELECT integration_id, label, value FROM credential ORDER BY integration_id`)).toEqual(
|
|
[
|
|
{
|
|
integration_id: "anthropic",
|
|
label: "Existing",
|
|
value: JSON.stringify({ type: "key", key: "current-key" }),
|
|
},
|
|
{
|
|
integration_id: "https://example.com",
|
|
label: "default",
|
|
value: JSON.stringify({ type: "key", key: "wellknown-key" }),
|
|
},
|
|
{
|
|
integration_id: "openai",
|
|
label: "default",
|
|
value: JSON.stringify({
|
|
type: "oauth",
|
|
methodID: "chatgpt-browser",
|
|
refresh: "refresh",
|
|
access: "access",
|
|
expires: 123,
|
|
metadata: { accountID: "account" },
|
|
}),
|
|
},
|
|
],
|
|
)
|
|
expect(yield* db.get(sql`SELECT value FROM kv WHERE key = 'wellknown:sources'`)).toEqual({
|
|
value: JSON.stringify(["https://example.com"]),
|
|
})
|
|
}),
|
|
Global.make({ data: tmp.path }),
|
|
)
|
|
|
|
expect(await Bun.file(source).text()).toBe(content)
|
|
})
|
|
|
|
test("skips legacy credential import when the source file is absent", async () => {
|
|
await using tmp = await tmpdir()
|
|
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* DatabaseMigration.apply(db)
|
|
yield* db.run(sql`DELETE FROM migration WHERE id = ${legacyCredentialsMigration.id}`)
|
|
yield* DatabaseMigration.applyOnly(db, [legacyCredentialsMigration])
|
|
|
|
expect(yield* db.all(sql`SELECT id FROM credential`)).toEqual([])
|
|
}),
|
|
Global.make({ data: tmp.path }),
|
|
)
|
|
})
|
|
|
|
test("rolls back a failed migration without recording it", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`CREATE TABLE session (id text PRIMARY KEY)`)
|
|
const migration = {
|
|
id: "failing",
|
|
up: (tx: Parameters<Parameters<typeof db.transaction>[0]>[0]) =>
|
|
Effect.gen(function* () {
|
|
yield* tx.run(sql`CREATE TABLE rolled_back (id text PRIMARY KEY)`)
|
|
yield* Effect.fail(new Error("stop"))
|
|
}),
|
|
}
|
|
|
|
expect((yield* Effect.exit(DatabaseMigration.applyOnly(db, [migration])))._tag).toBe("Failure")
|
|
expect(
|
|
yield* db.get(sql`SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'rolled_back'`),
|
|
).toBeUndefined()
|
|
expect(yield* db.get(sql`SELECT id FROM migration WHERE id = 'failing'`)).toBeUndefined()
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("suspends foreign keys outside migrations that rebuild referenced tables", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(sql`PRAGMA foreign_keys = ON`)
|
|
yield* db.run(sql`CREATE TABLE session (id text PRIMARY KEY, title text NOT NULL)`)
|
|
yield* db.run(
|
|
sql`CREATE TABLE message (id text PRIMARY KEY, session_id text NOT NULL REFERENCES session(id) ON DELETE CASCADE)`,
|
|
)
|
|
yield* db.run(sql`INSERT INTO session VALUES ('session', 'title')`)
|
|
yield* db.run(sql`INSERT INTO message VALUES ('message', 'session')`)
|
|
|
|
yield* DatabaseMigration.applyOnly(db, [
|
|
{
|
|
id: "rebuild",
|
|
foreignKeys: false,
|
|
up: (tx) =>
|
|
Effect.gen(function* () {
|
|
yield* tx.run(sql`CREATE TABLE next_session (id text PRIMARY KEY, title text)`)
|
|
yield* tx.run(sql`INSERT INTO next_session SELECT * FROM session`)
|
|
yield* tx.run(sql`DROP TABLE session`)
|
|
yield* tx.run(sql`ALTER TABLE next_session RENAME TO session`)
|
|
}),
|
|
},
|
|
])
|
|
|
|
expect(yield* db.get(sql`SELECT id FROM message`)).toEqual({ id: "message" })
|
|
expect(yield* db.get<{ foreign_keys: number }>(sql`PRAGMA foreign_keys`)).toEqual({ foreign_keys: 1 })
|
|
}),
|
|
)
|
|
})
|
|
|
|
test("imports an existing Drizzle migration journal once", async () => {
|
|
await run(
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDb
|
|
yield* db.run(
|
|
sql`CREATE TABLE __drizzle_migrations (id INTEGER PRIMARY KEY, hash text NOT NULL, created_at numeric, name text, applied_at TEXT)`,
|
|
)
|
|
yield* db.run(sql`
|
|
INSERT INTO __drizzle_migrations (hash, created_at, name, applied_at)
|
|
VALUES ('hash', 1, 'legacy', ${new Date().toISOString()})
|
|
`)
|
|
|
|
yield* DatabaseMigration.applyOnly(db, [])
|
|
expect(yield* db.all(sql`SELECT id FROM migration`)).toEqual([{ id: "legacy" }])
|
|
|
|
yield* db.run(sql`INSERT INTO migration (id, time_completed) VALUES ('existing', 1)`)
|
|
yield* db.run(sql`UPDATE __drizzle_migrations SET name = 'ignored'`)
|
|
yield* DatabaseMigration.applyOnly(db, [])
|
|
expect(yield* db.all(sql`SELECT id FROM migration ORDER BY id`)).toEqual([{ id: "existing" }, { id: "legacy" }])
|
|
}),
|
|
)
|
|
})
|
|
})
|