mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-11 15:23:10 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09d7ebf6e9 | |||
| b757308bdf |
@@ -17,8 +17,6 @@ production/
|
|||||||
|
|
||||||
# Test coverage and reports
|
# Test coverage and reports
|
||||||
coverage/
|
coverage/
|
||||||
test/bench-network/bench-results/
|
|
||||||
src/apps/cli/testdeno/bench-results/
|
|
||||||
|
|
||||||
# Local environment / secrets
|
# Local environment / secrets
|
||||||
.env
|
.env
|
||||||
|
|||||||
@@ -9,9 +9,6 @@ on:
|
|||||||
- '.github/workflows/cli-deno-tests.yml'
|
- '.github/workflows/cli-deno-tests.yml'
|
||||||
- 'src/apps/cli/**'
|
- 'src/apps/cli/**'
|
||||||
- 'src/lib/src/API/processSetting.ts'
|
- 'src/lib/src/API/processSetting.ts'
|
||||||
- 'src/lib/src/replication/trystero/**'
|
|
||||||
- 'src/lib/src/rpc/**'
|
|
||||||
- 'test/bench-network/**'
|
|
||||||
- 'package.json'
|
- 'package.json'
|
||||||
- 'package-lock.json'
|
- 'package-lock.json'
|
||||||
pull_request:
|
pull_request:
|
||||||
@@ -19,9 +16,6 @@ on:
|
|||||||
- '.github/workflows/cli-deno-tests.yml'
|
- '.github/workflows/cli-deno-tests.yml'
|
||||||
- 'src/apps/cli/**'
|
- 'src/apps/cli/**'
|
||||||
- 'src/lib/src/API/processSetting.ts'
|
- 'src/lib/src/API/processSetting.ts'
|
||||||
- 'src/lib/src/replication/trystero/**'
|
|
||||||
- 'src/lib/src/rpc/**'
|
|
||||||
- 'test/bench-network/**'
|
|
||||||
- 'package.json'
|
- 'package.json'
|
||||||
- 'package-lock.json'
|
- 'package-lock.json'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -161,40 +155,3 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
docker stop couchdb-test minio-test relay-test coturn-test >/dev/null 2>&1 || true
|
docker stop couchdb-test minio-test relay-test coturn-test >/dev/null 2>&1 || true
|
||||||
docker rm couchdb-test minio-test relay-test coturn-test >/dev/null 2>&1 || true
|
docker rm couchdb-test minio-test relay-test coturn-test >/dev/null 2>&1 || true
|
||||||
|
|
||||||
compose-p2p-e2e:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 45
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Show Docker versions
|
|
||||||
run: |
|
|
||||||
docker --version
|
|
||||||
docker compose version
|
|
||||||
|
|
||||||
- name: Run Compose CLI P2P E2E
|
|
||||||
env:
|
|
||||||
CLI_E2E_TASK: test:p2p-sync
|
|
||||||
RELAY: ws://nostr-relay:7777/
|
|
||||||
PEERS_TIMEOUT: '20'
|
|
||||||
SYNC_TIMEOUT: '60'
|
|
||||||
LIVESYNC_USE_COTURN: '0'
|
|
||||||
TURN_SERVERS: none
|
|
||||||
LIVESYNC_P2P_PEERS_RETRY: '1'
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: '60000'
|
|
||||||
BENCH_LIVESYNC_TEST_TEE: '0'
|
|
||||||
run: docker compose -f test/bench-network/compose.yml run --build --rm bench-runner run-livesync-cli-e2e
|
|
||||||
|
|
||||||
- name: Show Compose diagnostics
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
docker compose -f test/bench-network/compose.yml ps
|
|
||||||
docker compose -f test/bench-network/compose.yml logs --no-color couchdb nostr-relay || true
|
|
||||||
|
|
||||||
- name: Stop Compose services
|
|
||||||
if: always()
|
|
||||||
run: docker compose -f test/bench-network/compose.yml down -v --remove-orphans
|
|
||||||
|
|||||||
@@ -1,96 +0,0 @@
|
|||||||
# Run the Compose-packaged CLI P2P smoke benchmark.
|
|
||||||
#
|
|
||||||
# This workflow is intentionally manual-only. It exercises the local Compose
|
|
||||||
# package for CouchDB + Nostr relay + CLI runner, and uploads the benchmark JSON
|
|
||||||
# results for inspection without adding benchmark work to pull-request CI.
|
|
||||||
name: cli-p2p-compose-smoke
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
cases:
|
|
||||||
description: 'Comma-separated benchmark cases'
|
|
||||||
required: false
|
|
||||||
default: 'couchdb-baseline,p2p-direct-local'
|
|
||||||
signalling_cases:
|
|
||||||
description: 'Comma-separated signalling-shim P2P benchmark cases'
|
|
||||||
required: false
|
|
||||||
default: 'p2p-signalling-netem-home-wifi'
|
|
||||||
md_files:
|
|
||||||
description: 'Markdown file count'
|
|
||||||
required: false
|
|
||||||
default: '2'
|
|
||||||
bin_files:
|
|
||||||
description: 'Binary file count'
|
|
||||||
required: false
|
|
||||||
default: '1'
|
|
||||||
couchdb_rtt_ms:
|
|
||||||
description: 'Requested CouchDB RTT in milliseconds'
|
|
||||||
required: false
|
|
||||||
default: '20'
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
smoke:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 45
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Show Docker versions
|
|
||||||
run: |
|
|
||||||
docker --version
|
|
||||||
docker compose version
|
|
||||||
|
|
||||||
- name: Run Compose P2P smoke benchmark
|
|
||||||
env:
|
|
||||||
BENCH_CASES: ${{ inputs.cases || 'couchdb-baseline,p2p-direct-local' }}
|
|
||||||
BENCH_MD_FILE_COUNT: ${{ inputs.md_files || '2' }}
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: '128'
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: '256'
|
|
||||||
BENCH_BIN_FILE_COUNT: ${{ inputs.bin_files || '1' }}
|
|
||||||
BENCH_BIN_SIZE_BYTES: '512'
|
|
||||||
BENCH_COUCHDB_RTT_MS: ${{ inputs.couchdb_rtt_ms || '20' }}
|
|
||||||
BENCH_SYNC_TIMEOUT: '180'
|
|
||||||
BENCH_PEERS_TIMEOUT: '20'
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: '60000'
|
|
||||||
BENCH_LIVESYNC_TEST_TEE: '0'
|
|
||||||
run: docker compose -f test/bench-network/compose.yml run --build --rm bench-runner
|
|
||||||
|
|
||||||
- name: Run Compose P2P signalling-shim smoke benchmark
|
|
||||||
env:
|
|
||||||
BENCH_CASES: ${{ inputs.signalling_cases || 'p2p-signalling-netem-home-wifi' }}
|
|
||||||
BENCH_MD_FILE_COUNT: ${{ inputs.md_files || '2' }}
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: '128'
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: '256'
|
|
||||||
BENCH_BIN_FILE_COUNT: ${{ inputs.bin_files || '1' }}
|
|
||||||
BENCH_BIN_SIZE_BYTES: '512'
|
|
||||||
BENCH_SYNC_TIMEOUT: '180'
|
|
||||||
BENCH_PEERS_TIMEOUT: '60'
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: '60000'
|
|
||||||
BENCH_LIVESYNC_TEST_TEE: '0'
|
|
||||||
NETEM_PROFILE: 'home-wifi'
|
|
||||||
run: docker compose -f test/bench-network/compose.yml --profile signalling-shim run --build --rm bench-runner-signalling-shim
|
|
||||||
|
|
||||||
- name: Show Compose diagnostics
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
docker compose -f test/bench-network/compose.yml ps
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile signalling-shim logs --no-color couchdb nostr-relay p2p-signalling-shim || true
|
|
||||||
|
|
||||||
- name: Upload benchmark results
|
|
||||||
if: always()
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: cli-p2p-compose-smoke-results
|
|
||||||
path: test/bench-network/bench-results/**
|
|
||||||
if-no-files-found: warn
|
|
||||||
|
|
||||||
- name: Stop Compose services
|
|
||||||
if: always()
|
|
||||||
run: docker compose -f test/bench-network/compose.yml down -v --remove-orphans
|
|
||||||
+2
-1
@@ -65,7 +65,7 @@ All guidelines and conventions listed below are disclosed and maintained solely
|
|||||||
- livesync-serverpeer / webpeer
|
- livesync-serverpeer / webpeer
|
||||||
- Pseudo-clients that assist in WebRTC peer-to-peer communication.
|
- Pseudo-clients that assist in WebRTC peer-to-peer communication.
|
||||||
- Metadata (File metadata)
|
- Metadata (File metadata)
|
||||||
- A database document that stores properties of a file, including its filename, path, size, modification time, and references (hashes) of the chunks that comprise the file's content. Conflict state is carried by the surrounding PouchDB/CouchDB revision metadata rather than by a separate history field inside the file metadata document. In Self-hosted LiveSync, file metadata is stored separately from the actual file content to enable efficient synchronisation and versioning.
|
- A database document that stores properties of a file, including its filename, path, size, modification time, conflict history, and references (hashes) of the chunks that comprise the file's content. In Self-hosted LiveSync, metadata is stored separately from the actual file content to enable efficient synchronisation and versioning.
|
||||||
- OneShot Sync
|
- OneShot Sync
|
||||||
- A single, immediate bidirectional synchronisation (pull then push) triggered on demand or on specific events, as opposed to continuous (live) replication.
|
- A single, immediate bidirectional synchronisation (pull then push) triggered on demand or on specific events, as opposed to continuous (live) replication.
|
||||||
- Overwrite Server Data with This Device's Files
|
- Overwrite Server Data with This Device's Files
|
||||||
@@ -100,3 +100,4 @@ All guidelines and conventions listed below are disclosed and maintained solely
|
|||||||
- An optimisation that groups multiple local file edits together over a short delay before committing them to the local database, reducing the number of database write operations.
|
- An optimisation that groups multiple local file edits together over a short delay before committing them to the local database, reducing the number of database write operations.
|
||||||
- WebRTC P2P (Peer-to-Peer)
|
- WebRTC P2P (Peer-to-Peer)
|
||||||
- A synchronisation method enabling direct communication between devices without a central server database.
|
- A synchronisation method enabling direct communication between devices without a central server database.
|
||||||
|
|
||||||
|
|||||||
Generated
+14
@@ -58,6 +58,7 @@
|
|||||||
"@vitest/browser": "^4.1.8",
|
"@vitest/browser": "^4.1.8",
|
||||||
"@vitest/browser-playwright": "^4.1.8",
|
"@vitest/browser-playwright": "^4.1.8",
|
||||||
"@vitest/coverage-v8": "^4.1.8",
|
"@vitest/coverage-v8": "^4.1.8",
|
||||||
|
"@vrtmrz/obsidian-test-session": "https://github.com/vrtmrz/fancy-kit/releases/download/consumer-preview-2026-07-10.5/vrtmrz-obsidian-test-session-0.1.0.tgz",
|
||||||
"dotenv-cli": "^11.0.0",
|
"dotenv-cli": "^11.0.0",
|
||||||
"esbuild": "0.28.1",
|
"esbuild": "0.28.1",
|
||||||
"esbuild-plugin-inline-worker": "^0.1.1",
|
"esbuild-plugin-inline-worker": "^0.1.1",
|
||||||
@@ -4944,6 +4945,19 @@
|
|||||||
"url": "https://opencollective.com/vitest"
|
"url": "https://opencollective.com/vitest"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@vrtmrz/obsidian-test-session": {
|
||||||
|
"version": "0.1.0",
|
||||||
|
"resolved": "https://github.com/vrtmrz/fancy-kit/releases/download/consumer-preview-2026-07-10.5/vrtmrz-obsidian-test-session-0.1.0.tgz",
|
||||||
|
"integrity": "sha512-IUM31s7jjhj7S2X6qM7QIvgJX/XzK35878phq/wuLI849BdwfXIliUcnAdqcDN9ajGbLuMkFHy1h2Q2LB0A93A==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"playwright": ">=1.50.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@wdio/config": {
|
"node_modules/@wdio/config": {
|
||||||
"version": "9.27.0",
|
"version": "9.27.0",
|
||||||
"resolved": "https://registry.npmjs.org/@wdio/config/-/config-9.27.0.tgz",
|
"resolved": "https://registry.npmjs.org/@wdio/config/-/config-9.27.0.tgz",
|
||||||
|
|||||||
@@ -105,6 +105,7 @@
|
|||||||
"@vitest/browser": "^4.1.8",
|
"@vitest/browser": "^4.1.8",
|
||||||
"@vitest/browser-playwright": "^4.1.8",
|
"@vitest/browser-playwright": "^4.1.8",
|
||||||
"@vitest/coverage-v8": "^4.1.8",
|
"@vitest/coverage-v8": "^4.1.8",
|
||||||
|
"@vrtmrz/obsidian-test-session": "https://github.com/vrtmrz/fancy-kit/releases/download/consumer-preview-2026-07-10.5/vrtmrz-obsidian-test-session-0.1.0.tgz",
|
||||||
"dotenv-cli": "^11.0.0",
|
"dotenv-cli": "^11.0.0",
|
||||||
"esbuild": "0.28.1",
|
"esbuild": "0.28.1",
|
||||||
"esbuild-plugin-inline-worker": "^0.1.1",
|
"esbuild-plugin-inline-worker": "^0.1.1",
|
||||||
|
|||||||
@@ -4,21 +4,12 @@ import type { ServiceContext } from "@lib/services/base/ServiceBase";
|
|||||||
import { LiveSyncTrysteroReplicator } from "@lib/replication/trystero/LiveSyncTrysteroReplicator";
|
import { LiveSyncTrysteroReplicator } from "@lib/replication/trystero/LiveSyncTrysteroReplicator";
|
||||||
import { compatGlobal } from "@lib/common/coreEnvFunctions.ts";
|
import { compatGlobal } from "@lib/common/coreEnvFunctions.ts";
|
||||||
import { LiveSyncError } from "@lib/common/LSError";
|
import { LiveSyncError } from "@lib/common/LSError";
|
||||||
import { getPeerConnectionStats } from "@lib/rpc/transports/DiagRTCPeerConnections.utils";
|
|
||||||
import { appendFile } from "node:fs/promises";
|
|
||||||
|
|
||||||
type CLIP2PPeer = {
|
type CLIP2PPeer = {
|
||||||
peerId: string;
|
peerId: string;
|
||||||
name: string;
|
name: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
type CandidateSummary = {
|
|
||||||
id: string | "unknown";
|
|
||||||
candidateType: string | "unknown";
|
|
||||||
protocol: string | "unknown";
|
|
||||||
relayProtocol: string | "unknown";
|
|
||||||
};
|
|
||||||
|
|
||||||
function delay(ms: number): Promise<void> {
|
function delay(ms: number): Promise<void> {
|
||||||
return new Promise((resolve) => compatGlobal.setTimeout(resolve, ms));
|
return new Promise((resolve) => compatGlobal.setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
@@ -90,74 +81,6 @@ function resolvePeer(peers: CLIP2PPeer[], peerToken: string): CLIP2PPeer | undef
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getReportValue<T extends string | number>(
|
|
||||||
report: Record<string, unknown> | undefined,
|
|
||||||
key: string
|
|
||||||
): T | "unknown" {
|
|
||||||
const value = report?.[key];
|
|
||||||
return typeof value === "string" || typeof value === "number" ? (value as T) : "unknown";
|
|
||||||
}
|
|
||||||
|
|
||||||
function summariseCandidate(reports: unknown[], candidateId: string | "unknown"): CandidateSummary | undefined {
|
|
||||||
if (candidateId === "unknown") {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
const report = reports.map((r) => r as Record<string, unknown>).find((r) => r.id === candidateId);
|
|
||||||
if (!report) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
id: candidateId,
|
|
||||||
candidateType: getReportValue<string>(report, "candidateType"),
|
|
||||||
protocol: getReportValue<string>(report, "protocol"),
|
|
||||||
relayProtocol: getReportValue<string>(report, "relayProtocol"),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async function writePeerConnectionStatsIfRequested(
|
|
||||||
replicator: LiveSyncTrysteroReplicator,
|
|
||||||
peer: CLIP2PPeer
|
|
||||||
): Promise<void> {
|
|
||||||
const outputPath = process.env.LIVESYNC_P2P_STATS_JSONL?.trim();
|
|
||||||
if (!outputPath) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const peerConnection = replicator.rawHost?.room?.getPeers()[peer.peerId];
|
|
||||||
const stats = peerConnection ? await getPeerConnectionStats(`cli-p2p-${peer.peerId}`, peerConnection) : undefined;
|
|
||||||
const localCandidate = summariseCandidate(stats?.reports ?? [], stats?.localCandidateId ?? "unknown");
|
|
||||||
const remoteCandidate = summariseCandidate(stats?.reports ?? [], stats?.remoteCandidateId ?? "unknown");
|
|
||||||
const selectedPath =
|
|
||||||
localCandidate && remoteCandidate
|
|
||||||
? `${localCandidate.candidateType}<->${remoteCandidate.candidateType}`
|
|
||||||
: "unknown";
|
|
||||||
|
|
||||||
const payload = {
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
command: "p2p-sync",
|
|
||||||
peerId: peer.peerId,
|
|
||||||
peerName: peer.name,
|
|
||||||
candidatePathCollected: !!stats?.selectedPair,
|
|
||||||
selectedPath,
|
|
||||||
selectedPair: stats
|
|
||||||
? {
|
|
||||||
id: stats.selectedPairId,
|
|
||||||
state: stats.state,
|
|
||||||
currentRoundTripTime: stats.currentRoundTripTime,
|
|
||||||
totalRoundTripTime: stats.totalRoundTripTime,
|
|
||||||
requestsSent: stats.requestsSent,
|
|
||||||
responsesReceived: stats.responsesReceived,
|
|
||||||
packetsDiscardedOnSend: stats.packetsDiscardedOnSend,
|
|
||||||
bytesSent: stats.bytesSent,
|
|
||||||
bytesReceived: stats.bytesReceived,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
localCandidate,
|
|
||||||
remoteCandidate,
|
|
||||||
};
|
|
||||||
await appendFile(outputPath, `${JSON.stringify(payload)}\n`, "utf8");
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function syncWithPeer(
|
export async function syncWithPeer(
|
||||||
core: LiveSyncBaseCore<ServiceContext, never>,
|
core: LiveSyncBaseCore<ServiceContext, never>,
|
||||||
peerToken: string,
|
peerToken: string,
|
||||||
@@ -195,7 +118,6 @@ export async function syncWithPeer(
|
|||||||
: LiveSyncError.fromError(err ?? "P2P sync failed while requesting remote sync");
|
: LiveSyncError.fromError(err ?? "P2P sync failed while requesting remote sync");
|
||||||
}
|
}
|
||||||
|
|
||||||
await writePeerConnectionStatsIfRequested(replicator, targetPeer);
|
|
||||||
return targetPeer;
|
return targetPeer;
|
||||||
} finally {
|
} finally {
|
||||||
await replicator.close();
|
await replicator.close();
|
||||||
|
|||||||
@@ -1,21 +1,10 @@
|
|||||||
import { TempDir } from "./helpers/temp.ts";
|
import { TempDir } from "./helpers/temp.ts";
|
||||||
import {
|
import { applyRemoteSyncSettings, initSettingsFile } from "./helpers/settings.ts";
|
||||||
applyRemoteSyncSettings,
|
|
||||||
initSettingsFile,
|
|
||||||
} from "./helpers/settings.ts";
|
|
||||||
import { assertFilesEqual, runCliOrFail } from "./helpers/cli.ts";
|
import { assertFilesEqual, runCliOrFail } from "./helpers/cli.ts";
|
||||||
import {
|
import { startCouchdb, stopCouchdb } from "./helpers/docker.ts";
|
||||||
createCouchdbDatabase,
|
import { createDeterministicDataset, type DatasetEntry } from "./helpers/dataset.ts";
|
||||||
startCouchdb,
|
|
||||||
stopCouchdb,
|
|
||||||
} from "./helpers/docker.ts";
|
|
||||||
import {
|
|
||||||
createDeterministicDataset,
|
|
||||||
type DatasetEntry,
|
|
||||||
} from "./helpers/dataset.ts";
|
|
||||||
|
|
||||||
type BenchmarkConfig = {
|
type BenchmarkConfig = {
|
||||||
caseName: string;
|
|
||||||
couchdbBackendUri: string;
|
couchdbBackendUri: string;
|
||||||
couchdbProxyUri: string;
|
couchdbProxyUri: string;
|
||||||
couchdbUser: string;
|
couchdbUser: string;
|
||||||
@@ -32,12 +21,6 @@ type BenchmarkConfig = {
|
|||||||
requestedRttMs: number;
|
requestedRttMs: number;
|
||||||
passphrase: string;
|
passphrase: string;
|
||||||
encrypt: boolean;
|
encrypt: boolean;
|
||||||
managedCouchdb: boolean;
|
|
||||||
simulationTier: string;
|
|
||||||
networkProfile: string;
|
|
||||||
networkModel: string;
|
|
||||||
measurementScope: string;
|
|
||||||
limitations: string[];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function readEnvString(name: string, fallback: string): string {
|
function readEnvString(name: string, fallback: string): string {
|
||||||
@@ -66,30 +49,6 @@ function readEnvBool(name: string, fallback: boolean): boolean {
|
|||||||
return /^(1|true|yes|on)$/i.test(raw.trim());
|
return /^(1|true|yes|on)$/i.test(raw.trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
function readEnvStringArray(name: string, fallback: string[]): string[] {
|
|
||||||
const raw = Deno.env.get(name)?.trim();
|
|
||||||
if (!raw) {
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(raw);
|
|
||||||
if (
|
|
||||||
Array.isArray(parsed) &&
|
|
||||||
parsed.every((item) => typeof item === "string")
|
|
||||||
) {
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// Fall through to pipe-separated parsing for hand-written invocations.
|
|
||||||
}
|
|
||||||
|
|
||||||
return raw
|
|
||||||
.split("|")
|
|
||||||
.map((item) => item.trim())
|
|
||||||
.filter((item) => item.length > 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
function nowMs(): number {
|
function nowMs(): number {
|
||||||
return performance.now();
|
return performance.now();
|
||||||
}
|
}
|
||||||
@@ -111,58 +70,22 @@ function formatBytes(value: number): string {
|
|||||||
|
|
||||||
function buildConfig(): BenchmarkConfig {
|
function buildConfig(): BenchmarkConfig {
|
||||||
return {
|
return {
|
||||||
caseName: readEnvString("BENCH_CASE", "couchdb-baseline"),
|
couchdbBackendUri: readEnvString("BENCH_COUCHDB_BACKEND_URI", "http://127.0.0.1:5989"),
|
||||||
couchdbBackendUri: readEnvString(
|
couchdbProxyUri: readEnvString("BENCH_COUCHDB_URI", "http://127.0.0.1:15989"),
|
||||||
"BENCH_COUCHDB_BACKEND_URI",
|
couchdbUser: readEnvString("BENCH_COUCHDB_USER", readEnvString("username", "admin")),
|
||||||
"http://127.0.0.1:5989",
|
couchdbPassword: readEnvString("BENCH_COUCHDB_PASSWORD", readEnvString("password", "password")),
|
||||||
),
|
couchdbDbname: readEnvString("BENCH_COUCHDB_DBNAME", `bench-couchdb-${Date.now()}`),
|
||||||
couchdbProxyUri: readEnvString(
|
|
||||||
"BENCH_COUCHDB_URI",
|
|
||||||
"http://127.0.0.1:15989",
|
|
||||||
),
|
|
||||||
couchdbUser: readEnvString(
|
|
||||||
"BENCH_COUCHDB_USER",
|
|
||||||
readEnvString("username", "admin"),
|
|
||||||
),
|
|
||||||
couchdbPassword: readEnvString(
|
|
||||||
"BENCH_COUCHDB_PASSWORD",
|
|
||||||
readEnvString("password", "password"),
|
|
||||||
),
|
|
||||||
couchdbDbname: readEnvString(
|
|
||||||
"BENCH_COUCHDB_DBNAME",
|
|
||||||
`bench-couchdb-${Date.now()}`,
|
|
||||||
),
|
|
||||||
datasetDirName: readEnvString("BENCH_DATASET_DIR", "bench-dataset"),
|
datasetDirName: readEnvString("BENCH_DATASET_DIR", "bench-dataset"),
|
||||||
datasetSeed: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
datasetSeed: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
||||||
mdFileCount: Math.floor(readEnvNumber("BENCH_MD_FILE_COUNT", 1500)),
|
mdFileCount: Math.floor(readEnvNumber("BENCH_MD_FILE_COUNT", 1500)),
|
||||||
mdMinSizeBytes: Math.floor(
|
mdMinSizeBytes: Math.floor(readEnvNumber("BENCH_MD_MIN_SIZE_BYTES", 1024)),
|
||||||
readEnvNumber("BENCH_MD_MIN_SIZE_BYTES", 1024),
|
mdMaxSizeBytes: Math.floor(readEnvNumber("BENCH_MD_MAX_SIZE_BYTES", 20 * 1024)),
|
||||||
),
|
|
||||||
mdMaxSizeBytes: Math.floor(
|
|
||||||
readEnvNumber("BENCH_MD_MAX_SIZE_BYTES", 20 * 1024),
|
|
||||||
),
|
|
||||||
binFileCount: Math.floor(readEnvNumber("BENCH_BIN_FILE_COUNT", 500)),
|
binFileCount: Math.floor(readEnvNumber("BENCH_BIN_FILE_COUNT", 500)),
|
||||||
binSizeBytes: Math.floor(
|
binSizeBytes: Math.floor(readEnvNumber("BENCH_BIN_SIZE_BYTES", 100 * 1024)),
|
||||||
readEnvNumber("BENCH_BIN_SIZE_BYTES", 100 * 1024),
|
|
||||||
),
|
|
||||||
syncTimeoutSeconds: readEnvNumber("BENCH_SYNC_TIMEOUT", 240),
|
syncTimeoutSeconds: readEnvNumber("BENCH_SYNC_TIMEOUT", 240),
|
||||||
requestedRttMs: Math.floor(readEnvNumber("BENCH_COUCHDB_RTT_MS", 50)),
|
requestedRttMs: Math.floor(readEnvNumber("BENCH_COUCHDB_RTT_MS", 50)),
|
||||||
passphrase: readEnvString("BENCH_PASSPHRASE", `bench-${Date.now()}`),
|
passphrase: readEnvString("BENCH_PASSPHRASE", `bench-${Date.now()}`),
|
||||||
encrypt: readEnvBool("BENCH_ENCRYPT", true),
|
encrypt: readEnvBool("BENCH_ENCRYPT", true),
|
||||||
managedCouchdb: readEnvBool("BENCH_COUCHDB_MANAGED", true),
|
|
||||||
simulationTier: readEnvString("BENCH_SIMULATION_TIER", "1"),
|
|
||||||
networkProfile: readEnvString(
|
|
||||||
"BENCH_NETWORK_PROFILE",
|
|
||||||
"http-latency-proxy",
|
|
||||||
),
|
|
||||||
networkModel: readEnvString("BENCH_NETWORK_MODEL", "local-http-proxy"),
|
|
||||||
measurementScope: readEnvString(
|
|
||||||
"BENCH_MEASUREMENT_SCOPE",
|
|
||||||
"Two one-shot synchronisation phases through a CouchDB-compatible remote-store path.",
|
|
||||||
),
|
|
||||||
limitations: readEnvStringArray("BENCH_LIMITATIONS_JSON", [
|
|
||||||
"This benchmark result is scoped to the configured dataset, remote store, and network model.",
|
|
||||||
]),
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,9 +120,7 @@ type ProxyHandle = {
|
|||||||
note: string;
|
note: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
function startCouchdbProxy(
|
function startCouchdbProxy(options: { backendUri: string; proxyUri: string; requestedRttMs: number }): ProxyHandle {
|
||||||
options: { backendUri: string; proxyUri: string; requestedRttMs: number },
|
|
||||||
): ProxyHandle {
|
|
||||||
const backend = new URL(options.backendUri);
|
const backend = new URL(options.backendUri);
|
||||||
const proxy = new URL(options.proxyUri);
|
const proxy = new URL(options.proxyUri);
|
||||||
const halfDelayMs = Math.max(1, Math.floor(options.requestedRttMs / 2));
|
const halfDelayMs = Math.max(1, Math.floor(options.requestedRttMs / 2));
|
||||||
@@ -251,13 +172,12 @@ function startCouchdbProxy(
|
|||||||
statusText: upstream.statusText,
|
statusText: upstream.statusText,
|
||||||
headers: responseHeaders,
|
headers: responseHeaders,
|
||||||
});
|
});
|
||||||
},
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
applied: true,
|
applied: true,
|
||||||
note:
|
note: `local reverse proxy on ${proxy.origin} with ${halfDelayMs}ms pre-forward delay`,
|
||||||
`local reverse proxy on ${proxy.origin} with ${halfDelayMs}ms pre-forward delay`,
|
|
||||||
stop: async () => {
|
stop: async () => {
|
||||||
controller.abort();
|
controller.abort();
|
||||||
await listener.finished.catch(() => {});
|
await listener.finished.catch(() => {});
|
||||||
@@ -280,24 +200,7 @@ async function main(): Promise<void> {
|
|||||||
await initSettingsFile(settingsA);
|
await initSettingsFile(settingsA);
|
||||||
await initSettingsFile(settingsB);
|
await initSettingsFile(settingsB);
|
||||||
|
|
||||||
if (config.managedCouchdb) {
|
await startCouchdb(config.couchdbBackendUri, config.couchdbUser, config.couchdbPassword, config.couchdbDbname);
|
||||||
await startCouchdb(
|
|
||||||
config.couchdbBackendUri,
|
|
||||||
config.couchdbUser,
|
|
||||||
config.couchdbPassword,
|
|
||||||
config.couchdbDbname,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
console.log(
|
|
||||||
`[INFO] using externally managed CouchDB: ${config.couchdbBackendUri}`,
|
|
||||||
);
|
|
||||||
await createCouchdbDatabase(
|
|
||||||
config.couchdbBackendUri,
|
|
||||||
config.couchdbUser,
|
|
||||||
config.couchdbPassword,
|
|
||||||
config.couchdbDbname,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const proxy = startCouchdbProxy({
|
const proxy = startCouchdbProxy({
|
||||||
backendUri: config.couchdbBackendUri,
|
backendUri: config.couchdbBackendUri,
|
||||||
@@ -352,36 +255,20 @@ async function main(): Promise<void> {
|
|||||||
|
|
||||||
const sampleFiles = pickSampleFiles(seedFiles.entries);
|
const sampleFiles = pickSampleFiles(seedFiles.entries);
|
||||||
for (const sample of sampleFiles) {
|
for (const sample of sampleFiles) {
|
||||||
const pulledPath = workDir.join(
|
const pulledPath = workDir.join(`pulled-${sample.relativePath.split("/").join("_")}`);
|
||||||
`pulled-${sample.relativePath.split("/").join("_")}`,
|
await runCliOrFail(vaultB, "--settings", settingsB, "pull", sample.relativePath, pulledPath);
|
||||||
);
|
|
||||||
await runCliOrFail(
|
|
||||||
vaultB,
|
|
||||||
"--settings",
|
|
||||||
settingsB,
|
|
||||||
"pull",
|
|
||||||
sample.relativePath,
|
|
||||||
pulledPath,
|
|
||||||
);
|
|
||||||
await assertFilesEqual(
|
await assertFilesEqual(
|
||||||
sample.absolutePath,
|
sample.absolutePath,
|
||||||
pulledPath,
|
pulledPath,
|
||||||
`sample file mismatch after CouchDB sync: ${sample.relativePath}`,
|
`sample file mismatch after CouchDB sync: ${sample.relativePath}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = {
|
const result = {
|
||||||
caseName: config.caseName,
|
|
||||||
mode: "couchdb-cli-benchmark",
|
mode: "couchdb-cli-benchmark",
|
||||||
couchdbBackendUri: config.couchdbBackendUri,
|
couchdbBackendUri: config.couchdbBackendUri,
|
||||||
couchdbProxyUri: config.couchdbProxyUri,
|
couchdbProxyUri: config.couchdbProxyUri,
|
||||||
couchdbDbname: config.couchdbDbname,
|
couchdbDbname: config.couchdbDbname,
|
||||||
managedCouchdb: config.managedCouchdb,
|
|
||||||
simulationTier: config.simulationTier,
|
|
||||||
networkProfile: config.networkProfile,
|
|
||||||
networkModel: config.networkModel,
|
|
||||||
measurementScope: config.measurementScope,
|
|
||||||
limitations: config.limitations,
|
|
||||||
rttRequestedMs: config.requestedRttMs,
|
rttRequestedMs: config.requestedRttMs,
|
||||||
proxyApplied: proxy.applied,
|
proxyApplied: proxy.applied,
|
||||||
proxyNote: proxy.note,
|
proxyNote: proxy.note,
|
||||||
@@ -394,47 +281,27 @@ async function main(): Promise<void> {
|
|||||||
mirrorElapsedMs: Number(mirrorElapsed.toFixed(1)),
|
mirrorElapsedMs: Number(mirrorElapsed.toFixed(1)),
|
||||||
syncAElapsedMs: Number(syncAElapsed.toFixed(1)),
|
syncAElapsedMs: Number(syncAElapsed.toFixed(1)),
|
||||||
syncBElapsedMs: Number(syncBElapsed.toFixed(1)),
|
syncBElapsedMs: Number(syncBElapsed.toFixed(1)),
|
||||||
totalSyncElapsedMs: Number(
|
totalSyncElapsedMs: Number((syncAElapsed + syncBElapsed).toFixed(1)),
|
||||||
(syncAElapsed + syncBElapsed).toFixed(1),
|
throughputBytesPerSec: Number((seedFiles.totalBytes / ((syncAElapsed + syncBElapsed) / 1000)).toFixed(2)),
|
||||||
),
|
|
||||||
throughputBytesPerSec: Number(
|
|
||||||
(seedFiles.totalBytes / ((syncAElapsed + syncBElapsed) / 1000))
|
|
||||||
.toFixed(
|
|
||||||
2,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
throughputMiBPerSec: Number(
|
throughputMiBPerSec: Number(
|
||||||
(seedFiles.totalBytes / ((syncAElapsed + syncBElapsed) / 1000) /
|
(seedFiles.totalBytes / ((syncAElapsed + syncBElapsed) / 1000) / 1024 / 1024).toFixed(4)
|
||||||
1024 /
|
|
||||||
1024).toFixed(4),
|
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
if (resultPath) {
|
if (resultPath) {
|
||||||
await Deno.writeTextFile(
|
await Deno.writeTextFile(resultPath, JSON.stringify(result, null, 2));
|
||||||
resultPath,
|
|
||||||
JSON.stringify(result, null, 2),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(JSON.stringify(result, null, 2));
|
console.log(JSON.stringify(result, null, 2));
|
||||||
console.error(
|
console.error(
|
||||||
`[Benchmark] couchdb mirrored ${seedFiles.totalFiles} files (${
|
`[Benchmark] couchdb mirrored ${seedFiles.totalFiles} files (${formatBytes(seedFiles.totalBytes)}) in ${formatMs(
|
||||||
formatBytes(seedFiles.totalBytes)
|
mirrorElapsed
|
||||||
}) in ${
|
)}, synced in ${formatMs(syncAElapsed + syncBElapsed)} (${result.throughputBytesPerSec} B/s, ${result.throughputMiBPerSec} MiB/s)`
|
||||||
formatMs(
|
|
||||||
mirrorElapsed,
|
|
||||||
)
|
|
||||||
}, synced in ${
|
|
||||||
formatMs(syncAElapsed + syncBElapsed)
|
|
||||||
} (${result.throughputBytesPerSec} B/s, ${result.throughputMiBPerSec} MiB/s)`,
|
|
||||||
);
|
);
|
||||||
} finally {
|
} finally {
|
||||||
await proxy.stop();
|
await proxy.stop();
|
||||||
if (config.managedCouchdb) {
|
|
||||||
await stopCouchdb().catch(() => {});
|
await stopCouchdb().catch(() => {});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (import.meta.main) {
|
if (import.meta.main) {
|
||||||
|
|||||||
@@ -1,133 +0,0 @@
|
|||||||
type SweepResult = {
|
|
||||||
name: string;
|
|
||||||
runner: "p2p" | "couchdb";
|
|
||||||
rttMs?: number;
|
|
||||||
result: Record<string, unknown>;
|
|
||||||
};
|
|
||||||
|
|
||||||
function readEnvString(name: string, fallback: string): string {
|
|
||||||
const value = Deno.env.get(name)?.trim();
|
|
||||||
return value && value.length > 0 ? value : fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function timestamp(): string {
|
|
||||||
const d = new Date();
|
|
||||||
const pad = (n: number) => String(n).padStart(2, "0");
|
|
||||||
return (
|
|
||||||
`${d.getUTCFullYear()}${pad(d.getUTCMonth() + 1)}${pad(d.getUTCDate())}-` +
|
|
||||||
`${pad(d.getUTCHours())}${pad(d.getUTCMinutes())}${pad(d.getUTCSeconds())}`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseRttList(raw: string): number[] {
|
|
||||||
const values = raw
|
|
||||||
.split(",")
|
|
||||||
.map((value) => Number(value.trim()))
|
|
||||||
.filter((value) => Number.isFinite(value) && value > 0)
|
|
||||||
.map((value) => Math.floor(value));
|
|
||||||
if (values.length === 0) {
|
|
||||||
throw new Error(`BENCH_SWEEP_RTT_MS must contain at least one positive number, got '${raw}'`);
|
|
||||||
}
|
|
||||||
return values;
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildBaseEnv(): Record<string, string> {
|
|
||||||
return {
|
|
||||||
BENCH_MD_FILE_COUNT: readEnvString("BENCH_MD_FILE_COUNT", "20"),
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: readEnvString("BENCH_MD_MIN_SIZE_BYTES", "512"),
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: readEnvString("BENCH_MD_MAX_SIZE_BYTES", "2048"),
|
|
||||||
BENCH_BIN_FILE_COUNT: readEnvString("BENCH_BIN_FILE_COUNT", "5"),
|
|
||||||
BENCH_BIN_SIZE_BYTES: readEnvString("BENCH_BIN_SIZE_BYTES", "8192"),
|
|
||||||
BENCH_SYNC_TIMEOUT: readEnvString("BENCH_SYNC_TIMEOUT", "300"),
|
|
||||||
BENCH_PEERS_TIMEOUT: readEnvString("BENCH_PEERS_TIMEOUT", "60"),
|
|
||||||
BENCH_SEED: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
|
||||||
LIVESYNC_TEST_TEE: readEnvString("BENCH_LIVESYNC_TEST_TEE", "0"),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async function runBenchmark(options: {
|
|
||||||
taskName: "bench:p2p" | "bench:couchdb";
|
|
||||||
name: string;
|
|
||||||
outputDir: string;
|
|
||||||
env: Record<string, string>;
|
|
||||||
}): Promise<Record<string, unknown>> {
|
|
||||||
const resultPath = `${options.outputDir}/${options.name}.json`;
|
|
||||||
const env = {
|
|
||||||
...Deno.env.toObject(),
|
|
||||||
...options.env,
|
|
||||||
BENCH_RESULT_JSON: resultPath,
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log(`[latency-sweep] running ${options.name}`);
|
|
||||||
const child = new Deno.Command("deno", {
|
|
||||||
args: ["task", options.taskName],
|
|
||||||
cwd: import.meta.dirname,
|
|
||||||
env,
|
|
||||||
stdin: "null",
|
|
||||||
stdout: "inherit",
|
|
||||||
stderr: "inherit",
|
|
||||||
}).spawn();
|
|
||||||
const status = await child.status;
|
|
||||||
if (status.code !== 0) {
|
|
||||||
throw new Error(`benchmark failed: ${options.name} (exit ${status.code})`);
|
|
||||||
}
|
|
||||||
return JSON.parse(await Deno.readTextFile(resultPath)) as Record<string, unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
|
||||||
const outRoot = readEnvString("BENCH_SWEEP_ROOT", `${import.meta.dirname}/bench-results`);
|
|
||||||
const outputDir = `${outRoot}/latency-sweep-${timestamp()}`;
|
|
||||||
const rtts = parseRttList(readEnvString("BENCH_SWEEP_RTT_MS", "20,50,100,150,300"));
|
|
||||||
const base = buildBaseEnv();
|
|
||||||
|
|
||||||
await Deno.mkdir(outputDir, { recursive: true });
|
|
||||||
|
|
||||||
const results: SweepResult[] = [];
|
|
||||||
if (readEnvString("BENCH_SWEEP_INCLUDE_P2P", "true") !== "false") {
|
|
||||||
const p2pResult = await runBenchmark({
|
|
||||||
taskName: "bench:p2p",
|
|
||||||
name: "p2p-direct-local",
|
|
||||||
outputDir,
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "p2p-direct-local",
|
|
||||||
BENCH_TURN_SERVERS: "",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
results.push({ name: "p2p-direct-local", runner: "p2p", result: p2pResult });
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const rtt of rtts) {
|
|
||||||
const name = `couchdb-rtt-${rtt}ms`;
|
|
||||||
const couchdbResult = await runBenchmark({
|
|
||||||
taskName: "bench:couchdb",
|
|
||||||
name,
|
|
||||||
outputDir,
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: name,
|
|
||||||
BENCH_COUCHDB_RTT_MS: String(rtt),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
results.push({ name, runner: "couchdb", rttMs: rtt, result: couchdbResult });
|
|
||||||
}
|
|
||||||
|
|
||||||
const summary = {
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
outputDir,
|
|
||||||
note:
|
|
||||||
"This sweep models additional remote CouchDB request latency through the existing HTTP proxy. It is not a full netem model of jitter, loss, MTU, bandwidth, or VPN encapsulation.",
|
|
||||||
rtts,
|
|
||||||
results,
|
|
||||||
};
|
|
||||||
await Deno.writeTextFile(`${outputDir}/summary.json`, JSON.stringify(summary, null, 2));
|
|
||||||
console.log(JSON.stringify(summary, null, 2));
|
|
||||||
console.log(`[latency-sweep] result directory: ${outputDir}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (import.meta.main) {
|
|
||||||
main().catch((error) => {
|
|
||||||
console.error("[Fatal Error]", error);
|
|
||||||
Deno.exit(1);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,443 +0,0 @@
|
|||||||
export type BenchmarkCase = {
|
|
||||||
name: string;
|
|
||||||
runner: "p2p" | "couchdb";
|
|
||||||
description: string;
|
|
||||||
dataPath: string;
|
|
||||||
trustBoundary: string;
|
|
||||||
measurementScope: string;
|
|
||||||
limitations: string[];
|
|
||||||
env: Record<string, string>;
|
|
||||||
};
|
|
||||||
|
|
||||||
function readEnvString(name: string, fallback: string): string {
|
|
||||||
const value = Deno.env.get(name)?.trim();
|
|
||||||
return value && value.length > 0 ? value : fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function readEnvInteger(name: string, fallback: number): number {
|
|
||||||
const value = readEnvString(name, String(fallback));
|
|
||||||
const parsed = Number(value);
|
|
||||||
if (!Number.isInteger(parsed) || parsed < 1) {
|
|
||||||
throw new Error(`${name} must be a positive integer, got '${value}'`);
|
|
||||||
}
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
|
|
||||||
function timestamp(): string {
|
|
||||||
const d = new Date();
|
|
||||||
const pad = (n: number) => String(n).padStart(2, "0");
|
|
||||||
return (
|
|
||||||
`${d.getUTCFullYear()}${pad(d.getUTCMonth() + 1)}${
|
|
||||||
pad(d.getUTCDate())
|
|
||||||
}-` +
|
|
||||||
`${pad(d.getUTCHours())}${pad(d.getUTCMinutes())}${
|
|
||||||
pad(d.getUTCSeconds())
|
|
||||||
}`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildBaseEnv(): Record<string, string> {
|
|
||||||
return {
|
|
||||||
BENCH_MD_FILE_COUNT: readEnvString("BENCH_MD_FILE_COUNT", "20"),
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: readEnvString(
|
|
||||||
"BENCH_MD_MIN_SIZE_BYTES",
|
|
||||||
"512",
|
|
||||||
),
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: readEnvString(
|
|
||||||
"BENCH_MD_MAX_SIZE_BYTES",
|
|
||||||
"2048",
|
|
||||||
),
|
|
||||||
BENCH_BIN_FILE_COUNT: readEnvString("BENCH_BIN_FILE_COUNT", "5"),
|
|
||||||
BENCH_BIN_SIZE_BYTES: readEnvString("BENCH_BIN_SIZE_BYTES", "8192"),
|
|
||||||
BENCH_SYNC_TIMEOUT: readEnvString("BENCH_SYNC_TIMEOUT", "300"),
|
|
||||||
BENCH_PEERS_TIMEOUT: readEnvString("BENCH_PEERS_TIMEOUT", "60"),
|
|
||||||
BENCH_SEED: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
|
||||||
LIVESYNC_TEST_TEE: readEnvString("BENCH_LIVESYNC_TEST_TEE", "0"),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function withScopeEnv(
|
|
||||||
env: Record<string, string>,
|
|
||||||
options: Pick<BenchmarkCase, "measurementScope" | "limitations">,
|
|
||||||
): Record<string, string> {
|
|
||||||
return {
|
|
||||||
...env,
|
|
||||||
BENCH_MEASUREMENT_SCOPE: options.measurementScope,
|
|
||||||
BENCH_LIMITATIONS_JSON: JSON.stringify(options.limitations),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function defineCase(testCase: BenchmarkCase): BenchmarkCase {
|
|
||||||
return {
|
|
||||||
...testCase,
|
|
||||||
env: withScopeEnv(testCase.env, testCase),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export function buildCases(): BenchmarkCase[] {
|
|
||||||
const base = buildBaseEnv();
|
|
||||||
const couchdbRtt = readEnvString("BENCH_COUCHDB_RTT_MS", "20");
|
|
||||||
const tetheringVpnRtt = readEnvString("BENCH_TETHERING_VPN_RTT_MS", "120");
|
|
||||||
const localTurnServers = readEnvString(
|
|
||||||
"BENCH_LOCAL_TURN_SERVERS",
|
|
||||||
"turn:127.0.0.1:3478",
|
|
||||||
);
|
|
||||||
const shimCouchdbUri = readEnvString(
|
|
||||||
"BENCH_SHIM_COUCHDB_URI",
|
|
||||||
"http://couchdb-shim:5984",
|
|
||||||
);
|
|
||||||
const signallingShimRelay = readEnvString(
|
|
||||||
"BENCH_SIGNAL_SHIM_RELAY",
|
|
||||||
"ws://p2p-signalling-shim:7777/",
|
|
||||||
);
|
|
||||||
|
|
||||||
return [
|
|
||||||
defineCase({
|
|
||||||
name: "couchdb-baseline",
|
|
||||||
runner: "couchdb",
|
|
||||||
description:
|
|
||||||
"Standard self-hosted CouchDB path through a local latency proxy.",
|
|
||||||
dataPath: "Device A -> CouchDB -> Device B",
|
|
||||||
trustBoundary: "CouchDB operator and network path",
|
|
||||||
measurementScope:
|
|
||||||
"Two one-shot synchronisation phases through a CouchDB-compatible remote-store path with a local HTTP latency proxy.",
|
|
||||||
limitations: [
|
|
||||||
"This is not a full netem model of packet loss, jitter, MTU, bandwidth limits, or VPN encapsulation.",
|
|
||||||
"This result should be compared with P2P only as a remote-store baseline under the same deterministic dataset.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "couchdb-baseline",
|
|
||||||
BENCH_COUCHDB_RTT_MS: couchdbRtt,
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "p2p-direct-local",
|
|
||||||
runner: "p2p",
|
|
||||||
description:
|
|
||||||
"Preferred direct WebRTC P2P path with Nostr signalling and TURN disabled.",
|
|
||||||
dataPath: "Device A -> Device B",
|
|
||||||
trustBoundary: "Nostr relay for signalling metadata; no TURN relay",
|
|
||||||
measurementScope:
|
|
||||||
"One CLI P2P synchronisation phase over a local WebRTC DataChannel after Nostr signalling, with TURN disabled.",
|
|
||||||
limitations: [
|
|
||||||
"This does not measure first-peer discovery latency, public relay operation, mobile carrier behaviour, or TURN-relayed throughput.",
|
|
||||||
"This small-dataset run should not be treated as a WAN, VPN, or large binary initial synchronisation measurement.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "p2p-direct-local",
|
|
||||||
BENCH_TURN_SERVERS: "",
|
|
||||||
BENCH_SIMULATION_TIER: "1",
|
|
||||||
BENCH_NETWORK_PROFILE: "local-direct",
|
|
||||||
BENCH_NETWORK_MODEL: "local-runner-webrtc",
|
|
||||||
BENCH_P2P_CANDIDATE_PATH_VERIFICATION:
|
|
||||||
"turn-disabled-but-selected-ice-pair-not-collected",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "couchdb-tethering-vpn-proxy",
|
|
||||||
runner: "couchdb",
|
|
||||||
description:
|
|
||||||
"Approximate smartphone tethering/VPN remote-database path using an HTTP latency proxy. This does not model loss, jitter, MTU, or VPN encapsulation.",
|
|
||||||
dataPath:
|
|
||||||
"Device A -> VPN/network path -> CouchDB -> VPN/network path -> Device B",
|
|
||||||
trustBoundary: "VPN/network path and CouchDB operator",
|
|
||||||
measurementScope:
|
|
||||||
"Two one-shot CouchDB synchronisation phases with additional requested RTT through the local HTTP proxy.",
|
|
||||||
limitations: [
|
|
||||||
"This approximates request latency only and does not model loss, jitter, MTU, bandwidth limits, carrier NAT, or VPN encapsulation.",
|
|
||||||
"Use the Tier 2 netem shim cases for a stronger constrained-network fixture.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "couchdb-tethering-vpn-proxy",
|
|
||||||
BENCH_COUCHDB_RTT_MS: tetheringVpnRtt,
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "couchdb-netem-home-wifi",
|
|
||||||
runner: "couchdb",
|
|
||||||
description:
|
|
||||||
"Tier 2 CouchDB path through the Compose netem TCP shim using the home-wifi profile.",
|
|
||||||
dataPath:
|
|
||||||
"Device A -> netem TCP shim -> CouchDB -> netem TCP shim -> Device B",
|
|
||||||
trustBoundary: "CouchDB operator and constrained network shim",
|
|
||||||
measurementScope:
|
|
||||||
"Tier 2 CouchDB synchronisation through a Compose TCP shim that applies the home-wifi netem profile.",
|
|
||||||
limitations: [
|
|
||||||
"This shapes the CouchDB TCP path, not the WebRTC P2P data path.",
|
|
||||||
"The fixture remains a reproducible network emulation, not a field measurement on a real home network.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "couchdb-netem-home-wifi",
|
|
||||||
BENCH_COUCHDB_BACKEND_URI: shimCouchdbUri,
|
|
||||||
BENCH_COUCHDB_RTT_MS: "1",
|
|
||||||
BENCH_SIMULATION_TIER: "2",
|
|
||||||
BENCH_NETWORK_PROFILE: "home-wifi",
|
|
||||||
BENCH_NETWORK_MODEL: "compose-netem-tcp-shim",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "couchdb-netem-tethering-vpn",
|
|
||||||
runner: "couchdb",
|
|
||||||
description:
|
|
||||||
"Tier 2 CouchDB path through the Compose netem TCP shim using a tethering-vpn profile.",
|
|
||||||
dataPath:
|
|
||||||
"Device A -> netem TCP shim -> CouchDB -> netem TCP shim -> Device B",
|
|
||||||
trustBoundary:
|
|
||||||
"CouchDB operator and constrained smartphone/VPN-like network shim",
|
|
||||||
measurementScope:
|
|
||||||
"Tier 2 CouchDB synchronisation through a Compose TCP shim that applies the tethering-vpn netem profile.",
|
|
||||||
limitations: [
|
|
||||||
"This shapes the CouchDB TCP path, not the WebRTC P2P data path.",
|
|
||||||
"The profile approximates smartphone/VPN constraints but is not a field measurement on a real tethered VPN connection.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "couchdb-netem-tethering-vpn",
|
|
||||||
BENCH_COUCHDB_BACKEND_URI: shimCouchdbUri,
|
|
||||||
BENCH_COUCHDB_RTT_MS: "1",
|
|
||||||
BENCH_SIMULATION_TIER: "2",
|
|
||||||
BENCH_NETWORK_PROFILE: "tethering-vpn",
|
|
||||||
BENCH_NETWORK_MODEL: "compose-netem-tcp-shim",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "p2p-smartphone-vpn-direct",
|
|
||||||
runner: "p2p",
|
|
||||||
description:
|
|
||||||
"Direct P2P case name for smartphone tethering/VPN measurements. In this local runner it is unshaped and should be treated as a wiring check unless executed on that network.",
|
|
||||||
dataPath:
|
|
||||||
"Device A -> Device B when WebRTC direct connectivity succeeds",
|
|
||||||
trustBoundary:
|
|
||||||
"Smartphone/VPN routing policy plus Nostr signalling metadata",
|
|
||||||
measurementScope:
|
|
||||||
"Structural placeholder for direct P2P measurements on a real smartphone tethering/VPN path.",
|
|
||||||
limitations: [
|
|
||||||
"In the local runner this is unshaped and must not be reported as smartphone, VPN, WAN, or Tier 2 evidence.",
|
|
||||||
"Use only when the command is executed on the intended real network path and the selected ICE candidate pair is recorded.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "p2p-smartphone-vpn-direct",
|
|
||||||
BENCH_TURN_SERVERS: "",
|
|
||||||
BENCH_SIMULATION_TIER: "unmeasured",
|
|
||||||
BENCH_NETWORK_PROFILE: "smartphone-vpn-direct-placeholder",
|
|
||||||
BENCH_NETWORK_MODEL: "local-runner-no-netem",
|
|
||||||
BENCH_P2P_CANDIDATE_PATH_VERIFICATION:
|
|
||||||
"structural-placeholder-only; selected ICE pair may be collected, but the path is not shaped",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "p2p-signalling-netem-home-wifi",
|
|
||||||
runner: "p2p",
|
|
||||||
description:
|
|
||||||
"Tier 2 P2P path with only the Nostr signalling relay accessed through the home-wifi netem shim.",
|
|
||||||
dataPath:
|
|
||||||
"Device A -> Device B over WebRTC DataChannel; Nostr signalling through netem shim",
|
|
||||||
trustBoundary:
|
|
||||||
"Nostr signalling metadata through constrained network shim; no TURN relay",
|
|
||||||
measurementScope:
|
|
||||||
"Tier 2 P2P synchronisation where only the Nostr signalling path is shaped by the home-wifi netem profile.",
|
|
||||||
limitations: [
|
|
||||||
"This does not shape the selected WebRTC DataChannel note-data path.",
|
|
||||||
"This supports only the claim that constrained signalling access does not place note data on the relay path when a non-relayed ICE path is selected.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "p2p-signalling-netem-home-wifi",
|
|
||||||
BENCH_RELAY: signallingShimRelay,
|
|
||||||
BENCH_TURN_SERVERS: "",
|
|
||||||
BENCH_SIMULATION_TIER: "2",
|
|
||||||
BENCH_NETWORK_PROFILE: "home-wifi",
|
|
||||||
BENCH_NETWORK_MODEL: "compose-netem-signalling-shim",
|
|
||||||
BENCH_P2P_CANDIDATE_PATH_VERIFICATION:
|
|
||||||
"selected ICE pair collected; only Nostr signalling path is shaped",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "p2p-signalling-netem-tethering-vpn",
|
|
||||||
runner: "p2p",
|
|
||||||
description:
|
|
||||||
"Tier 2 P2P path with only the Nostr signalling relay accessed through the tethering-vpn netem shim.",
|
|
||||||
dataPath:
|
|
||||||
"Device A -> Device B over WebRTC DataChannel; Nostr signalling through netem shim",
|
|
||||||
trustBoundary:
|
|
||||||
"Nostr signalling metadata through constrained smartphone/VPN-like network shim; no TURN relay",
|
|
||||||
measurementScope:
|
|
||||||
"Tier 2 P2P synchronisation where only the Nostr signalling path is shaped by the tethering-vpn netem profile.",
|
|
||||||
limitations: [
|
|
||||||
"This does not shape the selected WebRTC DataChannel note-data path.",
|
|
||||||
"The profile approximates constrained relay access and is not a field measurement on a real tethered VPN connection.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "p2p-signalling-netem-tethering-vpn",
|
|
||||||
BENCH_RELAY: signallingShimRelay,
|
|
||||||
BENCH_TURN_SERVERS: "",
|
|
||||||
BENCH_SIMULATION_TIER: "2",
|
|
||||||
BENCH_NETWORK_PROFILE: "tethering-vpn",
|
|
||||||
BENCH_NETWORK_MODEL: "compose-netem-signalling-shim",
|
|
||||||
BENCH_P2P_CANDIDATE_PATH_VERIFICATION:
|
|
||||||
"selected ICE pair collected; only Nostr signalling path is shaped",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
defineCase({
|
|
||||||
name: "p2p-user-turn",
|
|
||||||
runner: "p2p",
|
|
||||||
description:
|
|
||||||
"Optional fallback path through a local user-controlled TURN server.",
|
|
||||||
dataPath: "Device A -> user-controlled TURN -> Device B",
|
|
||||||
trustBoundary: "User-controlled TURN server",
|
|
||||||
measurementScope:
|
|
||||||
"Optional local TURN fallback wiring check with a user-controlled TURN server configured.",
|
|
||||||
limitations: [
|
|
||||||
"TURN configuration does not prove that the selected ICE path was relayed; interpret the recorded candidate pair.",
|
|
||||||
"This is not evidence for public TURN relay privacy, throughput, or availability.",
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
...base,
|
|
||||||
BENCH_CASE: "p2p-user-turn",
|
|
||||||
BENCH_TURN_SERVERS: localTurnServers,
|
|
||||||
BENCH_SIMULATION_TIER: "1",
|
|
||||||
BENCH_NETWORK_PROFILE: "local-turn-fallback",
|
|
||||||
BENCH_NETWORK_MODEL: "local-runner-webrtc-turn-configured",
|
|
||||||
BENCH_P2P_CANDIDATE_PATH_VERIFICATION:
|
|
||||||
"turn-configured; selected ICE pair may still be direct or relayed, so interpret the recorded candidate types",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
async function runCase(
|
|
||||||
testCase: BenchmarkCase,
|
|
||||||
outputDir: string,
|
|
||||||
repeatIndex: number,
|
|
||||||
repeatCount: number,
|
|
||||||
): Promise<Record<string, unknown>> {
|
|
||||||
const suffix = repeatCount > 1
|
|
||||||
? `-r${String(repeatIndex).padStart(2, "0")}`
|
|
||||||
: "";
|
|
||||||
const resultPath = `${outputDir}/${testCase.name}${suffix}.json`;
|
|
||||||
const taskName = testCase.runner === "p2p" ? "bench:p2p" : "bench:couchdb";
|
|
||||||
const env = {
|
|
||||||
...Deno.env.toObject(),
|
|
||||||
...testCase.env,
|
|
||||||
BENCH_RESULT_JSON: resultPath,
|
|
||||||
BENCH_REPEAT_INDEX: String(repeatIndex),
|
|
||||||
BENCH_REPEAT_COUNT: String(repeatCount),
|
|
||||||
};
|
|
||||||
|
|
||||||
const repeatLabel = repeatCount > 1
|
|
||||||
? ` (${repeatIndex}/${repeatCount})`
|
|
||||||
: "";
|
|
||||||
console.log(
|
|
||||||
`[bench-cases] running ${testCase.name}${repeatLabel}: ${testCase.description}`,
|
|
||||||
);
|
|
||||||
const command = new Deno.Command("deno", {
|
|
||||||
args: ["task", taskName],
|
|
||||||
cwd: import.meta.dirname,
|
|
||||||
env,
|
|
||||||
stdin: "null",
|
|
||||||
stdout: "inherit",
|
|
||||||
stderr: "inherit",
|
|
||||||
});
|
|
||||||
|
|
||||||
const child = command.spawn();
|
|
||||||
const status = await child.status;
|
|
||||||
if (status.code !== 0) {
|
|
||||||
throw new Error(`case failed: ${testCase.name} (exit ${status.code})`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = JSON.parse(await Deno.readTextFile(resultPath)) as Record<
|
|
||||||
string,
|
|
||||||
unknown
|
|
||||||
>;
|
|
||||||
return {
|
|
||||||
...testCase,
|
|
||||||
repeatIndex,
|
|
||||||
repeatCount,
|
|
||||||
resultPath,
|
|
||||||
result,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function selectCases(allCases: BenchmarkCase[]): BenchmarkCase[] {
|
|
||||||
const requested = readEnvString(
|
|
||||||
"BENCH_CASES",
|
|
||||||
"couchdb-baseline,p2p-direct-local",
|
|
||||||
);
|
|
||||||
const names = requested
|
|
||||||
.split(",")
|
|
||||||
.map((v) => v.trim())
|
|
||||||
.filter((v) => v.length > 0);
|
|
||||||
const byName = new Map(allCases.map((c) => [c.name, c]));
|
|
||||||
return names.map((name) => {
|
|
||||||
const found = byName.get(name);
|
|
||||||
if (!found) {
|
|
||||||
throw new Error(
|
|
||||||
`Unknown BENCH_CASES entry '${name}'. Available: ${
|
|
||||||
allCases.map((c) => c.name).join(", ")
|
|
||||||
}`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return found;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
|
||||||
const outRoot = readEnvString(
|
|
||||||
"BENCH_CASES_ROOT",
|
|
||||||
`${import.meta.dirname}/bench-results`,
|
|
||||||
);
|
|
||||||
const outputDir = `${outRoot}/cases-${timestamp()}`;
|
|
||||||
await Deno.mkdir(outputDir, { recursive: true });
|
|
||||||
|
|
||||||
const allCases = buildCases();
|
|
||||||
const cases = selectCases(allCases);
|
|
||||||
const repeatCount = readEnvInteger("BENCH_REPEAT_COUNT", 1);
|
|
||||||
await Deno.writeTextFile(
|
|
||||||
`${outputDir}/case-manifest.json`,
|
|
||||||
JSON.stringify(
|
|
||||||
{
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
repeatCount,
|
|
||||||
selectedCases: cases,
|
|
||||||
availableCases: allCases,
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
2,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
const results: Record<string, unknown>[] = [];
|
|
||||||
for (const testCase of cases) {
|
|
||||||
for (let repeatIndex = 1; repeatIndex <= repeatCount; repeatIndex++) {
|
|
||||||
results.push(
|
|
||||||
await runCase(testCase, outputDir, repeatIndex, repeatCount),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const summary = {
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
outputDir,
|
|
||||||
repeatCount,
|
|
||||||
results,
|
|
||||||
};
|
|
||||||
await Deno.writeTextFile(
|
|
||||||
`${outputDir}/summary.json`,
|
|
||||||
JSON.stringify(summary, null, 2),
|
|
||||||
);
|
|
||||||
console.log(JSON.stringify(summary, null, 2));
|
|
||||||
console.log(`[bench-cases] result directory: ${outputDir}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (import.meta.main) {
|
|
||||||
main().catch((error) => {
|
|
||||||
console.error("[Fatal Error]", error);
|
|
||||||
Deno.exit(1);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,435 +0,0 @@
|
|||||||
import { join } from "@std/path";
|
|
||||||
import { startCliInBackground } from "./helpers/backgroundCli.ts";
|
|
||||||
import { assertFilesEqual, runCliOrFail } from "./helpers/cli.ts";
|
|
||||||
import { createDeterministicDataset, type DatasetEntry } from "./helpers/dataset.ts";
|
|
||||||
import { discoverPeer } from "./helpers/p2p.ts";
|
|
||||||
import { applyP2pSettings, applyP2pTestTweaks, initSettingsFile } from "./helpers/settings.ts";
|
|
||||||
|
|
||||||
type Role = "host" | "client";
|
|
||||||
|
|
||||||
type NetemSummary = {
|
|
||||||
enabled: boolean;
|
|
||||||
profile: string;
|
|
||||||
interface: string;
|
|
||||||
delayMs: number;
|
|
||||||
jitterMs: number;
|
|
||||||
lossPercent: number;
|
|
||||||
bandwidthMbit: number;
|
|
||||||
mtu: number;
|
|
||||||
tcQdisc?: string;
|
|
||||||
ipAddr?: string;
|
|
||||||
ipRoute?: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type HostReady = {
|
|
||||||
generatedAt: string;
|
|
||||||
totalFiles: number;
|
|
||||||
totalBytes: number;
|
|
||||||
mdFileCount: number;
|
|
||||||
binFileCount: number;
|
|
||||||
mirrorElapsedMs: number;
|
|
||||||
netem: NetemSummary;
|
|
||||||
};
|
|
||||||
|
|
||||||
type P2PConnectionStats = {
|
|
||||||
candidatePathCollected: boolean;
|
|
||||||
selectedPath: string;
|
|
||||||
localCandidate?: { candidateType: string; protocol: string; relayProtocol: string };
|
|
||||||
remoteCandidate?: { candidateType: string; protocol: string; relayProtocol: string };
|
|
||||||
};
|
|
||||||
|
|
||||||
function errorToRecord(error: unknown): Record<string, unknown> {
|
|
||||||
if (error instanceof Error) {
|
|
||||||
return {
|
|
||||||
name: error.name,
|
|
||||||
message: error.message,
|
|
||||||
stack: error.stack,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
name: "UnknownError",
|
|
||||||
message: String(error),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function readEnvString(name: string, fallback: string): string {
|
|
||||||
const value = Deno.env.get(name)?.trim();
|
|
||||||
return value && value.length > 0 ? value : fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function readEnvNumber(name: string, fallback: number): number {
|
|
||||||
const raw = Deno.env.get(name);
|
|
||||||
if (raw === undefined || raw.trim() === "") {
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
const parsed = Number(raw);
|
|
||||||
if (!Number.isFinite(parsed) || parsed < 0) {
|
|
||||||
throw new Error(`${name} must be a non-negative number, got '${raw}'`);
|
|
||||||
}
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
|
|
||||||
function nowMs(): number {
|
|
||||||
return performance.now();
|
|
||||||
}
|
|
||||||
|
|
||||||
async function commandOutput(command: string, args: string[]): Promise<string> {
|
|
||||||
const output = await new Deno.Command(command, {
|
|
||||||
args,
|
|
||||||
stdin: "null",
|
|
||||||
stdout: "piped",
|
|
||||||
stderr: "piped",
|
|
||||||
}).output();
|
|
||||||
const stdout = new TextDecoder().decode(output.stdout);
|
|
||||||
const stderr = new TextDecoder().decode(output.stderr);
|
|
||||||
if (!output.success) {
|
|
||||||
throw new Error(`${command} ${args.join(" ")} failed\nstdout: ${stdout}\nstderr: ${stderr}`);
|
|
||||||
}
|
|
||||||
return stdout.trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
async function commandOk(command: string, args: string[]): Promise<void> {
|
|
||||||
await commandOutput(command, args);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function applyNetemIfRequested(): Promise<NetemSummary> {
|
|
||||||
const enabled = readEnvString("BENCH_NETEM_ENABLED", "0") === "1";
|
|
||||||
const profile = readEnvString("NETEM_PROFILE", "home-wifi");
|
|
||||||
const iface = readEnvString("NETEM_INTERFACE", "eth0");
|
|
||||||
const delayMs = readEnvNumber("NETEM_DELAY_MS", 20);
|
|
||||||
const jitterMs = readEnvNumber("NETEM_JITTER_MS", 5);
|
|
||||||
const lossPercent = readEnvNumber("NETEM_LOSS_PERCENT", 0.1);
|
|
||||||
const bandwidthMbit = readEnvNumber("NETEM_BANDWIDTH_MBIT", 100);
|
|
||||||
const mtu = readEnvNumber("NETEM_MTU", 1500);
|
|
||||||
|
|
||||||
const summary: NetemSummary = {
|
|
||||||
enabled,
|
|
||||||
profile,
|
|
||||||
interface: iface,
|
|
||||||
delayMs,
|
|
||||||
jitterMs,
|
|
||||||
lossPercent,
|
|
||||||
bandwidthMbit,
|
|
||||||
mtu,
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!enabled) {
|
|
||||||
return summary;
|
|
||||||
}
|
|
||||||
|
|
||||||
await commandOk("ip", ["link", "set", "dev", iface, "mtu", String(mtu)]);
|
|
||||||
await new Deno.Command("tc", { args: ["qdisc", "del", "dev", iface, "root"] }).output();
|
|
||||||
await commandOk("tc", [
|
|
||||||
"qdisc",
|
|
||||||
"add",
|
|
||||||
"dev",
|
|
||||||
iface,
|
|
||||||
"root",
|
|
||||||
"netem",
|
|
||||||
"delay",
|
|
||||||
`${delayMs}ms`,
|
|
||||||
`${jitterMs}ms`,
|
|
||||||
"loss",
|
|
||||||
`${lossPercent}%`,
|
|
||||||
"rate",
|
|
||||||
`${bandwidthMbit}mbit`,
|
|
||||||
]);
|
|
||||||
summary.tcQdisc = await commandOutput("tc", ["qdisc", "show", "dev", iface]);
|
|
||||||
summary.ipAddr = await commandOutput("ip", ["addr", "show", iface]);
|
|
||||||
summary.ipRoute = await commandOutput("ip", ["route"]);
|
|
||||||
return summary;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function waitForFile(path: string, timeoutMs: number): Promise<void> {
|
|
||||||
const started = Date.now();
|
|
||||||
while (Date.now() - started < timeoutMs) {
|
|
||||||
try {
|
|
||||||
const stat = await Deno.stat(path);
|
|
||||||
if (stat.isFile) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// wait
|
|
||||||
}
|
|
||||||
await new Promise((resolve) => setTimeout(resolve, 250));
|
|
||||||
}
|
|
||||||
throw new Error(`Timed out waiting for ${path}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function readJsonFile<T>(path: string): Promise<T> {
|
|
||||||
return JSON.parse(await Deno.readTextFile(path)) as T;
|
|
||||||
}
|
|
||||||
|
|
||||||
function pickSampleFiles(entries: DatasetEntry[]): DatasetEntry[] {
|
|
||||||
const unique = new Map<string, DatasetEntry>();
|
|
||||||
for (const entry of [entries.find((e) => e.kind === "md"), entries.find((e) => e.kind === "bin"), entries.at(-1)]) {
|
|
||||||
if (entry) {
|
|
||||||
unique.set(entry.relativePath, entry);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return [...unique.values()];
|
|
||||||
}
|
|
||||||
|
|
||||||
async function readLatestP2PConnectionStats(path: string): Promise<P2PConnectionStats | undefined> {
|
|
||||||
try {
|
|
||||||
const lines = (await Deno.readTextFile(path))
|
|
||||||
.split(/\r?\n/)
|
|
||||||
.map((line) => line.trim())
|
|
||||||
.filter((line) => line.length > 0);
|
|
||||||
return lines.length === 0 ? undefined : (JSON.parse(lines.at(-1)!) as P2PConnectionStats);
|
|
||||||
} catch {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildCommonConfig() {
|
|
||||||
const runId = readEnvString("BENCH_SPLIT_RUN_ID", readEnvString("BENCH_ROOM_ID", "bench-split-run"));
|
|
||||||
const baseWorkRoot = readEnvString("BENCH_SPLIT_WORK_ROOT", "/p2p-work");
|
|
||||||
return {
|
|
||||||
runId,
|
|
||||||
workRoot: join(baseWorkRoot, runId),
|
|
||||||
resultRoot: readEnvString("BENCH_SPLIT_RESULT_ROOT", "/workspace/src/apps/cli/testdeno/bench-results"),
|
|
||||||
relay: readEnvString("BENCH_RELAY", "ws://nostr-relay:7777/"),
|
|
||||||
appId: readEnvString("BENCH_APP_ID", "self-hosted-livesync-cli-benchmark"),
|
|
||||||
roomId: readEnvString("BENCH_ROOM_ID", "bench-split-room"),
|
|
||||||
passphrase: readEnvString("BENCH_PASSPHRASE", "bench-split-passphrase"),
|
|
||||||
turnServers: readEnvString("BENCH_TURN_SERVERS", ""),
|
|
||||||
datasetDirName: readEnvString("BENCH_DATASET_DIR", "bench-dataset"),
|
|
||||||
datasetSeed: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
|
||||||
mdFileCount: Math.floor(readEnvNumber("BENCH_MD_FILE_COUNT", 20)),
|
|
||||||
mdMinSizeBytes: Math.floor(readEnvNumber("BENCH_MD_MIN_SIZE_BYTES", 512)),
|
|
||||||
mdMaxSizeBytes: Math.floor(readEnvNumber("BENCH_MD_MAX_SIZE_BYTES", 2048)),
|
|
||||||
binFileCount: Math.floor(readEnvNumber("BENCH_BIN_FILE_COUNT", 5)),
|
|
||||||
binSizeBytes: Math.floor(readEnvNumber("BENCH_BIN_SIZE_BYTES", 8192)),
|
|
||||||
peersTimeoutSeconds: readEnvNumber("BENCH_PEERS_TIMEOUT", 60),
|
|
||||||
syncTimeoutSeconds: readEnvNumber("BENCH_SYNC_TIMEOUT", 300),
|
|
||||||
nodeTimeoutMs: readEnvNumber("BENCH_SPLIT_NODE_TIMEOUT_MS", 360_000),
|
|
||||||
profile: readEnvString("BENCH_NETWORK_PROFILE", readEnvString("NETEM_PROFILE", "split-compose")),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async function prepareP2PSettings(
|
|
||||||
settingsPath: string,
|
|
||||||
peerName: string,
|
|
||||||
config: ReturnType<typeof buildCommonConfig>
|
|
||||||
) {
|
|
||||||
await initSettingsFile(settingsPath);
|
|
||||||
await applyP2pSettings(
|
|
||||||
settingsPath,
|
|
||||||
config.roomId,
|
|
||||||
config.passphrase,
|
|
||||||
config.appId,
|
|
||||||
config.relay,
|
|
||||||
"~.*",
|
|
||||||
config.turnServers
|
|
||||||
);
|
|
||||||
await applyP2pTestTweaks(settingsPath, peerName, config.passphrase);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function runHost(): Promise<void> {
|
|
||||||
const config = buildCommonConfig();
|
|
||||||
const netem = await applyNetemIfRequested();
|
|
||||||
await Deno.mkdir(config.workRoot, { recursive: true });
|
|
||||||
await Deno.mkdir(config.resultRoot, { recursive: true });
|
|
||||||
|
|
||||||
const hostVault = join(config.workRoot, "vault-host");
|
|
||||||
const hostSettings = join(config.workRoot, "settings-host.json");
|
|
||||||
await Deno.mkdir(hostVault, { recursive: true });
|
|
||||||
await prepareP2PSettings(hostSettings, "p2p-split-host", config);
|
|
||||||
|
|
||||||
const seedFiles = await createDeterministicDataset({
|
|
||||||
rootDir: hostVault,
|
|
||||||
datasetDirName: config.datasetDirName,
|
|
||||||
seed: config.datasetSeed,
|
|
||||||
mdCount: config.mdFileCount,
|
|
||||||
mdMinSizeBytes: config.mdMinSizeBytes,
|
|
||||||
mdMaxSizeBytes: config.mdMaxSizeBytes,
|
|
||||||
binCount: config.binFileCount,
|
|
||||||
binSizeBytes: config.binSizeBytes,
|
|
||||||
});
|
|
||||||
await Deno.writeTextFile(
|
|
||||||
join(config.workRoot, "sample-files.json"),
|
|
||||||
JSON.stringify(pickSampleFiles(seedFiles.entries), null, 2)
|
|
||||||
);
|
|
||||||
|
|
||||||
const mirrorStart = nowMs();
|
|
||||||
await runCliOrFail(hostVault, "--settings", hostSettings, "mirror");
|
|
||||||
const mirrorElapsedMs = Number((nowMs() - mirrorStart).toFixed(1));
|
|
||||||
const hostReady: HostReady = {
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
totalFiles: seedFiles.totalFiles,
|
|
||||||
totalBytes: seedFiles.totalBytes,
|
|
||||||
mdFileCount: seedFiles.mdCount,
|
|
||||||
binFileCount: seedFiles.binCount,
|
|
||||||
mirrorElapsedMs,
|
|
||||||
netem,
|
|
||||||
};
|
|
||||||
await Deno.writeTextFile(join(config.workRoot, "host-ready.json"), JSON.stringify(hostReady, null, 2));
|
|
||||||
|
|
||||||
const host = startCliInBackground(hostVault, "--settings", hostSettings, "p2p-host");
|
|
||||||
try {
|
|
||||||
await host.waitUntilContains("P2P host is running", 20_000);
|
|
||||||
await Deno.writeTextFile(
|
|
||||||
join(config.workRoot, "p2p-host-ready.json"),
|
|
||||||
JSON.stringify({ generatedAt: new Date().toISOString() })
|
|
||||||
);
|
|
||||||
await waitForFile(join(config.workRoot, "client-done.json"), config.nodeTimeoutMs);
|
|
||||||
} finally {
|
|
||||||
await host.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function runClient(): Promise<void> {
|
|
||||||
const config = buildCommonConfig();
|
|
||||||
const netem = await applyNetemIfRequested();
|
|
||||||
await Deno.mkdir(config.resultRoot, { recursive: true });
|
|
||||||
await waitForFile(join(config.workRoot, "host-ready.json"), config.nodeTimeoutMs);
|
|
||||||
await waitForFile(join(config.workRoot, "p2p-host-ready.json"), config.nodeTimeoutMs);
|
|
||||||
|
|
||||||
const clientVault = join(config.workRoot, "vault-client");
|
|
||||||
const clientSettings = join(config.workRoot, "settings-client.json");
|
|
||||||
const statsPath = join(config.workRoot, "p2p-connection-stats.jsonl");
|
|
||||||
await Deno.mkdir(clientVault, { recursive: true });
|
|
||||||
await prepareP2PSettings(clientSettings, "p2p-split-client", config);
|
|
||||||
|
|
||||||
const hostReady = await readJsonFile<HostReady>(join(config.workRoot, "host-ready.json"));
|
|
||||||
const timestamp = new Date().toISOString().replace(/[-:]/g, "").slice(0, 15);
|
|
||||||
const outputDir = join(config.resultRoot, `p2p-split-${config.profile}-${timestamp}`);
|
|
||||||
await Deno.mkdir(outputDir, { recursive: true });
|
|
||||||
|
|
||||||
const previousStatsPath = Deno.env.get("LIVESYNC_P2P_STATS_JSONL");
|
|
||||||
Deno.env.set("LIVESYNC_P2P_STATS_JSONL", statsPath);
|
|
||||||
let stage = "peer-discovery";
|
|
||||||
let peerDiscoveryCommandElapsedMs: number | undefined;
|
|
||||||
let syncElapsedMs: number | undefined;
|
|
||||||
try {
|
|
||||||
const peerDiscoveryCommandStart = nowMs();
|
|
||||||
const peer = await discoverPeer(clientVault, clientSettings, config.peersTimeoutSeconds);
|
|
||||||
peerDiscoveryCommandElapsedMs = Number((nowMs() - peerDiscoveryCommandStart).toFixed(1));
|
|
||||||
|
|
||||||
stage = "p2p-sync";
|
|
||||||
const syncStart = nowMs();
|
|
||||||
await runCliOrFail(
|
|
||||||
clientVault,
|
|
||||||
"--settings",
|
|
||||||
clientSettings,
|
|
||||||
"p2p-sync",
|
|
||||||
peer.id,
|
|
||||||
String(config.syncTimeoutSeconds)
|
|
||||||
);
|
|
||||||
syncElapsedMs = Number((nowMs() - syncStart).toFixed(1));
|
|
||||||
|
|
||||||
stage = "sample-verification";
|
|
||||||
const samples = await readJsonFile<DatasetEntry[]>(join(config.workRoot, "sample-files.json"));
|
|
||||||
for (const sample of samples) {
|
|
||||||
const pulledPath = join(config.workRoot, `pulled-${sample.relativePath.replaceAll("/", "_")}`);
|
|
||||||
await runCliOrFail(clientVault, "--settings", clientSettings, "pull", sample.relativePath, pulledPath);
|
|
||||||
await assertFilesEqual(
|
|
||||||
sample.absolutePath,
|
|
||||||
pulledPath,
|
|
||||||
`sample file mismatch after split sync: ${sample.relativePath}`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const p2pConnectionStats = await readLatestP2PConnectionStats(statsPath);
|
|
||||||
const result = {
|
|
||||||
ok: true,
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
caseName: "p2p-split-compose",
|
|
||||||
mode: "p2p-split-compose-benchmark",
|
|
||||||
runId: config.runId,
|
|
||||||
simulationTier: Deno.env.get("BENCH_NETEM_ENABLED") === "1" ? "2" : "1",
|
|
||||||
networkProfile: config.profile,
|
|
||||||
networkModel:
|
|
||||||
Deno.env.get("BENCH_NETEM_ENABLED") === "1" ? "split-compose-egress-netem" : "split-compose-no-netem",
|
|
||||||
relay: config.relay,
|
|
||||||
turnServers: config.turnServers,
|
|
||||||
turnEnabled: config.turnServers.trim().length > 0,
|
|
||||||
p2pCandidatePathVerified: p2pConnectionStats?.candidatePathCollected === true,
|
|
||||||
p2pConnectionStats,
|
|
||||||
hostNetem: hostReady.netem,
|
|
||||||
clientNetem: netem,
|
|
||||||
totalFiles: hostReady.totalFiles,
|
|
||||||
totalBytes: hostReady.totalBytes,
|
|
||||||
mdFileCount: hostReady.mdFileCount,
|
|
||||||
binFileCount: hostReady.binFileCount,
|
|
||||||
mirrorElapsedMs: hostReady.mirrorElapsedMs,
|
|
||||||
peerDiscoveryTimeoutSeconds: config.peersTimeoutSeconds,
|
|
||||||
peerDiscoveryCommandElapsedMs,
|
|
||||||
syncElapsedMs,
|
|
||||||
throughputBytesPerSec: Number((hostReady.totalBytes / (syncElapsedMs / 1000)).toFixed(2)),
|
|
||||||
throughputMiBPerSec: Number((hostReady.totalBytes / (syncElapsedMs / 1000) / 1024 / 1024).toFixed(4)),
|
|
||||||
};
|
|
||||||
await Deno.writeTextFile(join(outputDir, "summary.json"), JSON.stringify(result, null, 2));
|
|
||||||
await Deno.writeTextFile(
|
|
||||||
join(config.workRoot, "client-done.json"),
|
|
||||||
JSON.stringify({ generatedAt: new Date().toISOString(), outputDir, ok: true })
|
|
||||||
);
|
|
||||||
console.log(JSON.stringify(result, null, 2));
|
|
||||||
} catch (error) {
|
|
||||||
const p2pConnectionStats = await readLatestP2PConnectionStats(statsPath);
|
|
||||||
const result = {
|
|
||||||
ok: false,
|
|
||||||
generatedAt: new Date().toISOString(),
|
|
||||||
caseName: "p2p-split-compose",
|
|
||||||
mode: "p2p-split-compose-benchmark",
|
|
||||||
runId: config.runId,
|
|
||||||
simulationTier: Deno.env.get("BENCH_NETEM_ENABLED") === "1" ? "2" : "1",
|
|
||||||
networkProfile: config.profile,
|
|
||||||
networkModel:
|
|
||||||
Deno.env.get("BENCH_NETEM_ENABLED") === "1" ? "split-compose-egress-netem" : "split-compose-no-netem",
|
|
||||||
relay: config.relay,
|
|
||||||
turnServers: config.turnServers,
|
|
||||||
turnEnabled: config.turnServers.trim().length > 0,
|
|
||||||
p2pCandidatePathVerified: p2pConnectionStats?.candidatePathCollected === true,
|
|
||||||
p2pConnectionStats,
|
|
||||||
hostNetem: hostReady.netem,
|
|
||||||
clientNetem: netem,
|
|
||||||
totalFiles: hostReady.totalFiles,
|
|
||||||
totalBytes: hostReady.totalBytes,
|
|
||||||
mdFileCount: hostReady.mdFileCount,
|
|
||||||
binFileCount: hostReady.binFileCount,
|
|
||||||
mirrorElapsedMs: hostReady.mirrorElapsedMs,
|
|
||||||
peerDiscoveryTimeoutSeconds: config.peersTimeoutSeconds,
|
|
||||||
peerDiscoveryCommandElapsedMs,
|
|
||||||
syncElapsedMs,
|
|
||||||
failure: {
|
|
||||||
stage,
|
|
||||||
...errorToRecord(error),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
await Deno.writeTextFile(join(outputDir, "summary.json"), JSON.stringify(result, null, 2));
|
|
||||||
await Deno.writeTextFile(
|
|
||||||
join(config.workRoot, "client-done.json"),
|
|
||||||
JSON.stringify({ generatedAt: new Date().toISOString(), outputDir, ok: false })
|
|
||||||
);
|
|
||||||
console.log(JSON.stringify(result, null, 2));
|
|
||||||
throw error;
|
|
||||||
} finally {
|
|
||||||
if (previousStatsPath === undefined) {
|
|
||||||
Deno.env.delete("LIVESYNC_P2P_STATS_JSONL");
|
|
||||||
} else {
|
|
||||||
Deno.env.set("LIVESYNC_P2P_STATS_JSONL", previousStatsPath);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
|
||||||
const role = readEnvString("BENCH_P2P_SPLIT_ROLE", "") as Role;
|
|
||||||
if (role === "host") {
|
|
||||||
await runHost();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (role === "client") {
|
|
||||||
await runClient();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
throw new Error("BENCH_P2P_SPLIT_ROLE must be 'host' or 'client'");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (import.meta.main) {
|
|
||||||
main().catch((error) => {
|
|
||||||
console.error("[Fatal Error]", error);
|
|
||||||
Deno.exit(1);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,30 +1,15 @@
|
|||||||
import { TempDir } from "./helpers/temp.ts";
|
import { TempDir } from "./helpers/temp.ts";
|
||||||
import {
|
import { applyP2pSettings, applyP2pTestTweaks, initSettingsFile } from "./helpers/settings.ts";
|
||||||
applyP2pSettings,
|
|
||||||
applyP2pTestTweaks,
|
|
||||||
initSettingsFile,
|
|
||||||
} from "./helpers/settings.ts";
|
|
||||||
import { startCliInBackground } from "./helpers/backgroundCli.ts";
|
import { startCliInBackground } from "./helpers/backgroundCli.ts";
|
||||||
import {
|
import { discoverPeer, maybeStartLocalRelay, stopLocalRelayIfStarted } from "./helpers/p2p.ts";
|
||||||
discoverPeer,
|
|
||||||
maybeStartCoturn,
|
|
||||||
maybeStartLocalRelay,
|
|
||||||
stopCoturnIfStarted,
|
|
||||||
stopLocalRelayIfStarted,
|
|
||||||
} from "./helpers/p2p.ts";
|
|
||||||
import { assertFilesEqual, runCliOrFail } from "./helpers/cli.ts";
|
import { assertFilesEqual, runCliOrFail } from "./helpers/cli.ts";
|
||||||
import {
|
import { createDeterministicDataset, type DatasetEntry } from "./helpers/dataset.ts";
|
||||||
createDeterministicDataset,
|
|
||||||
type DatasetEntry,
|
|
||||||
} from "./helpers/dataset.ts";
|
|
||||||
|
|
||||||
type BenchmarkConfig = {
|
type BenchmarkConfig = {
|
||||||
caseName: string;
|
|
||||||
relay: string;
|
relay: string;
|
||||||
appId: string;
|
appId: string;
|
||||||
roomId: string;
|
roomId: string;
|
||||||
passphrase: string;
|
passphrase: string;
|
||||||
turnServers: string;
|
|
||||||
datasetDirName: string;
|
datasetDirName: string;
|
||||||
datasetSeed: string;
|
datasetSeed: string;
|
||||||
mdFileCount: number;
|
mdFileCount: number;
|
||||||
@@ -34,44 +19,6 @@ type BenchmarkConfig = {
|
|||||||
binSizeBytes: number;
|
binSizeBytes: number;
|
||||||
peersTimeoutSeconds: number;
|
peersTimeoutSeconds: number;
|
||||||
syncTimeoutSeconds: number;
|
syncTimeoutSeconds: number;
|
||||||
simulationTier: string;
|
|
||||||
networkProfile: string;
|
|
||||||
networkModel: string;
|
|
||||||
candidatePathVerification: string;
|
|
||||||
measurementScope: string;
|
|
||||||
limitations: string[];
|
|
||||||
};
|
|
||||||
|
|
||||||
type P2PConnectionStats = {
|
|
||||||
generatedAt: string;
|
|
||||||
command: string;
|
|
||||||
peerId: string;
|
|
||||||
peerName: string;
|
|
||||||
candidatePathCollected: boolean;
|
|
||||||
selectedPath: string;
|
|
||||||
selectedPair?: {
|
|
||||||
id: string;
|
|
||||||
state: string;
|
|
||||||
currentRoundTripTime: number | "unknown";
|
|
||||||
totalRoundTripTime: number | "unknown";
|
|
||||||
requestsSent: number | "unknown";
|
|
||||||
responsesReceived: number | "unknown";
|
|
||||||
packetsDiscardedOnSend: number | "unknown";
|
|
||||||
bytesSent: number | "unknown";
|
|
||||||
bytesReceived: number | "unknown";
|
|
||||||
};
|
|
||||||
localCandidate?: {
|
|
||||||
id: string;
|
|
||||||
candidateType: string;
|
|
||||||
protocol: string;
|
|
||||||
relayProtocol: string;
|
|
||||||
};
|
|
||||||
remoteCandidate?: {
|
|
||||||
id: string;
|
|
||||||
candidateType: string;
|
|
||||||
protocol: string;
|
|
||||||
relayProtocol: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function readEnvString(name: string, fallback: string): string {
|
function readEnvString(name: string, fallback: string): string {
|
||||||
@@ -92,30 +39,6 @@ function readEnvNumber(name: string, fallback: number): number {
|
|||||||
return parsed;
|
return parsed;
|
||||||
}
|
}
|
||||||
|
|
||||||
function readEnvStringArray(name: string, fallback: string[]): string[] {
|
|
||||||
const raw = Deno.env.get(name)?.trim();
|
|
||||||
if (!raw) {
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(raw);
|
|
||||||
if (
|
|
||||||
Array.isArray(parsed) &&
|
|
||||||
parsed.every((item) => typeof item === "string")
|
|
||||||
) {
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// Fall through to comma-separated parsing for hand-written invocations.
|
|
||||||
}
|
|
||||||
|
|
||||||
return raw
|
|
||||||
.split("|")
|
|
||||||
.map((item) => item.trim())
|
|
||||||
.filter((item) => item.length > 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
function nowMs(): number {
|
function nowMs(): number {
|
||||||
return performance.now();
|
return performance.now();
|
||||||
}
|
}
|
||||||
@@ -138,47 +61,19 @@ function formatBytes(value: number): string {
|
|||||||
|
|
||||||
function buildConfig(): BenchmarkConfig {
|
function buildConfig(): BenchmarkConfig {
|
||||||
return {
|
return {
|
||||||
caseName: readEnvString("BENCH_CASE", "p2p-direct-local"),
|
|
||||||
relay: readEnvString("BENCH_RELAY", "ws://localhost:4000/"),
|
relay: readEnvString("BENCH_RELAY", "ws://localhost:4000/"),
|
||||||
appId: readEnvString(
|
appId: readEnvString("BENCH_APP_ID", "self-hosted-livesync-cli-benchmark"),
|
||||||
"BENCH_APP_ID",
|
|
||||||
"self-hosted-livesync-cli-benchmark",
|
|
||||||
),
|
|
||||||
roomId: readEnvString("BENCH_ROOM_ID", `bench-room-${Date.now()}`),
|
roomId: readEnvString("BENCH_ROOM_ID", `bench-room-${Date.now()}`),
|
||||||
passphrase: readEnvString("BENCH_PASSPHRASE", `bench-${Date.now()}`),
|
passphrase: readEnvString("BENCH_PASSPHRASE", `bench-${Date.now()}`),
|
||||||
turnServers: readEnvString("BENCH_TURN_SERVERS", ""),
|
|
||||||
datasetDirName: readEnvString("BENCH_DATASET_DIR", "bench-dataset"),
|
datasetDirName: readEnvString("BENCH_DATASET_DIR", "bench-dataset"),
|
||||||
datasetSeed: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
datasetSeed: readEnvString("BENCH_SEED", "livesync-benchmark-seed"),
|
||||||
mdFileCount: Math.floor(readEnvNumber("BENCH_MD_FILE_COUNT", 1500)),
|
mdFileCount: Math.floor(readEnvNumber("BENCH_MD_FILE_COUNT", 1500)),
|
||||||
mdMinSizeBytes: Math.floor(
|
mdMinSizeBytes: Math.floor(readEnvNumber("BENCH_MD_MIN_SIZE_BYTES", 1024)),
|
||||||
readEnvNumber("BENCH_MD_MIN_SIZE_BYTES", 1024),
|
mdMaxSizeBytes: Math.floor(readEnvNumber("BENCH_MD_MAX_SIZE_BYTES", 20 * 1024)),
|
||||||
),
|
|
||||||
mdMaxSizeBytes: Math.floor(
|
|
||||||
readEnvNumber("BENCH_MD_MAX_SIZE_BYTES", 20 * 1024),
|
|
||||||
),
|
|
||||||
binFileCount: Math.floor(readEnvNumber("BENCH_BIN_FILE_COUNT", 500)),
|
binFileCount: Math.floor(readEnvNumber("BENCH_BIN_FILE_COUNT", 500)),
|
||||||
binSizeBytes: Math.floor(
|
binSizeBytes: Math.floor(readEnvNumber("BENCH_BIN_SIZE_BYTES", 100 * 1024)),
|
||||||
readEnvNumber("BENCH_BIN_SIZE_BYTES", 100 * 1024),
|
|
||||||
),
|
|
||||||
peersTimeoutSeconds: readEnvNumber("BENCH_PEERS_TIMEOUT", 20),
|
peersTimeoutSeconds: readEnvNumber("BENCH_PEERS_TIMEOUT", 20),
|
||||||
syncTimeoutSeconds: readEnvNumber("BENCH_SYNC_TIMEOUT", 240),
|
syncTimeoutSeconds: readEnvNumber("BENCH_SYNC_TIMEOUT", 240),
|
||||||
simulationTier: readEnvString("BENCH_SIMULATION_TIER", "1"),
|
|
||||||
networkProfile: readEnvString("BENCH_NETWORK_PROFILE", "local-direct"),
|
|
||||||
networkModel: readEnvString(
|
|
||||||
"BENCH_NETWORK_MODEL",
|
|
||||||
"local-runner-webrtc",
|
|
||||||
),
|
|
||||||
candidatePathVerification: readEnvString(
|
|
||||||
"BENCH_P2P_CANDIDATE_PATH_VERIFICATION",
|
|
||||||
"not-collected",
|
|
||||||
),
|
|
||||||
measurementScope: readEnvString(
|
|
||||||
"BENCH_MEASUREMENT_SCOPE",
|
|
||||||
"One CLI P2P synchronisation phase over WebRTC DataChannel after signalling.",
|
|
||||||
),
|
|
||||||
limitations: readEnvStringArray("BENCH_LIMITATIONS_JSON", [
|
|
||||||
"This benchmark result is scoped to the configured dataset, network model, and selected ICE path.",
|
|
||||||
]),
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -207,41 +102,18 @@ function pickSampleFiles(entries: DatasetEntry[]): DatasetEntry[] {
|
|||||||
return [...unique.values()];
|
return [...unique.values()];
|
||||||
}
|
}
|
||||||
|
|
||||||
async function readLatestP2PConnectionStats(
|
|
||||||
statsPath: string,
|
|
||||||
): Promise<P2PConnectionStats | undefined> {
|
|
||||||
try {
|
|
||||||
const text = await Deno.readTextFile(statsPath);
|
|
||||||
const lines = text
|
|
||||||
.split(/\r?\n/)
|
|
||||||
.map((line) => line.trim())
|
|
||||||
.filter((line) => line.length > 0);
|
|
||||||
if (lines.length === 0) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
return JSON.parse(lines[lines.length - 1]) as P2PConnectionStats;
|
|
||||||
} catch {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
async function main(): Promise<void> {
|
||||||
const config = buildConfig();
|
const config = buildConfig();
|
||||||
const resultPath = readOptionalResultPath();
|
const resultPath = readOptionalResultPath();
|
||||||
|
|
||||||
const relayStarted = await maybeStartLocalRelay(config.relay);
|
const relayStarted = await maybeStartLocalRelay(config.relay);
|
||||||
const coturnStarted = await maybeStartCoturn(config.turnServers);
|
|
||||||
await using workDir = await TempDir.create("livesync-cli-p2p-bench");
|
await using workDir = await TempDir.create("livesync-cli-p2p-bench");
|
||||||
|
|
||||||
const hostVault = workDir.join("vault-host");
|
const hostVault = workDir.join("vault-host");
|
||||||
const clientVault = workDir.join("vault-client");
|
const clientVault = workDir.join("vault-client");
|
||||||
const hostSettings = workDir.join("settings-host.json");
|
const hostSettings = workDir.join("settings-host.json");
|
||||||
const clientSettings = workDir.join("settings-client.json");
|
const clientSettings = workDir.join("settings-client.json");
|
||||||
const p2pStatsPath = workDir.join("p2p-connection-stats.jsonl");
|
|
||||||
const previousStatsPath = Deno.env.get("LIVESYNC_P2P_STATS_JSONL");
|
|
||||||
Deno.env.set("LIVESYNC_P2P_STATS_JSONL", p2pStatsPath);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
Deno.mkdir(hostVault, { recursive: true }),
|
Deno.mkdir(hostVault, { recursive: true }),
|
||||||
Deno.mkdir(clientVault, { recursive: true }),
|
Deno.mkdir(clientVault, { recursive: true }),
|
||||||
@@ -250,37 +122,13 @@ async function main(): Promise<void> {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
applyP2pSettings(
|
applyP2pSettings(hostSettings, config.roomId, config.passphrase, config.appId, config.relay, "~.*"),
|
||||||
hostSettings,
|
applyP2pSettings(clientSettings, config.roomId, config.passphrase, config.appId, config.relay, "~.*"),
|
||||||
config.roomId,
|
|
||||||
config.passphrase,
|
|
||||||
config.appId,
|
|
||||||
config.relay,
|
|
||||||
"~.*",
|
|
||||||
config.turnServers,
|
|
||||||
),
|
|
||||||
applyP2pSettings(
|
|
||||||
clientSettings,
|
|
||||||
config.roomId,
|
|
||||||
config.passphrase,
|
|
||||||
config.appId,
|
|
||||||
config.relay,
|
|
||||||
"~.*",
|
|
||||||
config.turnServers,
|
|
||||||
),
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
applyP2pTestTweaks(
|
applyP2pTestTweaks(hostSettings, "p2p-bench-host", config.passphrase),
|
||||||
hostSettings,
|
applyP2pTestTweaks(clientSettings, "p2p-bench-client", config.passphrase),
|
||||||
"p2p-bench-host",
|
|
||||||
config.passphrase,
|
|
||||||
),
|
|
||||||
applyP2pTestTweaks(
|
|
||||||
clientSettings,
|
|
||||||
"p2p-bench-client",
|
|
||||||
config.passphrase,
|
|
||||||
),
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const seedFiles = await createDeterministicDataset({
|
const seedFiles = await createDeterministicDataset({
|
||||||
@@ -298,25 +146,15 @@ async function main(): Promise<void> {
|
|||||||
await runCliOrFail(hostVault, "--settings", hostSettings, "mirror");
|
await runCliOrFail(hostVault, "--settings", hostSettings, "mirror");
|
||||||
const mirrorElapsed = nowMs() - mirrorStart;
|
const mirrorElapsed = nowMs() - mirrorStart;
|
||||||
|
|
||||||
const host = startCliInBackground(
|
const host = startCliInBackground(hostVault, "--settings", hostSettings, "p2p-host");
|
||||||
hostVault,
|
|
||||||
"--settings",
|
|
||||||
hostSettings,
|
|
||||||
"p2p-host",
|
|
||||||
);
|
|
||||||
try {
|
try {
|
||||||
const hostReadyStart = nowMs();
|
const hostReadyStart = nowMs();
|
||||||
await host.waitUntilContains("P2P host is running", 20000);
|
await host.waitUntilContains("P2P host is running", 20000);
|
||||||
const hostReadyElapsed = nowMs() - hostReadyStart;
|
const hostReadyElapsed = nowMs() - hostReadyStart;
|
||||||
|
|
||||||
const peerDiscoveryCommandStart = nowMs();
|
const peerDiscoveryStart = nowMs();
|
||||||
const peer = await discoverPeer(
|
const peer = await discoverPeer(clientVault, clientSettings, config.peersTimeoutSeconds);
|
||||||
clientVault,
|
const peerDiscoveryElapsed = nowMs() - peerDiscoveryStart;
|
||||||
clientSettings,
|
|
||||||
config.peersTimeoutSeconds,
|
|
||||||
);
|
|
||||||
const peerDiscoveryCommandElapsed = nowMs() -
|
|
||||||
peerDiscoveryCommandStart;
|
|
||||||
|
|
||||||
const syncStart = nowMs();
|
const syncStart = nowMs();
|
||||||
await runCliOrFail(
|
await runCliOrFail(
|
||||||
@@ -325,56 +163,24 @@ async function main(): Promise<void> {
|
|||||||
clientSettings,
|
clientSettings,
|
||||||
"p2p-sync",
|
"p2p-sync",
|
||||||
peer.id,
|
peer.id,
|
||||||
String(config.syncTimeoutSeconds),
|
String(config.syncTimeoutSeconds)
|
||||||
);
|
);
|
||||||
const syncElapsed = nowMs() - syncStart;
|
const syncElapsed = nowMs() - syncStart;
|
||||||
|
|
||||||
const sampleFiles = pickSampleFiles(seedFiles.entries);
|
const sampleFiles = pickSampleFiles(seedFiles.entries);
|
||||||
for (const sample of sampleFiles) {
|
for (const sample of sampleFiles) {
|
||||||
const pulledPath = workDir.join(
|
const pulledPath = workDir.join(`pulled-${sample.relativePath.replaceAll("/", "_")}`);
|
||||||
`pulled-${sample.relativePath.replaceAll("/", "_")}`,
|
await runCliOrFail(clientVault, "--settings", clientSettings, "pull", sample.relativePath, pulledPath);
|
||||||
);
|
|
||||||
await runCliOrFail(
|
|
||||||
clientVault,
|
|
||||||
"--settings",
|
|
||||||
clientSettings,
|
|
||||||
"pull",
|
|
||||||
sample.relativePath,
|
|
||||||
pulledPath,
|
|
||||||
);
|
|
||||||
await assertFilesEqual(
|
await assertFilesEqual(
|
||||||
sample.absolutePath,
|
sample.absolutePath,
|
||||||
pulledPath,
|
pulledPath,
|
||||||
`sample file mismatch after sync: ${sample.relativePath}`,
|
`sample file mismatch after sync: ${sample.relativePath}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const p2pConnectionStats = await readLatestP2PConnectionStats(
|
|
||||||
p2pStatsPath,
|
|
||||||
);
|
|
||||||
const result = {
|
const result = {
|
||||||
caseName: config.caseName,
|
|
||||||
mode: "p2p-cli-benchmark",
|
mode: "p2p-cli-benchmark",
|
||||||
relay: config.relay,
|
relay: config.relay,
|
||||||
turnServers: config.turnServers,
|
|
||||||
turnEnabled: config.turnServers.trim().length > 0,
|
|
||||||
simulationTier: config.simulationTier,
|
|
||||||
networkProfile: config.networkProfile,
|
|
||||||
networkModel: config.networkModel,
|
|
||||||
measurementScope: config.measurementScope,
|
|
||||||
limitations: config.limitations,
|
|
||||||
p2pCandidatePathVerified:
|
|
||||||
p2pConnectionStats?.candidatePathCollected === true,
|
|
||||||
p2pCandidatePathVerification:
|
|
||||||
p2pConnectionStats?.candidatePathCollected
|
|
||||||
? "selected ICE candidate pair collected from RTCPeerConnection.getStats"
|
|
||||||
: config.candidatePathVerification,
|
|
||||||
p2pCandidatePathNote: p2pConnectionStats?.candidatePathCollected
|
|
||||||
? "The selected ICE candidate pair was collected by the CLI benchmark. Interpret the path from the candidate types; do not infer TURN use from configuration alone."
|
|
||||||
: config.turnServers.trim().length > 0
|
|
||||||
? "TURN is configured, so the selected WebRTC path may be direct, server-reflexive, or relayed. The selected ICE candidate pair was not exported by this run."
|
|
||||||
: "TURN is disabled, so a TURN-relayed path is not expected. The selected ICE candidate pair was not exported by this run.",
|
|
||||||
p2pConnectionStats,
|
|
||||||
appId: config.appId,
|
appId: config.appId,
|
||||||
roomId: config.roomId,
|
roomId: config.roomId,
|
||||||
datasetSeed: config.datasetSeed,
|
datasetSeed: config.datasetSeed,
|
||||||
@@ -387,51 +193,24 @@ async function main(): Promise<void> {
|
|||||||
binFileCount: seedFiles.binCount,
|
binFileCount: seedFiles.binCount,
|
||||||
mirrorElapsedMs: Number(mirrorElapsed.toFixed(1)),
|
mirrorElapsedMs: Number(mirrorElapsed.toFixed(1)),
|
||||||
hostReadyElapsedMs: Number(hostReadyElapsed.toFixed(1)),
|
hostReadyElapsedMs: Number(hostReadyElapsed.toFixed(1)),
|
||||||
peerDiscoveryTimeoutSeconds: config.peersTimeoutSeconds,
|
peerDiscoveryElapsedMs: Number(peerDiscoveryElapsed.toFixed(1)),
|
||||||
peerDiscoveryCommandElapsedMs: Number(
|
|
||||||
peerDiscoveryCommandElapsed.toFixed(1),
|
|
||||||
),
|
|
||||||
peerDiscoveryNote:
|
|
||||||
"p2p-peers waits for the requested timeout before printing discovered peers, so this is command duration, not first-peer latency.",
|
|
||||||
syncElapsedMs: Number(syncElapsed.toFixed(1)),
|
syncElapsedMs: Number(syncElapsed.toFixed(1)),
|
||||||
throughputBytesPerSec: Number(
|
throughputBytesPerSec: Number((seedFiles.totalBytes / (syncElapsed / 1000)).toFixed(2)),
|
||||||
(seedFiles.totalBytes / (syncElapsed / 1000)).toFixed(2),
|
throughputMiBPerSec: Number((seedFiles.totalBytes / (syncElapsed / 1000) / 1024 / 1024).toFixed(4)),
|
||||||
),
|
|
||||||
throughputMiBPerSec: Number(
|
|
||||||
(seedFiles.totalBytes / (syncElapsed / 1000) / 1024 / 1024)
|
|
||||||
.toFixed(
|
|
||||||
4,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (resultPath) {
|
if (resultPath) {
|
||||||
await Deno.writeTextFile(
|
await Deno.writeTextFile(resultPath, JSON.stringify(result, null, 2));
|
||||||
resultPath,
|
|
||||||
JSON.stringify(result, null, 2),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(JSON.stringify(result, null, 2));
|
console.log(JSON.stringify(result, null, 2));
|
||||||
console.error(
|
console.error(
|
||||||
`[Benchmark] mirrored ${seedFiles.totalFiles} files (${
|
`[Benchmark] mirrored ${seedFiles.totalFiles} files (${formatBytes(seedFiles.totalBytes)}) in ${formatMs(mirrorElapsed)}, ` +
|
||||||
formatBytes(
|
|
||||||
seedFiles.totalBytes,
|
|
||||||
)
|
|
||||||
}) in ${formatMs(mirrorElapsed)}, ` +
|
|
||||||
`synced in ${formatMs(syncElapsed)} ` +
|
`synced in ${formatMs(syncElapsed)} ` +
|
||||||
`(${result.throughputBytesPerSec} B/s, ${result.throughputMiBPerSec} MiB/s)`,
|
`(${result.throughputBytesPerSec} B/s, ${result.throughputMiBPerSec} MiB/s)`
|
||||||
);
|
);
|
||||||
} finally {
|
} finally {
|
||||||
await host.stop();
|
await host.stop();
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
if (previousStatsPath === undefined) {
|
|
||||||
Deno.env.delete("LIVESYNC_P2P_STATS_JSONL");
|
|
||||||
} else {
|
|
||||||
Deno.env.set("LIVESYNC_P2P_STATS_JSONL", previousStatsPath);
|
|
||||||
}
|
|
||||||
await stopCoturnIfStarted(coturnStarted);
|
|
||||||
await stopLocalRelayIfStarted(relayStarted);
|
await stopLocalRelayIfStarted(relayStarted);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,12 +15,8 @@
|
|||||||
"test:p2p-sync": "deno test --env-file=.test.env -A --no-check test-p2p-sync.ts",
|
"test:p2p-sync": "deno test --env-file=.test.env -A --no-check test-p2p-sync.ts",
|
||||||
"test:p2p-three-nodes": "deno test --env-file=.test.env -A --no-check test-p2p-three-nodes-conflict.ts",
|
"test:p2p-three-nodes": "deno test --env-file=.test.env -A --no-check test-p2p-three-nodes-conflict.ts",
|
||||||
"test:p2p-upload-download": "deno test --env-file=.test.env -A --no-check test-p2p-upload-download-repro.ts",
|
"test:p2p-upload-download": "deno test --env-file=.test.env -A --no-check test-p2p-upload-download-repro.ts",
|
||||||
"test:benchmark-contract": "deno test --env-file=.test.env -A --no-check test-benchmark-contract.ts",
|
|
||||||
"bench:p2p": "deno run --env-file=.test.env -A --no-check bench-p2p.ts",
|
"bench:p2p": "deno run --env-file=.test.env -A --no-check bench-p2p.ts",
|
||||||
"bench:couchdb": "deno run --env-file=.test.env -A --no-check bench-couchdb.ts",
|
"bench:couchdb": "deno run --env-file=.test.env -A --no-check bench-couchdb.ts",
|
||||||
"bench:cases": "deno run --env-file=.test.env -A --no-check bench-network-cases.ts",
|
|
||||||
"bench:latency-sweep": "deno run --env-file=.test.env -A --no-check bench-latency-sweep.ts",
|
|
||||||
"bench:p2p-split-node": "deno run --env-file=.test.env -A --no-check bench-p2p-split-node.ts",
|
|
||||||
"bench:item1": "bash ./bench-run-item1.sh",
|
"bench:item1": "bash ./bench-run-item1.sh",
|
||||||
"bench:item1:full": "BENCH_MD_FILE_COUNT=1500 BENCH_MD_MIN_SIZE_BYTES=1024 BENCH_MD_MAX_SIZE_BYTES=20480 BENCH_BIN_FILE_COUNT=500 BENCH_BIN_SIZE_BYTES=102400 BENCH_COUCHDB_RTT_MS=50 bash ./bench-run-item1.sh",
|
"bench:item1:full": "BENCH_MD_FILE_COUNT=1500 BENCH_MD_MIN_SIZE_BYTES=1024 BENCH_MD_MAX_SIZE_BYTES=20480 BENCH_BIN_FILE_COUNT=500 BENCH_BIN_SIZE_BYTES=102400 BENCH_COUCHDB_RTT_MS=50 bash ./bench-run-item1.sh",
|
||||||
"test:e2e-couchdb": "deno test --env-file=.test.env -A --no-check test-e2e-two-vaults-couchdb.ts",
|
"test:e2e-couchdb": "deno test --env-file=.test.env -A --no-check test-e2e-two-vaults-couchdb.ts",
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ function sleep(ms: number): Promise<void> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function connectWithTimeout(hostname: string, port: number, timeoutMs: number): Promise<void> {
|
async function connectWithTimeout(hostname: string, port: number, timeoutMs: number): Promise<void> {
|
||||||
let timer: ReturnType<typeof setTimeout> | undefined;
|
let timer: number | undefined;
|
||||||
try {
|
try {
|
||||||
const connPromise = Deno.connect({ hostname, port });
|
const connPromise = Deno.connect({ hostname, port });
|
||||||
const timeoutPromise = new Promise<never>((_, reject) => {
|
const timeoutPromise = new Promise<never>((_, reject) => {
|
||||||
|
|||||||
@@ -76,10 +76,8 @@ export async function discoverPeer(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function maybeStartLocalRelay(relay: string): Promise<boolean> {
|
export async function maybeStartLocalRelay(relay: string): Promise<boolean> {
|
||||||
const shouldStart = isLocalP2pRelay(relay);
|
if (!isLocalP2pRelay(relay)) return false;
|
||||||
if (shouldStart) {
|
|
||||||
await startP2pRelay();
|
await startP2pRelay();
|
||||||
}
|
|
||||||
const endpoint = parseRelayEndpoint(relay);
|
const endpoint = parseRelayEndpoint(relay);
|
||||||
await waitForPort(endpoint.hostname, endpoint.port, {
|
await waitForPort(endpoint.hostname, endpoint.port, {
|
||||||
timeoutMs: Number(Deno.env.get("LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS") ?? "15000"),
|
timeoutMs: Number(Deno.env.get("LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS") ?? "15000"),
|
||||||
@@ -88,10 +86,8 @@ export async function maybeStartLocalRelay(relay: string): Promise<boolean> {
|
|||||||
});
|
});
|
||||||
// Docker proxy accepts TCP connections instantly before the container's internal process is fully ready.
|
// Docker proxy accepts TCP connections instantly before the container's internal process is fully ready.
|
||||||
// Wait an additional few seconds to ensure strfry is actually accepting WebSockets.
|
// Wait an additional few seconds to ensure strfry is actually accepting WebSockets.
|
||||||
if (shouldStart) {
|
|
||||||
await sleep(3000);
|
await sleep(3000);
|
||||||
}
|
return true;
|
||||||
return shouldStart;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function stopLocalRelayIfStarted(started: boolean): Promise<void> {
|
export async function stopLocalRelayIfStarted(started: boolean): Promise<void> {
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
TASK="${CLI_E2E_TASK:-test:p2p-sync}"
|
|
||||||
|
|
||||||
case "$TASK" in
|
|
||||||
test:p2p-host|test:p2p-peers|test:p2p-sync|test:p2p-three-nodes|test:p2p-upload-download)
|
|
||||||
exec deno task "$TASK"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Unknown CLI_E2E_TASK: $TASK" >&2
|
|
||||||
echo "Expected one of: test:p2p-host, test:p2p-peers, test:p2p-sync, test:p2p-three-nodes, test:p2p-upload-download" >&2
|
|
||||||
exit 2
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
@@ -1,134 +0,0 @@
|
|||||||
import { assert, assertEquals, assertStringIncludes } from "@std/assert";
|
|
||||||
import { type BenchmarkCase, buildCases } from "./bench-network-cases.ts";
|
|
||||||
|
|
||||||
function getCase(cases: BenchmarkCase[], name: string): BenchmarkCase {
|
|
||||||
const found = cases.find((testCase) => testCase.name === name);
|
|
||||||
assert(found, `missing benchmark case: ${name}`);
|
|
||||||
return found;
|
|
||||||
}
|
|
||||||
|
|
||||||
function parsedLimitations(testCase: BenchmarkCase): string[] {
|
|
||||||
const raw = testCase.env.BENCH_LIMITATIONS_JSON;
|
|
||||||
assert(
|
|
||||||
raw,
|
|
||||||
`${testCase.name} must pass BENCH_LIMITATIONS_JSON to benchmark result output`,
|
|
||||||
);
|
|
||||||
const parsed = JSON.parse(raw);
|
|
||||||
assert(
|
|
||||||
Array.isArray(parsed),
|
|
||||||
`${testCase.name} limitations must be an array`,
|
|
||||||
);
|
|
||||||
assert(
|
|
||||||
parsed.every((item) =>
|
|
||||||
typeof item === "string" && item.trim().length > 0
|
|
||||||
),
|
|
||||||
);
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
|
|
||||||
Deno.test("benchmark cases record scope and limitations for paper use", () => {
|
|
||||||
const cases = buildCases();
|
|
||||||
assert(cases.length > 0);
|
|
||||||
|
|
||||||
for (const testCase of cases) {
|
|
||||||
assert(
|
|
||||||
testCase.description.trim().length > 0,
|
|
||||||
`${testCase.name} must describe the case`,
|
|
||||||
);
|
|
||||||
assert(
|
|
||||||
testCase.dataPath.trim().length > 0,
|
|
||||||
`${testCase.name} must describe the data path`,
|
|
||||||
);
|
|
||||||
assert(
|
|
||||||
testCase.trustBoundary.trim().length > 0,
|
|
||||||
`${testCase.name} must describe the trust boundary`,
|
|
||||||
);
|
|
||||||
assert(
|
|
||||||
testCase.measurementScope.trim().length > 0,
|
|
||||||
`${testCase.name} must describe the measurement scope`,
|
|
||||||
);
|
|
||||||
assert(
|
|
||||||
testCase.limitations.length > 0,
|
|
||||||
`${testCase.name} must list limitations`,
|
|
||||||
);
|
|
||||||
assertEquals(
|
|
||||||
testCase.env.BENCH_MEASUREMENT_SCOPE,
|
|
||||||
testCase.measurementScope,
|
|
||||||
);
|
|
||||||
assertEquals(parsedLimitations(testCase), testCase.limitations);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Deno.test("P2P signalling-shim cases do not claim to shape the note-data path", () => {
|
|
||||||
const cases = buildCases();
|
|
||||||
for (
|
|
||||||
const name of [
|
|
||||||
"p2p-signalling-netem-home-wifi",
|
|
||||||
"p2p-signalling-netem-tethering-vpn",
|
|
||||||
]
|
|
||||||
) {
|
|
||||||
const testCase = getCase(cases, name);
|
|
||||||
assertEquals(testCase.runner, "p2p");
|
|
||||||
assertEquals(testCase.env.BENCH_TURN_SERVERS, "");
|
|
||||||
assertEquals(testCase.env.BENCH_SIMULATION_TIER, "2");
|
|
||||||
assertEquals(
|
|
||||||
testCase.env.BENCH_NETWORK_MODEL,
|
|
||||||
"compose-netem-signalling-shim",
|
|
||||||
);
|
|
||||||
assertStringIncludes(testCase.dataPath, "WebRTC DataChannel");
|
|
||||||
assertStringIncludes(testCase.dataPath, "Nostr signalling");
|
|
||||||
assert(
|
|
||||||
testCase.limitations.some((limitation) =>
|
|
||||||
limitation.includes("does not shape the selected WebRTC")
|
|
||||||
),
|
|
||||||
`${name} must avoid claiming that the P2P note-data path was shaped`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Deno.test("placeholder and TURN cases are clearly non-evidence for broad P2P performance", () => {
|
|
||||||
const cases = buildCases();
|
|
||||||
|
|
||||||
const smartphone = getCase(cases, "p2p-smartphone-vpn-direct");
|
|
||||||
assertEquals(smartphone.env.BENCH_SIMULATION_TIER, "unmeasured");
|
|
||||||
assertEquals(smartphone.env.BENCH_NETWORK_MODEL, "local-runner-no-netem");
|
|
||||||
assert(
|
|
||||||
smartphone.limitations.some((limitation) =>
|
|
||||||
limitation.includes("must not be reported as smartphone")
|
|
||||||
),
|
|
||||||
"smartphone/VPN placeholder must not be usable as field evidence by accident",
|
|
||||||
);
|
|
||||||
|
|
||||||
const turn = getCase(cases, "p2p-user-turn");
|
|
||||||
assertStringIncludes(turn.env.BENCH_TURN_SERVERS, "turn:");
|
|
||||||
assert(
|
|
||||||
turn.limitations.some((limitation) =>
|
|
||||||
limitation.includes(
|
|
||||||
"does not prove that the selected ICE path was relayed",
|
|
||||||
)
|
|
||||||
),
|
|
||||||
"TURN case must require selected ICE candidate interpretation",
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
Deno.test("CouchDB netem cases are marked as remote-store baselines", () => {
|
|
||||||
const cases = buildCases();
|
|
||||||
for (
|
|
||||||
const name of ["couchdb-netem-home-wifi", "couchdb-netem-tethering-vpn"]
|
|
||||||
) {
|
|
||||||
const testCase = getCase(cases, name);
|
|
||||||
assertEquals(testCase.runner, "couchdb");
|
|
||||||
assertEquals(testCase.env.BENCH_SIMULATION_TIER, "2");
|
|
||||||
assertEquals(
|
|
||||||
testCase.env.BENCH_NETWORK_MODEL,
|
|
||||||
"compose-netem-tcp-shim",
|
|
||||||
);
|
|
||||||
assertStringIncludes(testCase.measurementScope, "CouchDB");
|
|
||||||
assert(
|
|
||||||
testCase.limitations.some((limitation) =>
|
|
||||||
limitation.includes("not the WebRTC P2P data path")
|
|
||||||
),
|
|
||||||
`${name} must remain scoped to the CouchDB remote-store path`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
bench-results/
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
FROM alpine:3.22
|
|
||||||
|
|
||||||
RUN apk add --no-cache iproute2
|
|
||||||
|
|
||||||
COPY test/bench-network/netem-smoke.sh /usr/local/bin/livesync-netem-smoke
|
|
||||||
RUN chmod +x /usr/local/bin/livesync-netem-smoke
|
|
||||||
|
|
||||||
CMD ["livesync-netem-smoke"]
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
# syntax=docker/dockerfile:1
|
|
||||||
|
|
||||||
FROM node:24-slim
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends ca-certificates curl unzip python3 make g++ iproute2 \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
ENV DENO_INSTALL=/usr/local
|
|
||||||
RUN curl -fsSL https://deno.land/install.sh | sh
|
|
||||||
|
|
||||||
WORKDIR /workspace
|
|
||||||
|
|
||||||
COPY package.json package-lock.json ./
|
|
||||||
COPY src/apps/cli/package.json ./src/apps/cli/package.json
|
|
||||||
COPY src/apps/webapp/package.json ./src/apps/webapp/package.json
|
|
||||||
COPY src/apps/webpeer/package.json ./src/apps/webpeer/package.json
|
|
||||||
RUN npm ci
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
RUN npm run build -w self-hosted-livesync-cli
|
|
||||||
|
|
||||||
WORKDIR /workspace/src/apps/cli/testdeno
|
|
||||||
|
|
||||||
RUN deno cache --lock=deno.lock \
|
|
||||||
bench-network-cases.ts \
|
|
||||||
bench-latency-sweep.ts \
|
|
||||||
bench-p2p-split-node.ts \
|
|
||||||
bench-p2p.ts \
|
|
||||||
bench-couchdb.ts \
|
|
||||||
test-p2p-sync.ts
|
|
||||||
|
|
||||||
COPY test/bench-network/run-bench.sh /usr/local/bin/run-livesync-bench
|
|
||||||
COPY src/apps/cli/testdeno/run-cli-e2e.sh /usr/local/bin/run-livesync-cli-e2e
|
|
||||||
RUN chmod +x /usr/local/bin/run-livesync-bench /usr/local/bin/run-livesync-cli-e2e
|
|
||||||
|
|
||||||
CMD ["run-livesync-bench"]
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# syntax=docker/dockerfile:1
|
|
||||||
|
|
||||||
FROM alpine:3.22
|
|
||||||
|
|
||||||
RUN apk add --no-cache iproute2 socat
|
|
||||||
|
|
||||||
COPY test/bench-network/netem-tcp-shim.sh /usr/local/bin/livesync-netem-tcp-shim
|
|
||||||
RUN chmod +x /usr/local/bin/livesync-netem-tcp-shim
|
|
||||||
|
|
||||||
CMD ["livesync-netem-tcp-shim"]
|
|
||||||
@@ -1,263 +0,0 @@
|
|||||||
# Network benchmark package
|
|
||||||
|
|
||||||
This directory packages the CLI benchmark cases with Docker Compose. It is
|
|
||||||
intended for reproducible local benchmark runs where CouchDB, the Nostr
|
|
||||||
signalling relay, optional TURN, and the benchmark runner are fixed by the
|
|
||||||
Compose file.
|
|
||||||
|
|
||||||
## Quick smoke run
|
|
||||||
|
|
||||||
From the repository root:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker compose -f test/bench-network/compose.yml run --rm bench-runner
|
|
||||||
```
|
|
||||||
|
|
||||||
By default this runs:
|
|
||||||
|
|
||||||
- `couchdb-baseline`
|
|
||||||
- `p2p-direct-local`
|
|
||||||
|
|
||||||
The dataset is intentionally small by default. Results are written to
|
|
||||||
`test/bench-network/bench-results/`.
|
|
||||||
|
|
||||||
## GitHub Actions smoke run
|
|
||||||
|
|
||||||
`.github/workflows/cli-p2p-compose-smoke.yml` provides a manual
|
|
||||||
`workflow_dispatch` smoke run for the same Compose package. It is intentionally
|
|
||||||
not a required check yet, because WebRTC peer discovery can still be slow or
|
|
||||||
environment-sensitive on GitHub-hosted runners. Keep the dataset small and use
|
|
||||||
the uploaded JSON artefact to inspect whether failures are caused by peer
|
|
||||||
discovery, synchronisation, CouchDB startup, or Docker networking.
|
|
||||||
|
|
||||||
## Select cases
|
|
||||||
|
|
||||||
```bash
|
|
||||||
BENCH_CASES=couchdb-baseline,p2p-direct-local,p2p-user-turn \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile turn run --rm bench-runner
|
|
||||||
```
|
|
||||||
|
|
||||||
Available local cases:
|
|
||||||
|
|
||||||
- `couchdb-baseline`
|
|
||||||
- `p2p-direct-local`
|
|
||||||
- `couchdb-tethering-vpn-proxy`
|
|
||||||
- `couchdb-netem-home-wifi`
|
|
||||||
- `couchdb-netem-tethering-vpn`
|
|
||||||
- `p2p-smartphone-vpn-direct`
|
|
||||||
- `p2p-user-turn`
|
|
||||||
|
|
||||||
Set `BENCH_REPEAT_COUNT` to run each selected case more than once. Repeated
|
|
||||||
results are written with suffixes such as `-r01`, `-r02`, and `-r03`, and the
|
|
||||||
summary records the repeat index for each run.
|
|
||||||
|
|
||||||
`p2p-smartphone-vpn-direct` is a structural case name. When it is run inside
|
|
||||||
this Compose package it is not a real smartphone tethering/VPN measurement; it
|
|
||||||
uses the local Compose network. Use it only for wiring checks unless the runner
|
|
||||||
is executed in an actual tethered/VPN environment.
|
|
||||||
|
|
||||||
## Comparison model
|
|
||||||
|
|
||||||
The primary local comparison is between a remote-database path and a direct P2P
|
|
||||||
path:
|
|
||||||
|
|
||||||
| Case | Data path | What is measured | What is not measured |
|
|
||||||
| ------------------ | ------------------------------------------- | ------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- |
|
|
||||||
| `couchdb-baseline` | Device A -> CouchDB -> Device B | Two one-shot CLI synchronisation commands through a local HTTP latency proxy | Real WAN jitter, packet loss, bandwidth limits, VPN encapsulation, and server contention |
|
|
||||||
| `p2p-direct-local` | Device A -> Device B after Nostr signalling | One CLI P2P synchronisation command over WebRTC DataChannel with TURN disabled | Public relay operation, mobile carrier behaviour, TURN relay throughput, and first-peer discovery latency |
|
|
||||||
|
|
||||||
Use the CouchDB result as the remote-store baseline and the P2P result as the
|
|
||||||
direct-transfer comparison. The Nostr relay is used for signalling in the P2P
|
|
||||||
case, but synchronised note content is transferred over the WebRTC DataChannel.
|
|
||||||
The P2P result JSON records the selected WebRTC ICE candidate pair when the CLI
|
|
||||||
can collect it from `RTCPeerConnection.getStats()`. Interpret P2P paths from
|
|
||||||
the recorded candidate types rather than from TURN configuration alone. Do not
|
|
||||||
report P2P runs as Tier 2 constrained-network measurements until host and
|
|
||||||
client are captured under an equivalent shaped topology.
|
|
||||||
|
|
||||||
## Dataset and latency controls
|
|
||||||
|
|
||||||
```bash
|
|
||||||
BENCH_MD_FILE_COUNT=100 \
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES=512 \
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES=2048 \
|
|
||||||
BENCH_BIN_FILE_COUNT=25 \
|
|
||||||
BENCH_BIN_SIZE_BYTES=8192 \
|
|
||||||
BENCH_COUCHDB_RTT_MS=20 \
|
|
||||||
BENCH_PEERS_TIMEOUT=60 \
|
|
||||||
docker compose -f test/bench-network/compose.yml run --rm bench-runner
|
|
||||||
```
|
|
||||||
|
|
||||||
The current CouchDB latency model is the existing HTTP proxy inside
|
|
||||||
`bench-couchdb.ts`. It models a remote database path with additional request
|
|
||||||
latency, but it does not model packet loss, jitter, MTU, bandwidth limits,
|
|
||||||
bufferbloat, or VPN encapsulation.
|
|
||||||
|
|
||||||
For P2P runs, `BENCH_PEERS_TIMEOUT` is passed to `p2p-peers`. That command waits
|
|
||||||
for the requested observation window before printing discovered peers, so the
|
|
||||||
reported peer discovery command time should not be read as first-peer latency.
|
|
||||||
|
|
||||||
## Latency sweep
|
|
||||||
|
|
||||||
To run P2P once and CouchDB at several requested RTT values:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
BENCH_COMMAND=latency-sweep \
|
|
||||||
BENCH_SWEEP_RTT_MS=20,50,100,150,300 \
|
|
||||||
BENCH_MD_FILE_COUNT=100 \
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES=512 \
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES=2048 \
|
|
||||||
BENCH_BIN_FILE_COUNT=25 \
|
|
||||||
BENCH_BIN_SIZE_BYTES=8192 \
|
|
||||||
BENCH_SYNC_TIMEOUT=300 \
|
|
||||||
BENCH_PEERS_TIMEOUT=60 \
|
|
||||||
docker compose -f test/bench-network/compose.yml run --rm bench-runner
|
|
||||||
```
|
|
||||||
|
|
||||||
This sweep is useful for finding where the remote CouchDB path falls behind the
|
|
||||||
local direct P2P path in the current HTTP-proxy latency model. It should not be
|
|
||||||
presented as a full smartphone/VPN model.
|
|
||||||
|
|
||||||
## Network emulation smoke
|
|
||||||
|
|
||||||
The optional `netem` profile checks whether a Linux runner can apply traffic
|
|
||||||
shaping inside a Compose-managed container. This is a fixture smoke test for a
|
|
||||||
second-tier simulation design; it does not produce synchronisation performance
|
|
||||||
results by itself.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile netem run --rm netem-smoke
|
|
||||||
```
|
|
||||||
|
|
||||||
The smoke writes `tc qdisc`, route, and interface details under
|
|
||||||
`test/bench-network/bench-results/`. Profile parameters can be overridden:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
NETEM_PROFILE=tethering-vpn \
|
|
||||||
NETEM_DELAY_MS=140 \
|
|
||||||
NETEM_JITTER_MS=50 \
|
|
||||||
NETEM_LOSS_PERCENT=1.0 \
|
|
||||||
NETEM_BANDWIDTH_MBIT=10 \
|
|
||||||
NETEM_MTU=1380 \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile netem run --rm netem-smoke
|
|
||||||
```
|
|
||||||
|
|
||||||
## Split-container P2P emulation
|
|
||||||
|
|
||||||
The optional `p2p-split` profile runs the P2P host and client in separate
|
|
||||||
Compose services. Each service can apply `tc netem` to its own egress interface
|
|
||||||
and the client result records the selected WebRTC ICE candidate pair.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
BENCH_MD_FILE_COUNT=2 \
|
|
||||||
BENCH_BIN_FILE_COUNT=1 \
|
|
||||||
BENCH_PEERS_TIMEOUT=10 \
|
|
||||||
BENCH_SPLIT_RUN_ID="$(date -u +%Y%m%d%H%M%S)" \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile p2p-split up \
|
|
||||||
--abort-on-container-exit --exit-code-from p2p-split-client \
|
|
||||||
p2p-split-host p2p-split-client
|
|
||||||
```
|
|
||||||
|
|
||||||
By default this uses the `home-wifi` profile (`20 ms` delay, `5 ms` jitter,
|
|
||||||
`0.1%` loss, `100 Mbit`, and `1500` MTU) on both P2P containers. Override the
|
|
||||||
same `NETEM_*` variables used by the TCP shim to model a stricter profile.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
BENCH_MD_FILE_COUNT=100 \
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES=512 \
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES=2048 \
|
|
||||||
BENCH_BIN_FILE_COUNT=25 \
|
|
||||||
BENCH_BIN_SIZE_BYTES=8192 \
|
|
||||||
BENCH_PEERS_TIMEOUT=60 \
|
|
||||||
BENCH_SYNC_TIMEOUT=420 \
|
|
||||||
BENCH_SPLIT_RUN_ID="$(date -u +%Y%m%d%H%M%S)" \
|
|
||||||
BENCH_NETWORK_PROFILE=tethering-vpn \
|
|
||||||
NETEM_PROFILE=tethering-vpn \
|
|
||||||
NETEM_DELAY_MS=140 \
|
|
||||||
NETEM_JITTER_MS=50 \
|
|
||||||
NETEM_LOSS_PERCENT=1.0 \
|
|
||||||
NETEM_BANDWIDTH_MBIT=10 \
|
|
||||||
NETEM_MTU=1380 \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile p2p-split up \
|
|
||||||
--abort-on-container-exit --exit-code-from p2p-split-client \
|
|
||||||
p2p-split-host p2p-split-client
|
|
||||||
```
|
|
||||||
|
|
||||||
This is a Linux-only manual benchmark fixture, not a required pull-request CI
|
|
||||||
job. It shapes each P2P container's egress path, including signalling traffic,
|
|
||||||
and should be reported separately from the CouchDB TCP-shim measurements. The
|
|
||||||
result JSON includes `ok: true` for completed runs; failed runs still write a
|
|
||||||
summary with `ok: false` and a `failure` object before returning a non-zero
|
|
||||||
exit code.
|
|
||||||
|
|
||||||
Remove the shared work volume between repeated manual runs when you do not use
|
|
||||||
a unique `BENCH_SPLIT_RUN_ID`:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile p2p-split down --volumes
|
|
||||||
```
|
|
||||||
|
|
||||||
## P2P Signalling-Only Emulation
|
|
||||||
|
|
||||||
The optional `signalling-shim` profile shapes only the Nostr signalling relay
|
|
||||||
path. The P2P host and client run in the benchmark runner as usual, and the
|
|
||||||
configured relay URL points at a TCP netem shim in front of `nostr-relay`.
|
|
||||||
This is the preferred fixture when evaluating the hypothesis that P2P avoids a
|
|
||||||
constrained remote database data path while still depending on a signalling
|
|
||||||
server for rendezvous.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
BENCH_CASES=p2p-signalling-netem-home-wifi \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile signalling-shim run --rm \
|
|
||||||
bench-runner-signalling-shim
|
|
||||||
```
|
|
||||||
|
|
||||||
For a stricter signalling path:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
NETEM_PROFILE=tethering-vpn \
|
|
||||||
NETEM_DELAY_MS=140 \
|
|
||||||
NETEM_JITTER_MS=50 \
|
|
||||||
NETEM_LOSS_PERCENT=1.0 \
|
|
||||||
NETEM_BANDWIDTH_MBIT=10 \
|
|
||||||
NETEM_MTU=1380 \
|
|
||||||
BENCH_CASES=p2p-signalling-netem-tethering-vpn \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile signalling-shim run --rm \
|
|
||||||
bench-runner-signalling-shim
|
|
||||||
```
|
|
||||||
|
|
||||||
Use this separately from `p2p-split`. The `p2p-split` profile shapes each peer's
|
|
||||||
egress path, so it constrains both signalling and the selected WebRTC data
|
|
||||||
path. The `signalling-shim` profile constrains only relay access, which keeps
|
|
||||||
it focused on peer-to-signalling-server reachability rather than peer-to-peer
|
|
||||||
note-data transfer.
|
|
||||||
|
|
||||||
## Shimmed CouchDB benchmark
|
|
||||||
|
|
||||||
The optional `shim` profile runs a CouchDB benchmark through a TCP forwarding
|
|
||||||
container that applies `tc netem`. This is a manual Tier 2 synchronisation
|
|
||||||
measurement path; it is intentionally separate from required pull-request CI.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile shim run --rm bench-runner-shim
|
|
||||||
```
|
|
||||||
|
|
||||||
The default profile is `home-wifi`. A smartphone/VPN-like profile can be
|
|
||||||
requested by overriding both the shim parameters and the benchmark case:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
NETEM_PROFILE=tethering-vpn \
|
|
||||||
NETEM_DELAY_MS=140 \
|
|
||||||
NETEM_JITTER_MS=50 \
|
|
||||||
NETEM_LOSS_PERCENT=1.0 \
|
|
||||||
NETEM_BANDWIDTH_MBIT=10 \
|
|
||||||
NETEM_MTU=1380 \
|
|
||||||
BENCH_CASES=couchdb-netem-tethering-vpn \
|
|
||||||
docker compose -f test/bench-network/compose.yml --profile shim run --rm bench-runner-shim
|
|
||||||
```
|
|
||||||
|
|
||||||
The benchmark result records `simulationTier`, `networkProfile`, and
|
|
||||||
`networkModel`. The shim also writes its applied `tc qdisc`, route, and
|
|
||||||
interface state under `test/bench-network/bench-results/`.
|
|
||||||
This shim currently measures the CouchDB path only. It does not shape or verify
|
|
||||||
the WebRTC P2P data path.
|
|
||||||
@@ -1,336 +0,0 @@
|
|||||||
services:
|
|
||||||
couchdb:
|
|
||||||
image: couchdb:3.5.0
|
|
||||||
environment:
|
|
||||||
COUCHDB_USER: ${BENCH_COUCHDB_USER:-admin}
|
|
||||||
COUCHDB_PASSWORD: ${BENCH_COUCHDB_PASSWORD:-testpassword}
|
|
||||||
COUCHDB_SINGLE_NODE: "true"
|
|
||||||
healthcheck:
|
|
||||||
test:
|
|
||||||
[
|
|
||||||
"CMD-SHELL",
|
|
||||||
"curl -fsS -u ${BENCH_COUCHDB_USER:-admin}:${BENCH_COUCHDB_PASSWORD:-testpassword} http://127.0.0.1:5984/_up >/dev/null",
|
|
||||||
]
|
|
||||||
interval: 2s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 30
|
|
||||||
|
|
||||||
nostr-relay:
|
|
||||||
image: ghcr.io/hoytech/strfry:latest
|
|
||||||
entrypoint: sh
|
|
||||||
command:
|
|
||||||
- -lc
|
|
||||||
- |
|
|
||||||
cat > /tmp/strfry.conf <<'EOF'
|
|
||||||
db = "./strfry-db/"
|
|
||||||
|
|
||||||
relay {
|
|
||||||
bind = "0.0.0.0"
|
|
||||||
port = 7777
|
|
||||||
nofiles = 65536
|
|
||||||
|
|
||||||
info {
|
|
||||||
name = "livesync bench relay"
|
|
||||||
description = "local relay for livesync compose benchmarks"
|
|
||||||
}
|
|
||||||
|
|
||||||
maxWebsocketPayloadSize = 131072
|
|
||||||
autoPingSeconds = 55
|
|
||||||
|
|
||||||
writePolicy {
|
|
||||||
plugin = ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
exec /app/strfry --config /tmp/strfry.conf relay
|
|
||||||
tmpfs:
|
|
||||||
- /app/strfry-db:rw,size=256m
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "nc -z 127.0.0.1 7777"]
|
|
||||||
interval: 2s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 30
|
|
||||||
|
|
||||||
coturn:
|
|
||||||
image: coturn/coturn:latest
|
|
||||||
command:
|
|
||||||
- --log-file=stdout
|
|
||||||
- --listening-port=3478
|
|
||||||
- --user=${BENCH_TURN_USERNAME:-testuser}:${BENCH_TURN_CREDENTIAL:-testpass}
|
|
||||||
- --realm=${BENCH_TURN_REALM:-livesync.test}
|
|
||||||
profiles:
|
|
||||||
- turn
|
|
||||||
|
|
||||||
bench-runner:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.runner
|
|
||||||
depends_on:
|
|
||||||
couchdb:
|
|
||||||
condition: service_healthy
|
|
||||||
nostr-relay:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
|
||||||
BENCH_COMMAND: ${BENCH_COMMAND:-cases}
|
|
||||||
BENCH_CASES: ${BENCH_CASES:-couchdb-baseline,p2p-direct-local}
|
|
||||||
BENCH_REPEAT_COUNT: ${BENCH_REPEAT_COUNT:-1}
|
|
||||||
BENCH_CASES_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_SWEEP_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_SWEEP_RTT_MS: ${BENCH_SWEEP_RTT_MS:-20,50,100,150,300}
|
|
||||||
BENCH_SWEEP_INCLUDE_P2P: ${BENCH_SWEEP_INCLUDE_P2P:-true}
|
|
||||||
BENCH_COUCHDB_MANAGED: "false"
|
|
||||||
BENCH_COUCHDB_BACKEND_URI: http://couchdb:5984
|
|
||||||
BENCH_COUCHDB_URI: http://127.0.0.1:15989
|
|
||||||
BENCH_COUCHDB_USER: ${BENCH_COUCHDB_USER:-admin}
|
|
||||||
BENCH_COUCHDB_PASSWORD: ${BENCH_COUCHDB_PASSWORD:-testpassword}
|
|
||||||
BENCH_RELAY: ws://nostr-relay:7777/
|
|
||||||
BENCH_LOCAL_TURN_SERVERS: turn:coturn:3478
|
|
||||||
BENCH_MD_FILE_COUNT: ${BENCH_MD_FILE_COUNT:-20}
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: ${BENCH_MD_MIN_SIZE_BYTES:-512}
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: ${BENCH_MD_MAX_SIZE_BYTES:-2048}
|
|
||||||
BENCH_BIN_FILE_COUNT: ${BENCH_BIN_FILE_COUNT:-5}
|
|
||||||
BENCH_BIN_SIZE_BYTES: ${BENCH_BIN_SIZE_BYTES:-8192}
|
|
||||||
BENCH_COUCHDB_RTT_MS: ${BENCH_COUCHDB_RTT_MS:-20}
|
|
||||||
BENCH_TETHERING_VPN_RTT_MS: ${BENCH_TETHERING_VPN_RTT_MS:-120}
|
|
||||||
BENCH_SYNC_TIMEOUT: ${BENCH_SYNC_TIMEOUT:-300}
|
|
||||||
BENCH_PEERS_TIMEOUT: ${BENCH_PEERS_TIMEOUT:-60}
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: ${LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS:-60000}
|
|
||||||
BENCH_LIVESYNC_TEST_TEE: ${BENCH_LIVESYNC_TEST_TEE:-0}
|
|
||||||
CLI_E2E_TASK: ${CLI_E2E_TASK:-test:p2p-sync}
|
|
||||||
RELAY: ${RELAY:-ws://nostr-relay:7777/}
|
|
||||||
PEERS_TIMEOUT: ${PEERS_TIMEOUT:-20}
|
|
||||||
SYNC_TIMEOUT: ${SYNC_TIMEOUT:-60}
|
|
||||||
LIVESYNC_USE_COTURN: ${LIVESYNC_USE_COTURN:-0}
|
|
||||||
TURN_SERVERS: ${TURN_SERVERS:-none}
|
|
||||||
LIVESYNC_P2P_PEERS_RETRY: ${LIVESYNC_P2P_PEERS_RETRY:-1}
|
|
||||||
volumes:
|
|
||||||
- ./bench-results:/workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
|
|
||||||
couchdb-shim:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.shim
|
|
||||||
profiles:
|
|
||||||
- shim
|
|
||||||
depends_on:
|
|
||||||
couchdb:
|
|
||||||
condition: service_healthy
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
environment:
|
|
||||||
NETEM_PROFILE: ${NETEM_PROFILE:-home-wifi}
|
|
||||||
NETEM_INTERFACE: ${NETEM_INTERFACE:-eth0}
|
|
||||||
NETEM_DELAY_MS: ${NETEM_DELAY_MS:-20}
|
|
||||||
NETEM_JITTER_MS: ${NETEM_JITTER_MS:-5}
|
|
||||||
NETEM_LOSS_PERCENT: ${NETEM_LOSS_PERCENT:-0.1}
|
|
||||||
NETEM_BANDWIDTH_MBIT: ${NETEM_BANDWIDTH_MBIT:-100}
|
|
||||||
NETEM_MTU: ${NETEM_MTU:-1500}
|
|
||||||
NETEM_RESULT_ROOT: /bench-results
|
|
||||||
SHIM_LISTEN_PORT: 5984
|
|
||||||
SHIM_TARGET_HOST: couchdb
|
|
||||||
SHIM_TARGET_PORT: 5984
|
|
||||||
volumes:
|
|
||||||
- ./bench-results:/bench-results
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "nc -z 127.0.0.1 5984"]
|
|
||||||
interval: 2s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 30
|
|
||||||
|
|
||||||
bench-runner-shim:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.runner
|
|
||||||
profiles:
|
|
||||||
- shim
|
|
||||||
depends_on:
|
|
||||||
couchdb-shim:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
|
||||||
BENCH_COMMAND: ${BENCH_COMMAND:-cases}
|
|
||||||
BENCH_CASES: ${BENCH_CASES:-couchdb-netem-home-wifi}
|
|
||||||
BENCH_REPEAT_COUNT: ${BENCH_REPEAT_COUNT:-1}
|
|
||||||
BENCH_CASES_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_SWEEP_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_COUCHDB_MANAGED: "false"
|
|
||||||
BENCH_COUCHDB_BACKEND_URI: http://couchdb-shim:5984
|
|
||||||
BENCH_SHIM_COUCHDB_URI: http://couchdb-shim:5984
|
|
||||||
BENCH_COUCHDB_URI: http://127.0.0.1:15989
|
|
||||||
BENCH_COUCHDB_USER: ${BENCH_COUCHDB_USER:-admin}
|
|
||||||
BENCH_COUCHDB_PASSWORD: ${BENCH_COUCHDB_PASSWORD:-testpassword}
|
|
||||||
BENCH_MD_FILE_COUNT: ${BENCH_MD_FILE_COUNT:-20}
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: ${BENCH_MD_MIN_SIZE_BYTES:-512}
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: ${BENCH_MD_MAX_SIZE_BYTES:-2048}
|
|
||||||
BENCH_BIN_FILE_COUNT: ${BENCH_BIN_FILE_COUNT:-5}
|
|
||||||
BENCH_BIN_SIZE_BYTES: ${BENCH_BIN_SIZE_BYTES:-8192}
|
|
||||||
BENCH_COUCHDB_RTT_MS: ${BENCH_COUCHDB_RTT_MS:-1}
|
|
||||||
BENCH_SYNC_TIMEOUT: ${BENCH_SYNC_TIMEOUT:-300}
|
|
||||||
BENCH_LIVESYNC_TEST_TEE: ${BENCH_LIVESYNC_TEST_TEE:-0}
|
|
||||||
volumes:
|
|
||||||
- ./bench-results:/workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
|
|
||||||
p2p-signalling-shim:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.shim
|
|
||||||
profiles:
|
|
||||||
- signalling-shim
|
|
||||||
depends_on:
|
|
||||||
nostr-relay:
|
|
||||||
condition: service_healthy
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
environment:
|
|
||||||
NETEM_PROFILE: ${NETEM_PROFILE:-home-wifi}
|
|
||||||
NETEM_INTERFACE: ${NETEM_INTERFACE:-eth0}
|
|
||||||
NETEM_DELAY_MS: ${NETEM_DELAY_MS:-20}
|
|
||||||
NETEM_JITTER_MS: ${NETEM_JITTER_MS:-5}
|
|
||||||
NETEM_LOSS_PERCENT: ${NETEM_LOSS_PERCENT:-0.1}
|
|
||||||
NETEM_BANDWIDTH_MBIT: ${NETEM_BANDWIDTH_MBIT:-100}
|
|
||||||
NETEM_MTU: ${NETEM_MTU:-1500}
|
|
||||||
NETEM_RESULT_ROOT: /bench-results
|
|
||||||
SHIM_LISTEN_PORT: 7777
|
|
||||||
SHIM_TARGET_HOST: nostr-relay
|
|
||||||
SHIM_TARGET_PORT: 7777
|
|
||||||
volumes:
|
|
||||||
- ./bench-results:/bench-results
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "nc -z 127.0.0.1 7777"]
|
|
||||||
interval: 2s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 30
|
|
||||||
|
|
||||||
bench-runner-signalling-shim:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.runner
|
|
||||||
profiles:
|
|
||||||
- signalling-shim
|
|
||||||
depends_on:
|
|
||||||
p2p-signalling-shim:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
|
||||||
BENCH_COMMAND: ${BENCH_COMMAND:-cases}
|
|
||||||
BENCH_CASES: ${BENCH_CASES:-p2p-signalling-netem-home-wifi}
|
|
||||||
BENCH_REPEAT_COUNT: ${BENCH_REPEAT_COUNT:-1}
|
|
||||||
BENCH_CASES_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_SIGNAL_SHIM_RELAY: ws://p2p-signalling-shim:7777/
|
|
||||||
BENCH_MD_FILE_COUNT: ${BENCH_MD_FILE_COUNT:-20}
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: ${BENCH_MD_MIN_SIZE_BYTES:-512}
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: ${BENCH_MD_MAX_SIZE_BYTES:-2048}
|
|
||||||
BENCH_BIN_FILE_COUNT: ${BENCH_BIN_FILE_COUNT:-5}
|
|
||||||
BENCH_BIN_SIZE_BYTES: ${BENCH_BIN_SIZE_BYTES:-8192}
|
|
||||||
BENCH_SYNC_TIMEOUT: ${BENCH_SYNC_TIMEOUT:-300}
|
|
||||||
BENCH_PEERS_TIMEOUT: ${BENCH_PEERS_TIMEOUT:-60}
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: ${LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS:-60000}
|
|
||||||
BENCH_LIVESYNC_TEST_TEE: ${BENCH_LIVESYNC_TEST_TEE:-0}
|
|
||||||
volumes:
|
|
||||||
- ./bench-results:/workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
|
|
||||||
p2p-split-host:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.runner
|
|
||||||
profiles:
|
|
||||||
- p2p-split
|
|
||||||
depends_on:
|
|
||||||
nostr-relay:
|
|
||||||
condition: service_healthy
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
environment:
|
|
||||||
BENCH_COMMAND: p2p-split-node
|
|
||||||
BENCH_P2P_SPLIT_ROLE: host
|
|
||||||
BENCH_SPLIT_RUN_ID: ${BENCH_SPLIT_RUN_ID:-bench-split-run}
|
|
||||||
BENCH_SPLIT_WORK_ROOT: /p2p-work
|
|
||||||
BENCH_SPLIT_RESULT_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_RELAY: ws://nostr-relay:7777/
|
|
||||||
BENCH_APP_ID: ${BENCH_APP_ID:-self-hosted-livesync-cli-benchmark}
|
|
||||||
BENCH_ROOM_ID: ${BENCH_ROOM_ID:-bench-split-room}
|
|
||||||
BENCH_PASSPHRASE: ${BENCH_PASSPHRASE:-bench-split-passphrase}
|
|
||||||
BENCH_TURN_SERVERS: ${BENCH_TURN_SERVERS:-}
|
|
||||||
BENCH_MD_FILE_COUNT: ${BENCH_MD_FILE_COUNT:-20}
|
|
||||||
BENCH_MD_MIN_SIZE_BYTES: ${BENCH_MD_MIN_SIZE_BYTES:-512}
|
|
||||||
BENCH_MD_MAX_SIZE_BYTES: ${BENCH_MD_MAX_SIZE_BYTES:-2048}
|
|
||||||
BENCH_BIN_FILE_COUNT: ${BENCH_BIN_FILE_COUNT:-5}
|
|
||||||
BENCH_BIN_SIZE_BYTES: ${BENCH_BIN_SIZE_BYTES:-8192}
|
|
||||||
BENCH_SYNC_TIMEOUT: ${BENCH_SYNC_TIMEOUT:-300}
|
|
||||||
BENCH_PEERS_TIMEOUT: ${BENCH_PEERS_TIMEOUT:-60}
|
|
||||||
BENCH_NETEM_ENABLED: ${BENCH_NETEM_ENABLED:-1}
|
|
||||||
BENCH_NETWORK_PROFILE: ${BENCH_NETWORK_PROFILE:-home-wifi}
|
|
||||||
NETEM_PROFILE: ${NETEM_PROFILE:-home-wifi}
|
|
||||||
NETEM_INTERFACE: ${NETEM_INTERFACE:-eth0}
|
|
||||||
NETEM_DELAY_MS: ${NETEM_DELAY_MS:-20}
|
|
||||||
NETEM_JITTER_MS: ${NETEM_JITTER_MS:-5}
|
|
||||||
NETEM_LOSS_PERCENT: ${NETEM_LOSS_PERCENT:-0.1}
|
|
||||||
NETEM_BANDWIDTH_MBIT: ${NETEM_BANDWIDTH_MBIT:-100}
|
|
||||||
NETEM_MTU: ${NETEM_MTU:-1500}
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: ${LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS:-60000}
|
|
||||||
LIVESYNC_TEST_TEE: ${BENCH_LIVESYNC_TEST_TEE:-0}
|
|
||||||
volumes:
|
|
||||||
- p2p-split-work:/p2p-work
|
|
||||||
- ./bench-results:/workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
|
|
||||||
p2p-split-client:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.runner
|
|
||||||
profiles:
|
|
||||||
- p2p-split
|
|
||||||
depends_on:
|
|
||||||
nostr-relay:
|
|
||||||
condition: service_healthy
|
|
||||||
p2p-split-host:
|
|
||||||
condition: service_started
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
environment:
|
|
||||||
BENCH_COMMAND: p2p-split-node
|
|
||||||
BENCH_P2P_SPLIT_ROLE: client
|
|
||||||
BENCH_SPLIT_RUN_ID: ${BENCH_SPLIT_RUN_ID:-bench-split-run}
|
|
||||||
BENCH_SPLIT_WORK_ROOT: /p2p-work
|
|
||||||
BENCH_SPLIT_RESULT_ROOT: /workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
BENCH_RELAY: ws://nostr-relay:7777/
|
|
||||||
BENCH_APP_ID: ${BENCH_APP_ID:-self-hosted-livesync-cli-benchmark}
|
|
||||||
BENCH_ROOM_ID: ${BENCH_ROOM_ID:-bench-split-room}
|
|
||||||
BENCH_PASSPHRASE: ${BENCH_PASSPHRASE:-bench-split-passphrase}
|
|
||||||
BENCH_TURN_SERVERS: ${BENCH_TURN_SERVERS:-}
|
|
||||||
BENCH_SYNC_TIMEOUT: ${BENCH_SYNC_TIMEOUT:-300}
|
|
||||||
BENCH_PEERS_TIMEOUT: ${BENCH_PEERS_TIMEOUT:-60}
|
|
||||||
BENCH_NETEM_ENABLED: ${BENCH_NETEM_ENABLED:-1}
|
|
||||||
BENCH_NETWORK_PROFILE: ${BENCH_NETWORK_PROFILE:-home-wifi}
|
|
||||||
NETEM_PROFILE: ${NETEM_PROFILE:-home-wifi}
|
|
||||||
NETEM_INTERFACE: ${NETEM_INTERFACE:-eth0}
|
|
||||||
NETEM_DELAY_MS: ${NETEM_DELAY_MS:-20}
|
|
||||||
NETEM_JITTER_MS: ${NETEM_JITTER_MS:-5}
|
|
||||||
NETEM_LOSS_PERCENT: ${NETEM_LOSS_PERCENT:-0.1}
|
|
||||||
NETEM_BANDWIDTH_MBIT: ${NETEM_BANDWIDTH_MBIT:-100}
|
|
||||||
NETEM_MTU: ${NETEM_MTU:-1500}
|
|
||||||
LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS: ${LIVESYNC_P2P_RELAY_READY_TIMEOUT_MS:-60000}
|
|
||||||
LIVESYNC_TEST_TEE: ${BENCH_LIVESYNC_TEST_TEE:-0}
|
|
||||||
volumes:
|
|
||||||
- p2p-split-work:/p2p-work
|
|
||||||
- ./bench-results:/workspace/src/apps/cli/testdeno/bench-results
|
|
||||||
|
|
||||||
netem-smoke:
|
|
||||||
build:
|
|
||||||
context: ../..
|
|
||||||
dockerfile: test/bench-network/Dockerfile.netem
|
|
||||||
profiles:
|
|
||||||
- netem
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
environment:
|
|
||||||
NETEM_PROFILE: ${NETEM_PROFILE:-home-wifi}
|
|
||||||
NETEM_INTERFACE: ${NETEM_INTERFACE:-eth0}
|
|
||||||
NETEM_DELAY_MS: ${NETEM_DELAY_MS:-20}
|
|
||||||
NETEM_JITTER_MS: ${NETEM_JITTER_MS:-5}
|
|
||||||
NETEM_LOSS_PERCENT: ${NETEM_LOSS_PERCENT:-0.1}
|
|
||||||
NETEM_BANDWIDTH_MBIT: ${NETEM_BANDWIDTH_MBIT:-100}
|
|
||||||
NETEM_MTU: ${NETEM_MTU:-1500}
|
|
||||||
NETEM_RESULT_ROOT: /bench-results
|
|
||||||
volumes:
|
|
||||||
- ./bench-results:/bench-results
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
p2p-split-work:
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
profile="${NETEM_PROFILE:-home-wifi}"
|
|
||||||
iface="${NETEM_INTERFACE:-eth0}"
|
|
||||||
delay_ms="${NETEM_DELAY_MS:-20}"
|
|
||||||
jitter_ms="${NETEM_JITTER_MS:-5}"
|
|
||||||
loss_percent="${NETEM_LOSS_PERCENT:-0.1}"
|
|
||||||
bandwidth_mbit="${NETEM_BANDWIDTH_MBIT:-100}"
|
|
||||||
mtu="${NETEM_MTU:-1500}"
|
|
||||||
out_root="${NETEM_RESULT_ROOT:-/bench-results}"
|
|
||||||
timestamp="$(date -u +%Y%m%d-%H%M%S)"
|
|
||||||
out_dir="${out_root}/netem-smoke-${timestamp}"
|
|
||||||
out_file="${out_dir}/summary.json"
|
|
||||||
|
|
||||||
mkdir -p "$out_dir"
|
|
||||||
|
|
||||||
if ! ip link show "$iface" >/dev/null 2>&1; then
|
|
||||||
echo "Network interface '$iface' was not found" >&2
|
|
||||||
ip addr >&2
|
|
||||||
exit 2
|
|
||||||
fi
|
|
||||||
|
|
||||||
ip link set dev "$iface" mtu "$mtu"
|
|
||||||
tc qdisc del dev "$iface" root >/dev/null 2>&1 || true
|
|
||||||
tc qdisc add dev "$iface" root netem \
|
|
||||||
delay "${delay_ms}ms" "${jitter_ms}ms" \
|
|
||||||
loss "${loss_percent}%" \
|
|
||||||
rate "${bandwidth_mbit}mbit"
|
|
||||||
|
|
||||||
json_lines() {
|
|
||||||
awk '
|
|
||||||
{
|
|
||||||
gsub(/\\/, "\\\\");
|
|
||||||
gsub(/"/, "\\\"");
|
|
||||||
printf "%s \"%s\"", (NR == 1 ? "" : ",\n"), $0;
|
|
||||||
}
|
|
||||||
'
|
|
||||||
}
|
|
||||||
|
|
||||||
ip_addr="$(ip addr show "$iface" | json_lines)"
|
|
||||||
ip_route="$(ip route | json_lines)"
|
|
||||||
tc_qdisc="$(tc qdisc show dev "$iface" | json_lines)"
|
|
||||||
|
|
||||||
cat > "$out_file" <<EOF
|
|
||||||
{
|
|
||||||
"simulationTier": 2,
|
|
||||||
"mode": "netem-smoke",
|
|
||||||
"profile": "$profile",
|
|
||||||
"interface": "$iface",
|
|
||||||
"netem": {
|
|
||||||
"delayMs": $delay_ms,
|
|
||||||
"jitterMs": $jitter_ms,
|
|
||||||
"lossPercent": $loss_percent,
|
|
||||||
"bandwidthMbit": $bandwidth_mbit,
|
|
||||||
"mtu": $mtu
|
|
||||||
},
|
|
||||||
"ipAddr": [
|
|
||||||
$ip_addr
|
|
||||||
],
|
|
||||||
"ipRoute": [
|
|
||||||
$ip_route
|
|
||||||
],
|
|
||||||
"tcQdisc": [
|
|
||||||
$tc_qdisc
|
|
||||||
]
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat "$out_file"
|
|
||||||
echo "[netem-smoke] result file: $out_file"
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
profile="${NETEM_PROFILE:-home-wifi}"
|
|
||||||
iface="${NETEM_INTERFACE:-eth0}"
|
|
||||||
delay_ms="${NETEM_DELAY_MS:-20}"
|
|
||||||
jitter_ms="${NETEM_JITTER_MS:-5}"
|
|
||||||
loss_percent="${NETEM_LOSS_PERCENT:-0.1}"
|
|
||||||
bandwidth_mbit="${NETEM_BANDWIDTH_MBIT:-100}"
|
|
||||||
mtu="${NETEM_MTU:-1500}"
|
|
||||||
listen_port="${SHIM_LISTEN_PORT:-5984}"
|
|
||||||
target_host="${SHIM_TARGET_HOST:-couchdb}"
|
|
||||||
target_port="${SHIM_TARGET_PORT:-5984}"
|
|
||||||
out_root="${NETEM_RESULT_ROOT:-/bench-results}"
|
|
||||||
timestamp="$(date -u +%Y%m%d-%H%M%S)"
|
|
||||||
out_dir="${out_root}/netem-shim-${profile}-${timestamp}"
|
|
||||||
out_file="${out_dir}/summary.json"
|
|
||||||
|
|
||||||
json_lines() {
|
|
||||||
awk '
|
|
||||||
{
|
|
||||||
gsub(/\\/, "\\\\");
|
|
||||||
gsub(/"/, "\\\"");
|
|
||||||
printf "%s \"%s\"", (NR == 1 ? "" : ",\n"), $0;
|
|
||||||
}
|
|
||||||
'
|
|
||||||
}
|
|
||||||
|
|
||||||
mkdir -p "$out_dir"
|
|
||||||
|
|
||||||
if ! ip link show "$iface" >/dev/null 2>&1; then
|
|
||||||
echo "Network interface '$iface' was not found" >&2
|
|
||||||
ip addr >&2
|
|
||||||
exit 2
|
|
||||||
fi
|
|
||||||
|
|
||||||
ip link set dev "$iface" mtu "$mtu"
|
|
||||||
tc qdisc del dev "$iface" root >/dev/null 2>&1 || true
|
|
||||||
tc qdisc add dev "$iface" root netem \
|
|
||||||
delay "${delay_ms}ms" "${jitter_ms}ms" \
|
|
||||||
loss "${loss_percent}%" \
|
|
||||||
rate "${bandwidth_mbit}mbit"
|
|
||||||
|
|
||||||
ip_addr="$(ip addr show "$iface" | json_lines)"
|
|
||||||
ip_route="$(ip route | json_lines)"
|
|
||||||
tc_qdisc="$(tc qdisc show dev "$iface" | json_lines)"
|
|
||||||
|
|
||||||
cat > "$out_file" <<EOF
|
|
||||||
{
|
|
||||||
"simulationTier": 2,
|
|
||||||
"mode": "netem-tcp-shim",
|
|
||||||
"profile": "$profile",
|
|
||||||
"interface": "$iface",
|
|
||||||
"listenPort": $listen_port,
|
|
||||||
"targetHost": "$target_host",
|
|
||||||
"targetPort": $target_port,
|
|
||||||
"netem": {
|
|
||||||
"delayMs": $delay_ms,
|
|
||||||
"jitterMs": $jitter_ms,
|
|
||||||
"lossPercent": $loss_percent,
|
|
||||||
"bandwidthMbit": $bandwidth_mbit,
|
|
||||||
"mtu": $mtu
|
|
||||||
},
|
|
||||||
"ipAddr": [
|
|
||||||
$ip_addr
|
|
||||||
],
|
|
||||||
"ipRoute": [
|
|
||||||
$ip_route
|
|
||||||
],
|
|
||||||
"tcQdisc": [
|
|
||||||
$tc_qdisc
|
|
||||||
]
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat "$out_file"
|
|
||||||
echo "[netem-shim] forwarding 0.0.0.0:${listen_port} to ${target_host}:${target_port}"
|
|
||||||
echo "[netem-shim] result file: $out_file"
|
|
||||||
|
|
||||||
exec socat "TCP-LISTEN:${listen_port},fork,reuseaddr" "TCP:${target_host}:${target_port}"
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
case "${BENCH_COMMAND:-cases}" in
|
|
||||||
cases)
|
|
||||||
exec deno task bench:cases
|
|
||||||
;;
|
|
||||||
latency-sweep)
|
|
||||||
exec deno task bench:latency-sweep
|
|
||||||
;;
|
|
||||||
p2p-split-node)
|
|
||||||
exec deno task bench:p2p-split-node
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Unknown BENCH_COMMAND: ${BENCH_COMMAND}" >&2
|
|
||||||
echo "Expected one of: cases, latency-sweep, p2p-split-node" >&2
|
|
||||||
exit 2
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
This directory contains the experimental real Obsidian end-to-end runner.
|
This directory contains the experimental real Obsidian end-to-end runner.
|
||||||
|
|
||||||
|
The generic application discovery, isolated-vault, plug-in installation, process lifecycle, CLI, CDP, and readiness implementation comes from `@vrtmrz/obsidian-test-session`. The small modules under `runner/` preserve LiveSync's existing imports and supply its plug-in ID and artefact location. LiveSync-specific fixtures, services, settings, workflows, and assertions remain in this repository.
|
||||||
|
|
||||||
The current smoke runner verifies only the launch path:
|
The current smoke runner verifies only the launch path:
|
||||||
|
|
||||||
1. create a temporary vault,
|
1. create a temporary vault,
|
||||||
@@ -18,7 +20,7 @@ The runner does not require Self-hosted LiveSync to expose an E2E-only bridge. R
|
|||||||
|
|
||||||
Obsidian 1.12 stores the global community plug-in switch outside `.obsidian/community-plugins.json`. The smoke runner enables it through `app.plugins.setEnable(true)` after the vault window is available.
|
Obsidian 1.12 stores the global community plug-in switch outside `.obsidian/community-plugins.json`. The smoke runner enables it through `app.plugins.setEnable(true)` after the vault window is available.
|
||||||
|
|
||||||
Future workflows should use `startObsidianLiveSyncSession()` from `runner/session.ts` rather than repeating the launch and plug-in readiness sequence.
|
Future workflows should use `startObsidianLiveSyncSession()` from `runner/session.ts` rather than repeating the launch and plug-in readiness sequence. Add generic Obsidian bootstrap improvements to Fancy Kit; keep LiveSync behaviour and scenario helpers here.
|
||||||
|
|
||||||
Each test vault uses an isolated Obsidian profile. The runner creates temporary directories for `HOME`, `XDG_CONFIG_HOME`, `XDG_CACHE_HOME`, `XDG_DATA_HOME`, and Electron `--user-data-dir`, writes the vault registry into those directories, pre-seeds the temporary Chromium local storage so community plug-ins are trusted for that generated vault ID, and passes the same environment to `obsidian-cli`. This is intended to keep real Obsidian E2E runs separate from a developer's daily Obsidian profile and vault registry.
|
Each test vault uses an isolated Obsidian profile. The runner creates temporary directories for `HOME`, `XDG_CONFIG_HOME`, `XDG_CACHE_HOME`, `XDG_DATA_HOME`, and Electron `--user-data-dir`, writes the vault registry into those directories, pre-seeds the temporary Chromium local storage so community plug-ins are trusted for that generated vault ID, and passes the same environment to `obsidian-cli`. This is intended to keep real Obsidian E2E runs separate from a developer's daily Obsidian profile and vault registry.
|
||||||
|
|
||||||
|
|||||||
@@ -1,103 +1,6 @@
|
|||||||
import { spawn } from "node:child_process";
|
export {
|
||||||
|
evalObsidianJson,
|
||||||
export type ObsidianCliResult = {
|
openVaultWithObsidianCli,
|
||||||
code: number | null;
|
runObsidianCli,
|
||||||
signal: NodeJS.Signals | null;
|
type ObsidianCliResult,
|
||||||
stdout: string;
|
} from "@vrtmrz/obsidian-test-session";
|
||||||
stderr: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
function parseEvalJson(stdout: string): unknown {
|
|
||||||
const marker = "=> ";
|
|
||||||
const markerIndex = stdout.indexOf(marker);
|
|
||||||
const text = markerIndex >= 0 ? stdout.slice(markerIndex + marker.length) : stdout;
|
|
||||||
return JSON.parse(text.trim());
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function runObsidianCli(
|
|
||||||
cliBinary: string,
|
|
||||||
args: string[],
|
|
||||||
env: NodeJS.ProcessEnv = process.env,
|
|
||||||
timeoutMs = Number(process.env.E2E_OBSIDIAN_CLI_TIMEOUT_MS ?? 10000)
|
|
||||||
): Promise<ObsidianCliResult> {
|
|
||||||
return await new Promise((resolve, reject) => {
|
|
||||||
const child = spawn(cliBinary, args, {
|
|
||||||
stdio: ["ignore", "pipe", "pipe"],
|
|
||||||
env,
|
|
||||||
});
|
|
||||||
let stdout = "";
|
|
||||||
let stderr = "";
|
|
||||||
const timeout = setTimeout(() => {
|
|
||||||
child.kill("SIGKILL");
|
|
||||||
reject(new Error(`Obsidian CLI timed out: ${cliBinary} ${args.join(" ")}`));
|
|
||||||
}, timeoutMs);
|
|
||||||
|
|
||||||
child.stdout?.on("data", (chunk: Buffer) => {
|
|
||||||
stdout += chunk.toString();
|
|
||||||
});
|
|
||||||
child.stderr?.on("data", (chunk: Buffer) => {
|
|
||||||
stderr += chunk.toString();
|
|
||||||
});
|
|
||||||
child.on("error", (error) => {
|
|
||||||
clearTimeout(timeout);
|
|
||||||
reject(error);
|
|
||||||
});
|
|
||||||
child.on("exit", (code, signal) => {
|
|
||||||
clearTimeout(timeout);
|
|
||||||
resolve({ code, signal, stdout, stderr });
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function openVaultWithObsidianCli(
|
|
||||||
cliBinary: string,
|
|
||||||
vaultPath: string,
|
|
||||||
env: NodeJS.ProcessEnv = process.env
|
|
||||||
): Promise<void> {
|
|
||||||
const result = await runObsidianCli(cliBinary, [`obsidian://open?path=${encodeURIComponent(vaultPath)}`], env);
|
|
||||||
if (result.code !== 0) {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
`Failed to open Obsidian vault through CLI. code=${result.code}, signal=${result.signal}`,
|
|
||||||
result.stdout ? `stdout:\n${result.stdout}` : undefined,
|
|
||||||
result.stderr ? `stderr:\n${result.stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function evalObsidianJson<T>(
|
|
||||||
cliBinary: string,
|
|
||||||
code: string,
|
|
||||||
env: NodeJS.ProcessEnv = process.env,
|
|
||||||
timeoutMs?: number
|
|
||||||
): Promise<T> {
|
|
||||||
const result = await runObsidianCli(cliBinary, ["eval", `code=${code}`], env, timeoutMs);
|
|
||||||
if (result.code !== 0) {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
`Failed to evaluate Obsidian JavaScript through CLI. code=${result.code}, signal=${result.signal}`,
|
|
||||||
result.stdout ? `stdout:\n${result.stdout}` : undefined,
|
|
||||||
result.stderr ? `stderr:\n${result.stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
return parseEvalJson(result.stdout) as T;
|
|
||||||
} catch (error) {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
`Failed to parse Obsidian CLI eval JSON. code=${result.code}, signal=${result.signal}`,
|
|
||||||
error instanceof Error ? `parse error: ${error.message}` : undefined,
|
|
||||||
result.stdout ? `stdout:\n${result.stdout}` : undefined,
|
|
||||||
result.stderr ? `stderr:\n${result.stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,149 +1,7 @@
|
|||||||
import { accessSync, constants, existsSync } from "node:fs";
|
export {
|
||||||
import { resolve } from "node:path";
|
discoverObsidianBinary,
|
||||||
import { platform } from "node:process";
|
discoverObsidianCli,
|
||||||
|
requireObsidianBinary,
|
||||||
export type ObsidianDiscoveryResult = {
|
requireObsidianCli,
|
||||||
binary?: string;
|
type ObsidianDiscoveryResult,
|
||||||
source?: string;
|
} from "@vrtmrz/obsidian-test-session";
|
||||||
checked: string[];
|
|
||||||
};
|
|
||||||
|
|
||||||
const defaultCandidatesByPlatform: Record<NodeJS.Platform, string[]> = {
|
|
||||||
aix: [],
|
|
||||||
android: [],
|
|
||||||
darwin: [
|
|
||||||
"/Applications/Obsidian.app/Contents/MacOS/Obsidian",
|
|
||||||
"/Applications/Obsidian.app/Contents/MacOS/obsidian",
|
|
||||||
],
|
|
||||||
freebsd: [],
|
|
||||||
haiku: [],
|
|
||||||
linux: [
|
|
||||||
"_testdata/obsidian/squashfs-root/obsidian",
|
|
||||||
"_testdata/obsidian/squashfs-root/AppRun",
|
|
||||||
"_testdata/obsidian/Obsidian-1.12.7-arm64.AppImage",
|
|
||||||
"_testdata/obsidian/Obsidian-1.12.7-x86_64.AppImage",
|
|
||||||
"/usr/bin/obsidian",
|
|
||||||
"/usr/local/bin/obsidian",
|
|
||||||
"/snap/bin/obsidian",
|
|
||||||
"/opt/Obsidian/obsidian",
|
|
||||||
"/opt/obsidian/obsidian",
|
|
||||||
"/app/bin/obsidian",
|
|
||||||
],
|
|
||||||
openbsd: [],
|
|
||||||
sunos: [],
|
|
||||||
win32: ["C:\\Program Files\\Obsidian\\Obsidian.exe", "C:\\Program Files (x86)\\Obsidian\\Obsidian.exe"],
|
|
||||||
cygwin: [],
|
|
||||||
netbsd: [],
|
|
||||||
};
|
|
||||||
|
|
||||||
const defaultCliCandidatesByPlatform: Record<NodeJS.Platform, string[]> = {
|
|
||||||
aix: [],
|
|
||||||
android: [],
|
|
||||||
darwin: [
|
|
||||||
"/Applications/Obsidian.app/Contents/MacOS/obsidian-cli",
|
|
||||||
"/Applications/Obsidian.app/Contents/Resources/obsidian-cli",
|
|
||||||
],
|
|
||||||
freebsd: [],
|
|
||||||
haiku: [],
|
|
||||||
linux: [
|
|
||||||
"_testdata/obsidian/squashfs-root/obsidian-cli",
|
|
||||||
"/usr/bin/obsidian-cli",
|
|
||||||
"/usr/local/bin/obsidian-cli",
|
|
||||||
"/snap/bin/obsidian-cli",
|
|
||||||
"/opt/Obsidian/obsidian-cli",
|
|
||||||
"/opt/obsidian/obsidian-cli",
|
|
||||||
],
|
|
||||||
openbsd: [],
|
|
||||||
sunos: [],
|
|
||||||
win32: ["C:\\Program Files\\Obsidian\\obsidian-cli.exe", "C:\\Program Files (x86)\\Obsidian\\obsidian-cli.exe"],
|
|
||||||
cygwin: [],
|
|
||||||
netbsd: [],
|
|
||||||
};
|
|
||||||
|
|
||||||
function isUsableFile(path: string): boolean {
|
|
||||||
const resolvedPath = resolve(path);
|
|
||||||
if (!existsSync(resolvedPath)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (platform === "win32") {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
accessSync(resolvedPath, constants.X_OK);
|
|
||||||
return true;
|
|
||||||
} catch {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function discoverObsidianBinary(env: NodeJS.ProcessEnv = process.env): ObsidianDiscoveryResult {
|
|
||||||
const checked: string[] = [];
|
|
||||||
const envBinary = env.OBSIDIAN_BINARY?.trim();
|
|
||||||
if (envBinary) {
|
|
||||||
checked.push(envBinary);
|
|
||||||
if (isUsableFile(envBinary)) {
|
|
||||||
return {
|
|
||||||
binary: resolve(envBinary),
|
|
||||||
source: "OBSIDIAN_BINARY",
|
|
||||||
checked,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const candidates = defaultCandidatesByPlatform[platform] ?? [];
|
|
||||||
for (const candidate of candidates) {
|
|
||||||
checked.push(candidate);
|
|
||||||
if (isUsableFile(candidate)) {
|
|
||||||
return {
|
|
||||||
binary: resolve(candidate),
|
|
||||||
source: "default-path",
|
|
||||||
checked,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return { checked };
|
|
||||||
}
|
|
||||||
|
|
||||||
export function requireObsidianBinary(env: NodeJS.ProcessEnv = process.env): string {
|
|
||||||
const result = discoverObsidianBinary(env);
|
|
||||||
if (!result.binary) {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
"Could not find an Obsidian executable.",
|
|
||||||
"Set OBSIDIAN_BINARY to the installed Obsidian executable path.",
|
|
||||||
`Checked paths: ${result.checked.length > 0 ? result.checked.join(", ") : "(none)"}`,
|
|
||||||
].join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return result.binary;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function discoverObsidianCli(env: NodeJS.ProcessEnv = process.env): ObsidianDiscoveryResult {
|
|
||||||
const checked: string[] = [];
|
|
||||||
const envBinary = env.OBSIDIAN_CLI?.trim();
|
|
||||||
if (envBinary) {
|
|
||||||
checked.push(envBinary);
|
|
||||||
if (isUsableFile(envBinary)) {
|
|
||||||
return {
|
|
||||||
binary: resolve(envBinary),
|
|
||||||
source: "OBSIDIAN_CLI",
|
|
||||||
checked,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const candidates = defaultCliCandidatesByPlatform[platform] ?? [];
|
|
||||||
for (const candidate of candidates) {
|
|
||||||
checked.push(candidate);
|
|
||||||
if (isUsableFile(candidate)) {
|
|
||||||
return {
|
|
||||||
binary: resolve(candidate),
|
|
||||||
source: "default-path",
|
|
||||||
checked,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return { checked };
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,196 +1,26 @@
|
|||||||
import { execFile, spawn, type ChildProcess } from "node:child_process";
|
import {
|
||||||
import { once } from "node:events";
|
cleanupStaleObsidianE2EProcesses as cleanupStaleProcesses,
|
||||||
import { existsSync } from "node:fs";
|
launchObsidian as launchObsidianSession,
|
||||||
import { dirname } from "node:path";
|
type LaunchObsidianOptions,
|
||||||
import { platform } from "node:process";
|
type ObsidianProcess,
|
||||||
import { promisify } from "node:util";
|
type ObsidianProcessOutput,
|
||||||
|
} from "@vrtmrz/obsidian-test-session";
|
||||||
|
|
||||||
export type ObsidianProcess = {
|
export type { LaunchObsidianOptions, ObsidianProcess, ObsidianProcessOutput };
|
||||||
process: ChildProcess;
|
|
||||||
output: () => { stdout: string; stderr: string };
|
|
||||||
stop: () => Promise<void>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type LaunchObsidianOptions = {
|
const STALE_PROCESS_PATTERN = "obsidian-livesync-e2e-state";
|
||||||
binary: string;
|
|
||||||
vaultPath: string;
|
|
||||||
homePath?: string;
|
|
||||||
xdgConfigPath?: string;
|
|
||||||
xdgCachePath?: string;
|
|
||||||
xdgDataPath?: string;
|
|
||||||
userDataPath?: string;
|
|
||||||
startupGraceMs?: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
const execFileAsync = promisify(execFile);
|
|
||||||
|
|
||||||
function splitArgs(args: string): string[] {
|
|
||||||
return args.split(" ").filter((arg) => arg.length > 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
function launchArgs(options: LaunchObsidianOptions): string[] {
|
|
||||||
const explicitArgs = process.env.E2E_OBSIDIAN_ARGS;
|
|
||||||
if (explicitArgs) {
|
|
||||||
return splitArgs(explicitArgs);
|
|
||||||
}
|
|
||||||
return [
|
|
||||||
"--no-sandbox",
|
|
||||||
"--disable-gpu",
|
|
||||||
"--disable-software-rasterizer",
|
|
||||||
...(process.env.E2E_OBSIDIAN_USE_USER_DATA_DIR !== "false" && options.userDataPath
|
|
||||||
? [`--user-data-dir=${options.userDataPath}`]
|
|
||||||
: []),
|
|
||||||
...(process.env.E2E_OBSIDIAN_REMOTE_DEBUGGING_PORT
|
|
||||||
? [`--remote-debugging-port=${process.env.E2E_OBSIDIAN_REMOTE_DEBUGGING_PORT}`]
|
|
||||||
: []),
|
|
||||||
`obsidian://open?path=${encodeURIComponent(options.vaultPath)}`,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
function shouldUseXvfb(): boolean {
|
|
||||||
if (process.env.E2E_OBSIDIAN_USE_XVFB === "false") {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (process.env.DISPLAY || process.env.WAYLAND_DISPLAY) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return platform === "linux" && existsSync("/usr/bin/xvfb-run");
|
|
||||||
}
|
|
||||||
|
|
||||||
async function listChildPids(pid: number): Promise<number[]> {
|
|
||||||
if (platform === "win32") {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
const { stdout } = await execFileAsync("ps", ["-o", "pid=", "--ppid", String(pid)]).catch(() => ({
|
|
||||||
stdout: "",
|
|
||||||
}));
|
|
||||||
const directChildren = stdout
|
|
||||||
.split("\n")
|
|
||||||
.map((line) => Number(line.trim()))
|
|
||||||
.filter((childPid) => Number.isInteger(childPid) && childPid > 0);
|
|
||||||
const descendants = await Promise.all(directChildren.map((childPid) => listChildPids(childPid)));
|
|
||||||
return [...directChildren, ...descendants.flat()];
|
|
||||||
}
|
|
||||||
|
|
||||||
async function killPids(pids: number[], signal: NodeJS.Signals): Promise<void> {
|
|
||||||
for (const pid of pids) {
|
|
||||||
if (pid === process.pid) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
process.kill(pid, signal);
|
|
||||||
} catch {
|
|
||||||
// The process may have exited between discovery and signalling.
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function waitForExit(exitPromise: Promise<unknown>, timeoutMs: number): Promise<"exited" | "timeout"> {
|
|
||||||
const stopTimer = new Promise<"timeout">((resolve) => {
|
|
||||||
setTimeout(() => resolve("timeout"), timeoutMs);
|
|
||||||
});
|
|
||||||
const stopResult = await Promise.race([exitPromise.then(() => "exited" as const), stopTimer]);
|
|
||||||
return stopResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function cleanupStaleObsidianE2EProcesses(): Promise<void> {
|
export async function cleanupStaleObsidianE2EProcesses(): Promise<void> {
|
||||||
if (process.env.E2E_OBSIDIAN_CLEANUP_STALE_PROCESSES === "false" || platform === "win32") {
|
await cleanupStaleProcesses(STALE_PROCESS_PATTERN);
|
||||||
return;
|
|
||||||
}
|
|
||||||
const { stdout } = await execFileAsync("pgrep", ["-f", "obsidian-livesync-e2e-state"]).catch(() => ({
|
|
||||||
stdout: "",
|
|
||||||
}));
|
|
||||||
const pids = stdout
|
|
||||||
.split("\n")
|
|
||||||
.map((line) => Number(line.trim()))
|
|
||||||
.filter((pid) => Number.isInteger(pid) && pid > 0 && pid !== process.pid);
|
|
||||||
if (pids.length === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await killPids(pids, "SIGTERM");
|
|
||||||
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
||||||
await killPids(pids, "SIGKILL");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function launchObsidian(options: LaunchObsidianOptions): Promise<ObsidianProcess> {
|
export async function launchObsidian(options: LaunchObsidianOptions): Promise<ObsidianProcess> {
|
||||||
await cleanupStaleObsidianE2EProcesses();
|
const configuredPort =
|
||||||
const startupGraceMs = options.startupGraceMs ?? 1000;
|
options.env?.E2E_OBSIDIAN_REMOTE_DEBUGGING_PORT ?? process.env.E2E_OBSIDIAN_REMOTE_DEBUGGING_PORT;
|
||||||
const args = launchArgs(options);
|
return await launchObsidianSession({
|
||||||
const useXvfb = shouldUseXvfb();
|
...options,
|
||||||
const command = useXvfb ? "/usr/bin/xvfb-run" : options.binary;
|
remoteDebuggingPort:
|
||||||
const commandArgs = useXvfb ? ["-a", options.binary, ...args] : args;
|
options.remoteDebuggingPort ?? (configuredPort === undefined ? undefined : Number(configuredPort)),
|
||||||
const child = spawn(command, commandArgs, {
|
staleProcessPattern: options.staleProcessPattern ?? STALE_PROCESS_PATTERN,
|
||||||
cwd: dirname(options.binary),
|
|
||||||
detached: true,
|
|
||||||
stdio: ["ignore", "pipe", "pipe"],
|
|
||||||
env: {
|
|
||||||
...process.env,
|
|
||||||
...(options.homePath ? { HOME: options.homePath } : {}),
|
|
||||||
...(options.xdgConfigPath ? { XDG_CONFIG_HOME: options.xdgConfigPath } : {}),
|
|
||||||
...(options.xdgCachePath ? { XDG_CACHE_HOME: options.xdgCachePath } : {}),
|
|
||||||
...(options.xdgDataPath ? { XDG_DATA_HOME: options.xdgDataPath } : {}),
|
|
||||||
OBSIDIAN_DISABLE_GPU: process.env.OBSIDIAN_DISABLE_GPU ?? "1",
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
let stderr = "";
|
|
||||||
let stdout = "";
|
|
||||||
child.stderr?.on("data", (chunk: Buffer) => {
|
|
||||||
stderr += chunk.toString();
|
|
||||||
});
|
|
||||||
child.stdout?.on("data", (chunk: Buffer) => {
|
|
||||||
stdout += chunk.toString();
|
|
||||||
});
|
|
||||||
|
|
||||||
const exitPromise = once(child, "exit").then(([code, signal]) => ({ code, signal }));
|
|
||||||
const timer = new Promise<"timeout">((resolve) => {
|
|
||||||
setTimeout(() => resolve("timeout"), startupGraceMs);
|
|
||||||
});
|
|
||||||
const firstResult = await Promise.race([exitPromise, timer]);
|
|
||||||
if (firstResult !== "timeout") {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
`Obsidian exited before the smoke timeout. code=${firstResult.code}, signal=${firstResult.signal}`,
|
|
||||||
stdout ? `stdout:\n${stdout}` : undefined,
|
|
||||||
stderr ? `stderr:\n${stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
process: child,
|
|
||||||
output: () => ({ stdout, stderr }),
|
|
||||||
stop: async () => {
|
|
||||||
if (child.exitCode !== null || child.signalCode !== null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const descendantPids = child.pid ? await listChildPids(child.pid) : [];
|
|
||||||
if (child.pid) {
|
|
||||||
try {
|
|
||||||
process.kill(-child.pid, "SIGTERM");
|
|
||||||
} catch {
|
|
||||||
child.kill("SIGTERM");
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
child.kill("SIGTERM");
|
|
||||||
}
|
|
||||||
await killPids(descendantPids.reverse(), "SIGTERM");
|
|
||||||
const stopResult = await waitForExit(exitPromise, 5000);
|
|
||||||
if (stopResult === "timeout") {
|
|
||||||
if (child.pid) {
|
|
||||||
try {
|
|
||||||
process.kill(-child.pid, "SIGKILL");
|
|
||||||
} catch {
|
|
||||||
child.kill("SIGKILL");
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
child.kill("SIGKILL");
|
|
||||||
}
|
|
||||||
await killPids(descendantPids, "SIGKILL");
|
|
||||||
await exitPromise;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,39 +1,13 @@
|
|||||||
import { copyFile, mkdir, writeFile } from "node:fs/promises";
|
import {
|
||||||
import { existsSync } from "node:fs";
|
installBuiltPlugin as installGenericBuiltPlugin,
|
||||||
import { join, resolve } from "node:path";
|
type PluginInstallResult,
|
||||||
|
} from "@vrtmrz/obsidian-test-session";
|
||||||
|
|
||||||
export type PluginInstallResult = {
|
export type { PluginInstallResult };
|
||||||
pluginDir: string;
|
|
||||||
copied: string[];
|
|
||||||
};
|
|
||||||
|
|
||||||
const pluginId = "obsidian-livesync";
|
|
||||||
|
|
||||||
export async function installBuiltPlugin(vaultPath: string, rootDir = process.cwd()): Promise<PluginInstallResult> {
|
export async function installBuiltPlugin(vaultPath: string, rootDir = process.cwd()): Promise<PluginInstallResult> {
|
||||||
const pluginDir = join(vaultPath, ".obsidian", "plugins", pluginId);
|
return await installGenericBuiltPlugin(vaultPath, {
|
||||||
const copied: string[] = [];
|
pluginId: "obsidian-livesync",
|
||||||
await mkdir(pluginDir, { recursive: true });
|
artifactRoot: rootDir,
|
||||||
|
});
|
||||||
const requiredArtifacts = ["main.js", "manifest.json"];
|
|
||||||
for (const artifact of requiredArtifacts) {
|
|
||||||
const source = resolve(rootDir, artifact);
|
|
||||||
if (!existsSync(source)) {
|
|
||||||
throw new Error(`Required plug-in artifact is missing: ${source}`);
|
|
||||||
}
|
|
||||||
await copyFile(source, join(pluginDir, artifact));
|
|
||||||
copied.push(artifact);
|
|
||||||
}
|
|
||||||
|
|
||||||
const optionalArtifacts = ["styles.css"];
|
|
||||||
for (const artifact of optionalArtifacts) {
|
|
||||||
const source = resolve(rootDir, artifact);
|
|
||||||
if (!existsSync(source)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
await copyFile(source, join(pluginDir, artifact));
|
|
||||||
copied.push(artifact);
|
|
||||||
}
|
|
||||||
|
|
||||||
await writeFile(join(vaultPath, ".obsidian", "community-plugins.json"), JSON.stringify([pluginId], null, 4));
|
|
||||||
return { pluginDir, copied };
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,41 +1 @@
|
|||||||
import { evalObsidianJson } from "./cli.ts";
|
export { waitForPluginReady, type PluginReadiness } from "@vrtmrz/obsidian-test-session";
|
||||||
|
|
||||||
export type PluginReadiness = {
|
|
||||||
status: "ready";
|
|
||||||
pluginId: string;
|
|
||||||
pluginVersion: string;
|
|
||||||
vaultName: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function waitForPluginReady(
|
|
||||||
cliBinary: string,
|
|
||||||
env: NodeJS.ProcessEnv,
|
|
||||||
timeoutMs = Number(process.env.E2E_OBSIDIAN_READY_TIMEOUT_MS ?? 20000)
|
|
||||||
): Promise<PluginReadiness> {
|
|
||||||
const deadline = Date.now() + timeoutMs;
|
|
||||||
let lastOutput = "";
|
|
||||||
while (Date.now() < deadline) {
|
|
||||||
try {
|
|
||||||
const readiness = await evalObsidianJson<PluginReadiness>(
|
|
||||||
cliBinary,
|
|
||||||
[
|
|
||||||
"(async()=>JSON.stringify({",
|
|
||||||
"status:!!app.plugins.plugins['obsidian-livesync']?'ready':'pending',",
|
|
||||||
"pluginId:'obsidian-livesync',",
|
|
||||||
"pluginVersion:app.plugins.manifests['obsidian-livesync']?.version,",
|
|
||||||
"vaultName:app.vault.getName()",
|
|
||||||
"}))()",
|
|
||||||
].join(""),
|
|
||||||
env
|
|
||||||
);
|
|
||||||
if (readiness.status === "ready") {
|
|
||||||
return readiness;
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
lastOutput = error instanceof Error ? error.message : String(error);
|
|
||||||
// Keep polling until Obsidian exposes the vault-side CLI and plug-in state.
|
|
||||||
}
|
|
||||||
await new Promise((resolve) => setTimeout(resolve, 500));
|
|
||||||
}
|
|
||||||
throw new Error(`Timed out waiting for Self-hosted LiveSync readiness through Obsidian CLI.\n${lastOutput}`);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,16 +1,7 @@
|
|||||||
import { evalObsidianJson, openVaultWithObsidianCli, runObsidianCli } from "./cli.ts";
|
import { startObsidianPluginSession, type ObsidianPluginSession } from "@vrtmrz/obsidian-test-session";
|
||||||
import { launchObsidian, type ObsidianProcess } from "./launch.ts";
|
|
||||||
import { installBuiltPlugin, type PluginInstallResult } from "./pluginInstaller.ts";
|
|
||||||
import { waitForPluginReady, type PluginReadiness } from "./readiness.ts";
|
|
||||||
import type { TemporaryVault } from "./vault.ts";
|
import type { TemporaryVault } from "./vault.ts";
|
||||||
import { obsidianRemoteDebuggingPort, preseedTrustedVaultState, trustVaultIfPrompted } from "./ui.ts";
|
|
||||||
|
|
||||||
export type ObsidianLiveSyncSession = {
|
export type ObsidianLiveSyncSession = ObsidianPluginSession;
|
||||||
app: ObsidianProcess;
|
|
||||||
cliEnv: NodeJS.ProcessEnv;
|
|
||||||
install: PluginInstallResult;
|
|
||||||
readiness: PluginReadiness;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type StartObsidianLiveSyncSessionOptions = {
|
export type StartObsidianLiveSyncSessionOptions = {
|
||||||
binary: string;
|
binary: string;
|
||||||
@@ -19,101 +10,15 @@ export type StartObsidianLiveSyncSessionOptions = {
|
|||||||
startupGraceMs?: number;
|
startupGraceMs?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
async function waitForPluginCatalogue(cliBinary: string, env: NodeJS.ProcessEnv): Promise<void> {
|
|
||||||
const deadline = Date.now() + Number(process.env.E2E_OBSIDIAN_CLI_READY_TIMEOUT_MS ?? 60000);
|
|
||||||
let lastOutput = "";
|
|
||||||
while (Date.now() < deadline) {
|
|
||||||
try {
|
|
||||||
const result = await evalObsidianJson<{ hasLiveSync: boolean }>(
|
|
||||||
cliBinary,
|
|
||||||
["JSON.stringify({", "hasLiveSync:!!app.plugins?.manifests?.['obsidian-livesync']", "})"].join(""),
|
|
||||||
env
|
|
||||||
);
|
|
||||||
lastOutput = JSON.stringify(result);
|
|
||||||
if (result.hasLiveSync) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
lastOutput = error instanceof Error ? error.message : String(error);
|
|
||||||
}
|
|
||||||
await new Promise((resolve) => setTimeout(resolve, 500));
|
|
||||||
}
|
|
||||||
throw new Error(`Timed out waiting for Obsidian plug-in catalogue through CLI.\n${lastOutput}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function enableCommunityPlugins(cliBinary: string, env: NodeJS.ProcessEnv): Promise<void> {
|
|
||||||
const result = await runObsidianCli(cliBinary, ["eval", "code=(async()=>app.plugins.setEnable(true))()"], env);
|
|
||||||
if (result.code !== 0 || result.stdout.includes("Error:")) {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
`Failed to enable Obsidian community plug-ins through CLI. code=${result.code}, signal=${result.signal}`,
|
|
||||||
result.stdout ? `stdout:\n${result.stdout}` : undefined,
|
|
||||||
result.stderr ? `stderr:\n${result.stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function reloadLiveSyncPlugin(cliBinary: string, env: NodeJS.ProcessEnv): Promise<void> {
|
|
||||||
const reload = await runObsidianCli(cliBinary, ["plugin:reload", "id=obsidian-livesync"], env);
|
|
||||||
if (reload.code !== 0 || !reload.stdout.includes("Reloaded: obsidian-livesync")) {
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
`Failed to reload Self-hosted LiveSync through Obsidian CLI. code=${reload.code}, signal=${reload.signal}`,
|
|
||||||
reload.stdout ? `stdout:\n${reload.stdout}` : undefined,
|
|
||||||
reload.stderr ? `stderr:\n${reload.stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function startObsidianLiveSyncSession(
|
export async function startObsidianLiveSyncSession(
|
||||||
options: StartObsidianLiveSyncSessionOptions
|
options: StartObsidianLiveSyncSessionOptions
|
||||||
): Promise<ObsidianLiveSyncSession> {
|
): Promise<ObsidianLiveSyncSession> {
|
||||||
const install = await installBuiltPlugin(options.vault.path);
|
return await startObsidianPluginSession({
|
||||||
const remoteDebuggingPort = obsidianRemoteDebuggingPort();
|
|
||||||
const app = await launchObsidian({
|
|
||||||
binary: options.binary,
|
binary: options.binary,
|
||||||
vaultPath: options.vault.path,
|
cliBinary: options.cliBinary,
|
||||||
homePath: options.vault.homePath,
|
vault: options.vault,
|
||||||
xdgConfigPath: options.vault.xdgConfigPath,
|
pluginId: "obsidian-livesync",
|
||||||
xdgCachePath: options.vault.xdgCachePath,
|
artifactRoot: process.cwd(),
|
||||||
xdgDataPath: options.vault.xdgDataPath,
|
|
||||||
userDataPath: options.vault.userDataPath,
|
|
||||||
startupGraceMs: options.startupGraceMs,
|
startupGraceMs: options.startupGraceMs,
|
||||||
});
|
});
|
||||||
const cliEnv = {
|
|
||||||
...process.env,
|
|
||||||
HOME: options.vault.homePath,
|
|
||||||
XDG_CONFIG_HOME: options.vault.xdgConfigPath,
|
|
||||||
XDG_CACHE_HOME: options.vault.xdgCachePath,
|
|
||||||
XDG_DATA_HOME: options.vault.xdgDataPath,
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
await preseedTrustedVaultState(remoteDebuggingPort, options.vault.id);
|
|
||||||
await openVaultWithObsidianCli(options.cliBinary, options.vault.path, cliEnv);
|
|
||||||
await trustVaultIfPrompted(remoteDebuggingPort);
|
|
||||||
await waitForPluginCatalogue(options.cliBinary, cliEnv);
|
|
||||||
await enableCommunityPlugins(options.cliBinary, cliEnv);
|
|
||||||
await reloadLiveSyncPlugin(options.cliBinary, cliEnv);
|
|
||||||
const readiness = await waitForPluginReady(options.cliBinary, cliEnv);
|
|
||||||
return { app, cliEnv, install, readiness };
|
|
||||||
} catch (error) {
|
|
||||||
const output = app.output();
|
|
||||||
await app.stop();
|
|
||||||
throw new Error(
|
|
||||||
[
|
|
||||||
error instanceof Error ? error.message : String(error),
|
|
||||||
output.stdout ? `Obsidian stdout:\n${output.stdout}` : undefined,
|
|
||||||
output.stderr ? `Obsidian stderr:\n${output.stderr}` : undefined,
|
|
||||||
]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join("\n")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,74 +1,11 @@
|
|||||||
import { chromium, type Page } from "playwright";
|
import { withObsidianPage } from "@vrtmrz/obsidian-test-session";
|
||||||
|
|
||||||
export function obsidianRemoteDebuggingPort(): number {
|
export {
|
||||||
const port = Number(process.env.E2E_OBSIDIAN_REMOTE_DEBUGGING_PORT ?? 9222);
|
obsidianRemoteDebuggingPort,
|
||||||
process.env.E2E_OBSIDIAN_REMOTE_DEBUGGING_PORT = String(port);
|
preseedTrustedVaultState,
|
||||||
return port;
|
trustVaultIfPrompted,
|
||||||
}
|
withObsidianPage,
|
||||||
|
} from "@vrtmrz/obsidian-test-session";
|
||||||
async function waitForCdp(port: number): Promise<void> {
|
|
||||||
const deadline = Date.now() + Number(process.env.E2E_OBSIDIAN_CDP_TIMEOUT_MS ?? 30000);
|
|
||||||
while (Date.now() < deadline) {
|
|
||||||
try {
|
|
||||||
const response = await fetch(`http://127.0.0.1:${port}/json/version`);
|
|
||||||
if (response.ok) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// Keep polling until Obsidian exposes the debugging endpoint.
|
|
||||||
}
|
|
||||||
await new Promise((resolve) => setTimeout(resolve, 500));
|
|
||||||
}
|
|
||||||
throw new Error(`Timed out waiting for Obsidian DevTools endpoint on port ${port}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function withObsidianPage<T>(port: number, operation: (page: Page) => Promise<T>): Promise<T> {
|
|
||||||
await waitForCdp(port);
|
|
||||||
const browser = await chromium.connectOverCDP(`http://127.0.0.1:${port}`);
|
|
||||||
try {
|
|
||||||
const context = browser.contexts()[0];
|
|
||||||
const page = context.pages()[0] ?? (await context.waitForEvent("page", { timeout: 10000 }));
|
|
||||||
return await operation(page);
|
|
||||||
} finally {
|
|
||||||
await browser.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function preseedTrustedVaultState(port: number, vaultId: string): Promise<void> {
|
|
||||||
await withObsidianPage(port, async (page) => {
|
|
||||||
await page.evaluate((id) => {
|
|
||||||
localStorage.setItem(`enable-plugin-${id}`, "true");
|
|
||||||
}, vaultId);
|
|
||||||
await page.reload({ waitUntil: "domcontentloaded", timeout: 10000 }).catch(() => undefined);
|
|
||||||
await page.waitForTimeout(1000);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function trustVaultIfPrompted(port: number): Promise<void> {
|
|
||||||
await withObsidianPage(port, async (page) => {
|
|
||||||
const deadline = Date.now() + Number(process.env.E2E_OBSIDIAN_TRUST_PROMPT_TIMEOUT_MS ?? 30000);
|
|
||||||
while (Date.now() < deadline) {
|
|
||||||
const yesButton = page.getByRole("button", { name: "Yes" });
|
|
||||||
if (await yesButton.isVisible({ timeout: 1000 }).catch(() => false)) {
|
|
||||||
await yesButton.click();
|
|
||||||
await page.waitForTimeout(500);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const trustButton = page.getByText("Trust author and enable plugins");
|
|
||||||
if (await trustButton.isVisible({ timeout: 1000 }).catch(() => false)) {
|
|
||||||
await trustButton.click();
|
|
||||||
await page.waitForTimeout(500);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const workspace = page.locator(".workspace");
|
|
||||||
if (await workspace.isVisible({ timeout: 1000 }).catch(() => false)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function clickJsonResolveOption(port: number, mode: "AB" | "BA"): Promise<void> {
|
export async function clickJsonResolveOption(port: number, mode: "AB" | "BA"): Promise<void> {
|
||||||
await withObsidianPage(port, async (page) => {
|
await withObsidianPage(port, async (page) => {
|
||||||
|
|||||||
@@ -1,94 +1,14 @@
|
|||||||
import { mkdtemp, mkdir, rm, writeFile } from "node:fs/promises";
|
import {
|
||||||
import { join } from "node:path";
|
createTemporaryVault as createGenericTemporaryVault,
|
||||||
import { tmpdir } from "node:os";
|
type TemporaryVault,
|
||||||
|
} from "@vrtmrz/obsidian-test-session";
|
||||||
|
|
||||||
export type TemporaryVault = {
|
export type { TemporaryVault };
|
||||||
path: string;
|
|
||||||
name: string;
|
|
||||||
id: string;
|
|
||||||
homePath: string;
|
|
||||||
xdgConfigPath: string;
|
|
||||||
xdgCachePath: string;
|
|
||||||
xdgDataPath: string;
|
|
||||||
userDataPath: string;
|
|
||||||
dispose: () => Promise<void>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function createTemporaryVault(prefix = "obsidian-livesync-e2e-"): Promise<TemporaryVault> {
|
export async function createTemporaryVault(prefix = "obsidian-livesync-e2e-"): Promise<TemporaryVault> {
|
||||||
const vaultPath = await mkdtemp(join(tmpdir(), prefix));
|
return await createGenericTemporaryVault({
|
||||||
const statePath = await mkdtemp(join(tmpdir(), `${prefix}state-`));
|
prefix,
|
||||||
const name = vaultPath.split(/[\\/]/).pop() ?? "obsidian-livesync-e2e";
|
pluginIds: ["obsidian-livesync"],
|
||||||
await mkdir(join(vaultPath, ".obsidian"), { recursive: true });
|
idPrefix: "livesync-e2e",
|
||||||
const homePath = join(statePath, "home");
|
});
|
||||||
const xdgConfigPath = join(statePath, "xdg-config");
|
|
||||||
const xdgCachePath = join(statePath, "xdg-cache");
|
|
||||||
const xdgDataPath = join(statePath, "xdg-data");
|
|
||||||
const userDataPath = join(statePath, "user-data");
|
|
||||||
const id = `livesync-e2e-${Date.now()}`;
|
|
||||||
await mkdir(homePath, { recursive: true });
|
|
||||||
await mkdir(xdgConfigPath, { recursive: true });
|
|
||||||
await mkdir(xdgCachePath, { recursive: true });
|
|
||||||
await mkdir(xdgDataPath, { recursive: true });
|
|
||||||
await mkdir(userDataPath, { recursive: true });
|
|
||||||
await writeFile(
|
|
||||||
join(vaultPath, ".obsidian", "app.json"),
|
|
||||||
JSON.stringify({ legacyEditor: false, safeMode: false }, null, 4)
|
|
||||||
);
|
|
||||||
await writeFile(
|
|
||||||
join(vaultPath, ".obsidian", "community-plugins.json"),
|
|
||||||
JSON.stringify(["obsidian-livesync"], null, 4)
|
|
||||||
);
|
|
||||||
await writeObsidianVaultRegistry(id, vaultPath, name, homePath, xdgConfigPath, userDataPath);
|
|
||||||
|
|
||||||
return {
|
|
||||||
path: vaultPath,
|
|
||||||
name,
|
|
||||||
id,
|
|
||||||
homePath,
|
|
||||||
xdgConfigPath,
|
|
||||||
xdgCachePath,
|
|
||||||
xdgDataPath,
|
|
||||||
userDataPath,
|
|
||||||
dispose: async () => {
|
|
||||||
if (process.env.E2E_OBSIDIAN_KEEP_VAULT === "true") {
|
|
||||||
console.log(`Keeping temporary vault: ${vaultPath}`);
|
|
||||||
console.log(`Keeping temporary Obsidian state: ${statePath}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await Promise.all([
|
|
||||||
rm(vaultPath, { recursive: true, force: true, maxRetries: 5, retryDelay: 200 }),
|
|
||||||
rm(statePath, { recursive: true, force: true, maxRetries: 5, retryDelay: 200 }),
|
|
||||||
]);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async function writeObsidianVaultRegistry(
|
|
||||||
vaultId: string,
|
|
||||||
vaultPath: string,
|
|
||||||
vaultName: string,
|
|
||||||
homePath: string,
|
|
||||||
xdgConfigPath: string,
|
|
||||||
userDataPath: string
|
|
||||||
): Promise<void> {
|
|
||||||
const vaultRecord = {
|
|
||||||
path: vaultPath,
|
|
||||||
ts: Date.now(),
|
|
||||||
open: true,
|
|
||||||
name: vaultName,
|
|
||||||
};
|
|
||||||
const registry = {
|
|
||||||
cli: true,
|
|
||||||
vaults: {
|
|
||||||
[vaultId]: vaultRecord,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
const registryText = JSON.stringify(registry, null, 4);
|
|
||||||
for (const configRoot of [join(homePath, ".config"), xdgConfigPath]) {
|
|
||||||
const obsidianConfigDir = join(configRoot, "obsidian");
|
|
||||||
await mkdir(obsidianConfigDir, { recursive: true });
|
|
||||||
await writeFile(join(obsidianConfigDir, "obsidian.json"), registryText);
|
|
||||||
}
|
|
||||||
await writeFile(join(userDataPath, "obsidian.json"), registryText);
|
|
||||||
await writeFile(join(userDataPath, `${vaultId}.json`), JSON.stringify(vaultRecord, null, 4));
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user