summaryrefslogtreecommitdiffhomepage
path: root/src/app/uuid.test.ts
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-07 00:54:08 +0900
committerAdam Malczewski <[email protected]>2026-06-07 00:54:08 +0900
commit7889918d23ffa428cf266e52d42b9683f16160fa (patch)
tree7f403136663562dd278b6c680449ec29af612d06 /src/app/uuid.test.ts
parent8015ed30a9904a89efe083067f505eb11fa46034 (diff)
downloaddispatch-web-7889918d23ffa428cf266e52d42b9683f16160fa.tar.gz
dispatch-web-7889918d23ffa428cf266e52d42b9683f16160fa.zip
fix: blank page on non-localhost HTTP (secure-context crypto.randomUUID)
crypto.randomUUID() is secure-context-only — undefined on plain-HTTP non-localhost origins (e.g. http://arch-razer:24204), so createAppStore threw during mount and nothing rendered. Add src/app/uuid.ts randomId(): prefer crypto.randomUUID when present, else build a v4 from crypto.getRandomValues (available in insecure contexts), else Math.random fallback. Use it for the conversation id. Verified: svelte-check 0/0, vitest 221, build ok.
Diffstat (limited to 'src/app/uuid.test.ts')
-rw-r--r--src/app/uuid.test.ts31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/app/uuid.test.ts b/src/app/uuid.test.ts
new file mode 100644
index 0000000..bd8e306
--- /dev/null
+++ b/src/app/uuid.test.ts
@@ -0,0 +1,31 @@
+import { describe, expect, it } from "vitest";
+import { randomId } from "./uuid";
+
+const V4_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
+
+describe("randomId", () => {
+ it("returns a v4-shaped uuid", () => {
+ const id = randomId();
+ expect(id).toMatch(V4_RE);
+ });
+
+ it("returns distinct values across calls", () => {
+ const ids = new Set<string>();
+ for (let i = 0; i < 200; i++) {
+ ids.add(randomId());
+ }
+ expect(ids.size).toBe(200);
+ });
+
+ it("works without crypto.randomUUID (getRandomValues branch)", () => {
+ const origRandomUUID = crypto.randomUUID;
+ try {
+ // Remove randomUUID so the getRandomValues branch is taken
+ delete (crypto as { randomUUID?: () => string }).randomUUID;
+ const id = randomId();
+ expect(id).toMatch(V4_RE);
+ } finally {
+ crypto.randomUUID = origRandomUUID;
+ }
+ });
+});