mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-07-27 16:49:51 -07:00
be31f96f02
subminer sync <host> exchanges VACUUM INTO snapshots over ssh/scp and each side merges the other's data as an insert-only union keyed on session UUIDs, video keys, series title keys, and word/kanji identity. Lifetime totals and daily/monthly rollups are applied incrementally so pre-retention history survives, remote-only historical rollups are copied, and re-syncing is idempotent. sync --snapshot/--merge expose the underlying steps for manual transfers; a pid-file/mpv-socket guard refuses to run while SubMiner may be writing the database and schema-version mismatches abort the merge.
366 lines
13 KiB
TypeScript
366 lines
13 KiB
TypeScript
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import fs from 'node:fs';
|
|
import os from 'node:os';
|
|
import path from 'node:path';
|
|
import { Database } from 'bun:sqlite';
|
|
import { createDbSnapshot, mergeSnapshotIntoDb } from './sync-db.js';
|
|
import {
|
|
createImmersionDbFixture,
|
|
insertFixtureSession,
|
|
} from '../test-support/immersion-db-fixture.js';
|
|
|
|
const DAY_MS = 86_400_000;
|
|
const BASE_MS = Date.UTC(2026, 5, 1, 12, 0, 0);
|
|
|
|
function makeTmpDir(): string {
|
|
return fs.mkdtempSync(path.join(os.tmpdir(), 'subminer-sync-test-'));
|
|
}
|
|
|
|
function makeDbPair(): { dir: string; localPath: string; remotePath: string } {
|
|
const dir = makeTmpDir();
|
|
const localPath = path.join(dir, 'local.sqlite');
|
|
const remotePath = path.join(dir, 'remote.sqlite');
|
|
createImmersionDbFixture(localPath);
|
|
createImmersionDbFixture(remotePath);
|
|
return { dir, localPath, remotePath };
|
|
}
|
|
|
|
function queryOne<T extends Record<string, unknown>>(dbPath: string, sql: string, params: unknown[] = []): T | undefined {
|
|
const db = new Database(dbPath, { readonly: true });
|
|
try {
|
|
return db.query<T>(sql).get(...params) as T | undefined;
|
|
} finally {
|
|
db.close();
|
|
}
|
|
}
|
|
|
|
function count(dbPath: string, sql: string, params: unknown[] = []): number {
|
|
return Number(queryOne<{ n: number }>(dbPath, sql, params)?.n ?? 0);
|
|
}
|
|
|
|
test('merges remote-only sessions with catalog, lifetime, and rollups', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
insertFixtureSession(localPath, {
|
|
uuid: 'local-1',
|
|
videoKey: 'showa-e1',
|
|
animeTitleKey: 'showa',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
words: [{ headword: '見る', word: '見た', reading: 'みた', count: 2 }],
|
|
});
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-1',
|
|
videoKey: 'showb-e1',
|
|
animeTitleKey: 'showb',
|
|
startedAtMs: BASE_MS + DAY_MS,
|
|
activeWatchedMs: 900_000,
|
|
cardsMined: 3,
|
|
applyLifetime: true,
|
|
words: [
|
|
{ headword: '見る', word: '見た', reading: 'みた', count: 5 },
|
|
{ headword: '食べる', word: '食べた', reading: 'たべた', count: 1 },
|
|
],
|
|
});
|
|
|
|
const summary = mergeSnapshotIntoDb(localPath, remotePath);
|
|
assert.equal(summary.sessionsMerged, 1);
|
|
assert.equal(summary.animeAdded, 1);
|
|
assert.equal(summary.videosAdded, 1);
|
|
assert.equal(summary.wordsAdded, 1);
|
|
assert.equal(summary.subtitleLinesAdded, 2);
|
|
assert.equal(summary.telemetryRowsAdded, 1);
|
|
|
|
assert.equal(count(localPath, 'SELECT COUNT(*) AS n FROM imm_sessions'), 2);
|
|
const global = queryOne<{ total_sessions: number; total_active_ms: number; total_cards: number; active_days: number; episodes_started: number }>(
|
|
localPath,
|
|
'SELECT total_sessions, total_active_ms, total_cards, active_days, episodes_started FROM imm_lifetime_global WHERE global_id = 1',
|
|
);
|
|
assert.equal(global?.total_sessions, 2);
|
|
assert.equal(global?.total_active_ms, 1_200_000 + 900_000);
|
|
assert.equal(global?.total_cards, 2 + 3);
|
|
assert.equal(global?.active_days, 2);
|
|
assert.equal(global?.episodes_started, 2);
|
|
|
|
// Existing word: local 2 + merged 5; new word carries remote frequency.
|
|
const sharedWord = queryOne<{ frequency: number }>(
|
|
localPath,
|
|
`SELECT frequency FROM imm_words WHERE word = '見た'`,
|
|
);
|
|
assert.equal(sharedWord?.frequency, 7);
|
|
const newWord = queryOne<{ frequency: number }>(
|
|
localPath,
|
|
`SELECT frequency FROM imm_words WHERE word = '食べた'`,
|
|
);
|
|
assert.equal(newWord?.frequency, 1);
|
|
|
|
// The merged session's rollup group was recomputed.
|
|
assert.equal(summary.rollupGroupsRecomputed, 1);
|
|
const mergedVideoId = Number(
|
|
queryOne<{ video_id: number }>(localPath, `SELECT video_id FROM imm_videos WHERE video_key = 'showb-e1'`)
|
|
?.video_id,
|
|
);
|
|
assert.equal(
|
|
count(localPath, 'SELECT COUNT(*) AS n FROM imm_daily_rollups WHERE video_id = ?', [mergedVideoId]),
|
|
1,
|
|
);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('is idempotent: re-merging the same snapshot changes nothing', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-1',
|
|
videoKey: 'showa-e1',
|
|
animeTitleKey: 'showa',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
words: [{ headword: '見る', word: '見た', reading: 'みた', count: 4 }],
|
|
});
|
|
|
|
mergeSnapshotIntoDb(localPath, remotePath);
|
|
const globalAfterFirst = queryOne<Record<string, unknown>>(
|
|
localPath,
|
|
'SELECT * FROM imm_lifetime_global WHERE global_id = 1',
|
|
);
|
|
const summary = mergeSnapshotIntoDb(localPath, remotePath);
|
|
|
|
assert.equal(summary.sessionsMerged, 0);
|
|
assert.equal(summary.sessionsAlreadyPresent, 1);
|
|
assert.equal(summary.wordsAdded, 0);
|
|
assert.equal(count(localPath, 'SELECT COUNT(*) AS n FROM imm_sessions'), 1);
|
|
assert.equal(count(localPath, 'SELECT COUNT(*) AS n FROM imm_subtitle_lines'), 1);
|
|
const globalAfterSecond = queryOne<Record<string, unknown>>(
|
|
localPath,
|
|
'SELECT * FROM imm_lifetime_global WHERE global_id = 1',
|
|
);
|
|
assert.deepEqual(
|
|
{ ...globalAfterSecond, LAST_UPDATE_DATE: null },
|
|
{ ...globalAfterFirst, LAST_UPDATE_DATE: null },
|
|
);
|
|
assert.equal(
|
|
Number(queryOne<{ frequency: number }>(localPath, `SELECT frequency FROM imm_words WHERE word = '見た'`)?.frequency),
|
|
4,
|
|
);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('matches shared videos by video_key and merges the watched flag', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
insertFixtureSession(localPath, {
|
|
uuid: 'local-1',
|
|
videoKey: 'showa-e1',
|
|
animeTitleKey: 'showa',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
});
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-1',
|
|
videoKey: 'showa-e1',
|
|
animeTitleKey: 'showa',
|
|
startedAtMs: BASE_MS + DAY_MS,
|
|
watched: true,
|
|
applyLifetime: true,
|
|
});
|
|
|
|
const summary = mergeSnapshotIntoDb(localPath, remotePath);
|
|
assert.equal(summary.videosAdded, 0);
|
|
assert.equal(summary.animeAdded, 0);
|
|
assert.equal(count(localPath, 'SELECT COUNT(*) AS n FROM imm_videos'), 1);
|
|
const video = queryOne<{ watched: number }>(
|
|
localPath,
|
|
`SELECT watched FROM imm_videos WHERE video_key = 'showa-e1'`,
|
|
);
|
|
assert.equal(video?.watched, 1);
|
|
|
|
// Both sessions now credit the same video; episode was started once and
|
|
// completed once (by the remote session that watched it to the end).
|
|
const global = queryOne<{ episodes_started: number; episodes_completed: number; total_sessions: number }>(
|
|
localPath,
|
|
'SELECT episodes_started, episodes_completed, total_sessions FROM imm_lifetime_global WHERE global_id = 1',
|
|
);
|
|
assert.equal(global?.total_sessions, 2);
|
|
assert.equal(global?.episodes_started, 1);
|
|
assert.equal(global?.episodes_completed, 1);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('does not double-count active_days when a merged session starts earlier on an already-credited day', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
insertFixtureSession(localPath, {
|
|
uuid: 'local-1',
|
|
videoKey: 'showa-e1',
|
|
startedAtMs: BASE_MS + 3_600_000,
|
|
applyLifetime: true,
|
|
});
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-1',
|
|
videoKey: 'showb-e1',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
});
|
|
|
|
mergeSnapshotIntoDb(localPath, remotePath);
|
|
const global = queryOne<{ active_days: number; total_sessions: number }>(
|
|
localPath,
|
|
'SELECT active_days, total_sessions FROM imm_lifetime_global WHERE global_id = 1',
|
|
);
|
|
assert.equal(global?.total_sessions, 2);
|
|
assert.equal(global?.active_days, 1);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('skips unfinished sessions', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-active',
|
|
videoKey: 'showa-e1',
|
|
startedAtMs: BASE_MS,
|
|
endedAtMs: null,
|
|
});
|
|
|
|
const summary = mergeSnapshotIntoDb(localPath, remotePath);
|
|
assert.equal(summary.sessionsMerged, 0);
|
|
assert.equal(summary.activeSessionsSkipped, 1);
|
|
assert.equal(count(localPath, 'SELECT COUNT(*) AS n FROM imm_sessions'), 0);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('copies remote-only historical rollups but never sums shared groups', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
// Remote has a video plus an old rollup row whose sessions were pruned.
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-1',
|
|
videoKey: 'old-show-e1',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
});
|
|
const remoteDb = new Database(remotePath, { readwrite: true });
|
|
const remoteVideoId = Number(
|
|
remoteDb.query<{ video_id: number }>(`SELECT video_id FROM imm_videos WHERE video_key = 'old-show-e1'`).get()
|
|
?.video_id,
|
|
);
|
|
remoteDb
|
|
.prepare(
|
|
`INSERT INTO imm_daily_rollups (rollup_day, video_id, total_sessions, total_active_min, total_lines_seen, total_tokens_seen, total_cards)
|
|
VALUES (10000, ?, 4, 120.5, 400, 3200, 9)`,
|
|
)
|
|
.run(remoteVideoId);
|
|
remoteDb.close();
|
|
|
|
// Local already has its own rollup row for a shared group.
|
|
insertFixtureSession(localPath, {
|
|
uuid: 'local-1',
|
|
videoKey: 'old-show-e1',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
});
|
|
const localDb = new Database(localPath, { readwrite: true });
|
|
const localVideoId = Number(
|
|
localDb.query<{ video_id: number }>(`SELECT video_id FROM imm_videos WHERE video_key = 'old-show-e1'`).get()
|
|
?.video_id,
|
|
);
|
|
localDb
|
|
.prepare(
|
|
`INSERT INTO imm_daily_rollups (rollup_day, video_id, total_sessions, total_active_min, total_lines_seen, total_tokens_seen, total_cards)
|
|
VALUES (10000, ?, 2, 60.0, 200, 1600, 4)`,
|
|
)
|
|
.run(localVideoId);
|
|
localDb.close();
|
|
|
|
const summary = mergeSnapshotIntoDb(localPath, remotePath);
|
|
// Shared group (day 10000) untouched; the remote-only session's own group
|
|
// was recomputed, not copied.
|
|
assert.equal(summary.dailyRollupsCopied, 0);
|
|
const shared = queryOne<{ total_sessions: number }>(
|
|
localPath,
|
|
'SELECT total_sessions FROM imm_daily_rollups WHERE rollup_day = 10000 AND video_id = ?',
|
|
[localVideoId],
|
|
);
|
|
assert.equal(shared?.total_sessions, 2);
|
|
|
|
// Now a rollup for a video with no local sessions at all gets copied.
|
|
const remoteDb2 = new Database(remotePath, { readwrite: true });
|
|
const orphanVideoId = Number(
|
|
remoteDb2
|
|
.prepare(
|
|
`INSERT INTO imm_videos (video_key, canonical_title, source_type, watched, duration_ms)
|
|
VALUES ('pruned-show-e1', 'pruned-show-e1', 1, 1, 1440000)`,
|
|
)
|
|
.run().lastInsertRowid,
|
|
);
|
|
remoteDb2
|
|
.prepare(
|
|
`INSERT INTO imm_daily_rollups (rollup_day, video_id, total_sessions, total_active_min, total_lines_seen, total_tokens_seen, total_cards)
|
|
VALUES (9000, ?, 3, 90.0, 300, 2400, 6)`,
|
|
)
|
|
.run(orphanVideoId);
|
|
remoteDb2.close();
|
|
|
|
const summary2 = mergeSnapshotIntoDb(localPath, remotePath);
|
|
assert.equal(summary2.dailyRollupsCopied, 1);
|
|
const copiedVideoId = Number(
|
|
queryOne<{ video_id: number }>(localPath, `SELECT video_id FROM imm_videos WHERE video_key = 'pruned-show-e1'`)
|
|
?.video_id,
|
|
);
|
|
const copied = queryOne<{ total_sessions: number; total_active_min: number }>(
|
|
localPath,
|
|
'SELECT total_sessions, total_active_min FROM imm_daily_rollups WHERE rollup_day = 9000 AND video_id = ?',
|
|
[copiedVideoId],
|
|
);
|
|
assert.equal(copied?.total_sessions, 3);
|
|
assert.equal(copied?.total_active_min, 90.0);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('rejects snapshots at a different schema version', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
const remoteDb = new Database(remotePath, { readwrite: true });
|
|
remoteDb.prepare('UPDATE imm_schema_version SET schema_version = 17').run();
|
|
remoteDb.close();
|
|
|
|
assert.throws(() => mergeSnapshotIntoDb(localPath, remotePath), /schema version 17/);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('createDbSnapshot produces a mergeable copy', () => {
|
|
const { dir, localPath, remotePath } = makeDbPair();
|
|
try {
|
|
insertFixtureSession(remotePath, {
|
|
uuid: 'remote-1',
|
|
videoKey: 'showa-e1',
|
|
startedAtMs: BASE_MS,
|
|
applyLifetime: true,
|
|
});
|
|
const snapshotPath = path.join(dir, 'snapshot.sqlite');
|
|
createDbSnapshot(remotePath, snapshotPath);
|
|
assert.ok(fs.existsSync(snapshotPath));
|
|
|
|
const summary = mergeSnapshotIntoDb(localPath, snapshotPath);
|
|
assert.equal(summary.sessionsMerged, 1);
|
|
} finally {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
}
|
|
});
|