Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
144 lines
4.1 KiB
TypeScript
144 lines
4.1 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
import {
|
|
LOCAL_STORAGE_ADAPTER_CHANGED_EVENT,
|
|
localStorageAdapter,
|
|
} from "./localStorageAdapter.ts";
|
|
|
|
class TestCustomEvent<T = unknown> extends Event implements CustomEvent<T> {
|
|
readonly detail: T;
|
|
|
|
constructor(type: string, init?: CustomEventInit<T>) {
|
|
super(type);
|
|
this.detail = init?.detail as T;
|
|
}
|
|
|
|
initCustomEvent(): void {
|
|
// Deprecated browser API required by the CustomEvent interface.
|
|
}
|
|
}
|
|
|
|
const waitForAdapterEvents = () => new Promise((resolve) => {
|
|
setTimeout(resolve, 5);
|
|
});
|
|
|
|
function installLocalStorageEnvironment() {
|
|
const previousLocalStorage = Object.getOwnPropertyDescriptor(globalThis, "localStorage");
|
|
const previousCustomEvent = Object.getOwnPropertyDescriptor(globalThis, "CustomEvent");
|
|
const previousDispatchEvent = Object.getOwnPropertyDescriptor(globalThis, "dispatchEvent");
|
|
const backing = new Map<string, string>();
|
|
const events: string[] = [];
|
|
let setCalls = 0;
|
|
let removeCalls = 0;
|
|
|
|
const storage: Storage = {
|
|
get length() {
|
|
return backing.size;
|
|
},
|
|
clear() {
|
|
backing.clear();
|
|
},
|
|
getItem(key: string) {
|
|
return backing.get(key) ?? null;
|
|
},
|
|
key(index: number) {
|
|
return Array.from(backing.keys())[index] ?? null;
|
|
},
|
|
removeItem(key: string) {
|
|
removeCalls += 1;
|
|
backing.delete(key);
|
|
},
|
|
setItem(key: string, value: string) {
|
|
setCalls += 1;
|
|
backing.set(key, value);
|
|
},
|
|
};
|
|
|
|
Object.defineProperty(globalThis, "localStorage", {
|
|
value: storage,
|
|
configurable: true,
|
|
});
|
|
Object.defineProperty(globalThis, "CustomEvent", {
|
|
value: TestCustomEvent,
|
|
configurable: true,
|
|
});
|
|
Object.defineProperty(globalThis, "dispatchEvent", {
|
|
value: (event: Event): boolean => {
|
|
if (event.type === LOCAL_STORAGE_ADAPTER_CHANGED_EVENT) {
|
|
events.push((event as CustomEvent<{ key: string }>).detail.key);
|
|
}
|
|
return true;
|
|
},
|
|
configurable: true,
|
|
});
|
|
|
|
const restoreDescriptor = (property: "localStorage" | "CustomEvent" | "dispatchEvent", descriptor?: PropertyDescriptor) => {
|
|
if (descriptor) {
|
|
Object.defineProperty(globalThis, property, descriptor);
|
|
return;
|
|
}
|
|
Reflect.deleteProperty(globalThis, property);
|
|
};
|
|
|
|
return {
|
|
events,
|
|
get setCalls() {
|
|
return setCalls;
|
|
},
|
|
get removeCalls() {
|
|
return removeCalls;
|
|
},
|
|
restore() {
|
|
restoreDescriptor("localStorage", previousLocalStorage);
|
|
restoreDescriptor("CustomEvent", previousCustomEvent);
|
|
restoreDescriptor("dispatchEvent", previousDispatchEvent);
|
|
},
|
|
};
|
|
}
|
|
|
|
test("localStorageAdapter skips unchanged writes and notifications", async (t) => {
|
|
const env = installLocalStorageEnvironment();
|
|
t.after(() => env.restore());
|
|
|
|
assert.equal(localStorageAdapter.writeString("netcatty:test", "one"), true);
|
|
await waitForAdapterEvents();
|
|
|
|
assert.deepEqual(env.events, ["netcatty:test"]);
|
|
assert.equal(env.setCalls, 1);
|
|
|
|
assert.equal(localStorageAdapter.writeString("netcatty:test", "one"), true);
|
|
await waitForAdapterEvents();
|
|
|
|
assert.deepEqual(env.events, ["netcatty:test"]);
|
|
assert.equal(env.setCalls, 1);
|
|
|
|
assert.equal(localStorageAdapter.write("netcatty:json", { ok: true }), true);
|
|
await waitForAdapterEvents();
|
|
|
|
assert.equal(localStorageAdapter.write("netcatty:json", { ok: true }), true);
|
|
await waitForAdapterEvents();
|
|
|
|
assert.deepEqual(env.events, ["netcatty:test", "netcatty:json"]);
|
|
assert.equal(env.setCalls, 2);
|
|
});
|
|
|
|
test("localStorageAdapter skips missing removes and notifications", async (t) => {
|
|
const env = installLocalStorageEnvironment();
|
|
t.after(() => env.restore());
|
|
|
|
localStorageAdapter.remove("netcatty:missing");
|
|
await waitForAdapterEvents();
|
|
|
|
assert.deepEqual(env.events, []);
|
|
assert.equal(env.removeCalls, 0);
|
|
|
|
assert.equal(localStorageAdapter.writeString("netcatty:test", "one"), true);
|
|
await waitForAdapterEvents();
|
|
localStorageAdapter.remove("netcatty:test");
|
|
await waitForAdapterEvents();
|
|
|
|
assert.deepEqual(env.events, ["netcatty:test", "netcatty:test"]);
|
|
assert.equal(env.removeCalls, 1);
|
|
});
|