mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-17 10:06:00 +00:00
9f9758bc12
Consume commonlib's delivery lifecycle, classify finite replication entry points, and document why the five-minute inactivity fuse is only a leak safety valve. Record the remote-activity counter correction and preserve continuous replication's unbounded live channel.
90 lines
3.1 KiB
TypeScript
90 lines
3.1 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import { ModuleReplicatorCouchDB } from "./ModuleReplicatorCouchDB.ts";
|
|
|
|
function createModule(settings: { liveSync: boolean; syncOnStart: boolean }, isReplicationReady = true) {
|
|
const openReplication = vi.fn(async () => true);
|
|
const runFiniteReplicationActivity = vi.fn(async (task: () => unknown) => await task());
|
|
const services = {
|
|
API: {
|
|
addLog: vi.fn(),
|
|
addCommand: vi.fn(),
|
|
registerWindow: vi.fn(),
|
|
addRibbonIcon: vi.fn(),
|
|
registerProtocolHandler: vi.fn(),
|
|
},
|
|
appLifecycle: {
|
|
isSuspended: vi.fn(() => false),
|
|
isReady: vi.fn(() => true),
|
|
},
|
|
replication: {
|
|
isReplicationReady: vi.fn(async () => isReplicationReady),
|
|
},
|
|
replicator: {
|
|
runFiniteReplicationActivity,
|
|
},
|
|
setting: {
|
|
saveSettingData: vi.fn(async () => undefined),
|
|
},
|
|
};
|
|
const core = {
|
|
_services: services,
|
|
services,
|
|
settings: {
|
|
remoteType: "",
|
|
...settings,
|
|
},
|
|
replicator: { openReplication },
|
|
} as any;
|
|
return {
|
|
module: new ModuleReplicatorCouchDB(core),
|
|
openReplication,
|
|
runFiniteReplicationActivity,
|
|
};
|
|
}
|
|
|
|
describe("ModuleReplicatorCouchDB resume replication activity", () => {
|
|
it("exposes start-up one-shot replication as finite replication activity", async () => {
|
|
const { module, openReplication, runFiniteReplicationActivity } = createModule({
|
|
liveSync: false,
|
|
syncOnStart: true,
|
|
});
|
|
|
|
await module._everyAfterResumeProcess();
|
|
|
|
await vi.waitFor(() => expect(openReplication).toHaveBeenCalledOnce());
|
|
expect(runFiniteReplicationActivity).toHaveBeenCalledWith(expect.any(Function), {
|
|
label: "replication",
|
|
});
|
|
expect(openReplication).toHaveBeenCalledWith(expect.any(Object), false, false, false);
|
|
});
|
|
|
|
it("does not wrap the unbounded continuous channel in another finite activity", async () => {
|
|
const { module, openReplication, runFiniteReplicationActivity } = createModule({
|
|
liveSync: true,
|
|
syncOnStart: false,
|
|
});
|
|
|
|
await module._everyAfterResumeProcess();
|
|
|
|
await vi.waitFor(() => expect(openReplication).toHaveBeenCalledOnce());
|
|
expect(runFiniteReplicationActivity).not.toHaveBeenCalled();
|
|
expect(openReplication).toHaveBeenCalledWith(expect.any(Object), true, false, false);
|
|
});
|
|
|
|
it("does not start a one-shot activity when start-up readiness fails", async () => {
|
|
const { module, openReplication, runFiniteReplicationActivity } = createModule(
|
|
{
|
|
liveSync: false,
|
|
syncOnStart: true,
|
|
},
|
|
false
|
|
);
|
|
|
|
await module._everyAfterResumeProcess();
|
|
await new Promise((resolve) => setTimeout(resolve, 0));
|
|
|
|
expect(runFiniteReplicationActivity).not.toHaveBeenCalled();
|
|
expect(openReplication).not.toHaveBeenCalled();
|
|
});
|
|
});
|