237 lines
7.6 KiB
TypeScript
237 lines
7.6 KiB
TypeScript
import assert from "node:assert/strict";
|
|
import { describe, it } from "node:test";
|
|
|
|
import { authSessionCacheKvKey, authTokenHash } from "../src/auth.js";
|
|
import { handleRequest } from "../src/index.js";
|
|
import {
|
|
ACCESS_TOKEN,
|
|
PUBLIC_KEY,
|
|
sessionDocument,
|
|
testD1Database,
|
|
testEnv,
|
|
} from "./devices_test_support.js";
|
|
|
|
const DEVICE_REVOCATION_IDEMPOTENCY_KEY = "device-revocation-0001";
|
|
const DEVICE_REVOCATION_EVENT_ID = `device-revoke:user-01:${DEVICE_REVOCATION_IDEMPOTENCY_KEY}`;
|
|
|
|
describe("device revocation routes", () => {
|
|
it("revokes a device from an approved current device", async () => {
|
|
const tokenHash = await authTokenHash(ACCESS_TOKEN);
|
|
const d1 = testD1Database({
|
|
firstRows: [
|
|
deviceRow({ device_id: "device-01", approval_status: "approved" }),
|
|
null,
|
|
deviceRow({ device_id: "device-02", approval_status: "approved" }),
|
|
deviceRow({
|
|
device_id: "device-02",
|
|
approval_status: "revoked",
|
|
revoked_at: 1_780_000_400,
|
|
}),
|
|
],
|
|
});
|
|
|
|
const response = await handleRequest(
|
|
new Request("https://elydora.test/api/devices/revoke", {
|
|
method: "POST",
|
|
headers: {
|
|
authorization: `Bearer ${ACCESS_TOKEN}`,
|
|
"content-type": "application/json",
|
|
},
|
|
body: JSON.stringify(deviceRevocationBody()),
|
|
}),
|
|
testEnv({
|
|
d1,
|
|
kvEntries: [[authSessionCacheKvKey("local", tokenHash), sessionDocument("device-01")]],
|
|
}),
|
|
);
|
|
|
|
assert.equal(response.status, 200);
|
|
assert.equal(response.headers.get("cache-control"), "no-store");
|
|
assert.deepEqual(await response.json(), {
|
|
version: 1,
|
|
user_id: "user-01",
|
|
revoked_by_device_id: "device-01",
|
|
revoked_at: 1_780_000_400,
|
|
device: {
|
|
device_id: "device-02",
|
|
public_key: PUBLIC_KEY,
|
|
device_name: "MacBook Pro",
|
|
platform: "macOS",
|
|
approval_status: "revoked",
|
|
created_at: 1_780_000_000,
|
|
approved_at: 1_780_000_010,
|
|
last_active_at: 1_780_000_020,
|
|
revoked_at: 1_780_000_400,
|
|
current: false,
|
|
},
|
|
});
|
|
assert.equal(d1.batches[0], 2);
|
|
assert.ok(d1.queries[0]?.includes("approval_status = 'approved'"));
|
|
assert.ok(d1.queries[1]?.includes("FROM audit_events"));
|
|
assert.ok(d1.queries[3]?.includes("INSERT INTO audit_events"));
|
|
assert.ok(d1.queries[4]?.includes("UPDATE user_devices"));
|
|
assert.deepEqual(d1.binds[0], ["user-01", "device-01"]);
|
|
assert.deepEqual(d1.binds[1], ["user-01", DEVICE_REVOCATION_EVENT_ID]);
|
|
assert.deepEqual(d1.binds[2], ["user-01", "device-02"]);
|
|
assert.deepEqual(d1.binds[3]?.slice(0, 4), [
|
|
DEVICE_REVOCATION_EVENT_ID,
|
|
"user-01",
|
|
"device-01",
|
|
"device-02",
|
|
]);
|
|
assert.deepEqual(d1.binds[5], ["user-01", "device-02"]);
|
|
});
|
|
|
|
it("returns the existing revocation for an idempotent replay", async () => {
|
|
const tokenHash = await authTokenHash(ACCESS_TOKEN);
|
|
const d1 = testD1Database({
|
|
firstRows: [
|
|
deviceRow({ device_id: "device-01", approval_status: "approved" }),
|
|
{
|
|
actor_device_id: "device-01",
|
|
subject_id: "device-02",
|
|
outcome: "success",
|
|
created_at: 1_780_000_400,
|
|
},
|
|
deviceRow({
|
|
device_id: "device-02",
|
|
approval_status: "revoked",
|
|
revoked_at: 1_780_000_400,
|
|
}),
|
|
],
|
|
});
|
|
|
|
const response = await handleRequest(
|
|
new Request("https://elydora.test/api/devices/revoke", {
|
|
method: "POST",
|
|
headers: {
|
|
authorization: `Bearer ${ACCESS_TOKEN}`,
|
|
"content-type": "application/json",
|
|
},
|
|
body: JSON.stringify(deviceRevocationBody()),
|
|
}),
|
|
testEnv({
|
|
d1,
|
|
kvEntries: [[authSessionCacheKvKey("local", tokenHash), sessionDocument("device-01")]],
|
|
}),
|
|
);
|
|
|
|
assert.equal(response.status, 200);
|
|
const body = (await response.json()) as { revoked_at: number };
|
|
assert.equal(body.revoked_at, 1_780_000_400);
|
|
assert.deepEqual(d1.batches, []);
|
|
assert.deepEqual(d1.binds, [
|
|
["user-01", "device-01"],
|
|
["user-01", DEVICE_REVOCATION_EVENT_ID],
|
|
["user-01", "device-02"],
|
|
]);
|
|
});
|
|
|
|
it("rejects revocation from a current device that is not approved", async () => {
|
|
const tokenHash = await authTokenHash(ACCESS_TOKEN);
|
|
const d1 = testD1Database({ firstRows: [null] });
|
|
const response = await handleRequest(
|
|
new Request("https://elydora.test/api/devices/revoke", {
|
|
method: "POST",
|
|
headers: {
|
|
authorization: `Bearer ${ACCESS_TOKEN}`,
|
|
"content-type": "application/json",
|
|
},
|
|
body: JSON.stringify(deviceRevocationBody()),
|
|
}),
|
|
testEnv({
|
|
d1,
|
|
kvEntries: [[authSessionCacheKvKey("local", tokenHash), sessionDocument("device-01")]],
|
|
}),
|
|
);
|
|
|
|
assert.equal(response.status, 403);
|
|
assert.deepEqual(await response.json(), { error: "device_revocation_forbidden" });
|
|
assert.deepEqual(d1.batches, []);
|
|
});
|
|
|
|
it("rejects self revocation before D1 writes", async () => {
|
|
const tokenHash = await authTokenHash(ACCESS_TOKEN);
|
|
const d1 = testD1Database([]);
|
|
const response = await handleRequest(
|
|
new Request("https://elydora.test/api/devices/revoke", {
|
|
method: "POST",
|
|
headers: {
|
|
authorization: `Bearer ${ACCESS_TOKEN}`,
|
|
"content-type": "application/json",
|
|
},
|
|
body: JSON.stringify({ ...deviceRevocationBody(), device_id: "device-01" }),
|
|
}),
|
|
testEnv({
|
|
d1,
|
|
kvEntries: [[authSessionCacheKvKey("local", tokenHash), sessionDocument("device-01")]],
|
|
}),
|
|
);
|
|
|
|
assert.equal(response.status, 403);
|
|
assert.deepEqual(d1.queries, []);
|
|
});
|
|
|
|
it("rejects invalid revocation payloads before D1 writes", async () => {
|
|
const tokenHash = await authTokenHash(ACCESS_TOKEN);
|
|
const d1 = testD1Database([]);
|
|
const response = await handleRequest(
|
|
new Request("https://elydora.test/api/devices/revoke", {
|
|
method: "POST",
|
|
headers: {
|
|
authorization: `Bearer ${ACCESS_TOKEN}`,
|
|
"content-type": "application/json",
|
|
},
|
|
body: JSON.stringify({ ...deviceRevocationBody(), idempotency_key: "short" }),
|
|
}),
|
|
testEnv({
|
|
d1,
|
|
kvEntries: [[authSessionCacheKvKey("local", tokenHash), sessionDocument("device-01")]],
|
|
}),
|
|
);
|
|
|
|
assert.equal(response.status, 400);
|
|
assert.deepEqual(await response.json(), { error: "invalid_device_revocation" });
|
|
assert.deepEqual(d1.queries, []);
|
|
});
|
|
|
|
it("rejects unauthenticated device revocation before D1 writes", async () => {
|
|
const d1 = testD1Database([]);
|
|
const response = await handleRequest(
|
|
new Request("https://elydora.test/api/devices/revoke", {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify(deviceRevocationBody()),
|
|
}),
|
|
testEnv({ d1 }),
|
|
);
|
|
|
|
assert.equal(response.status, 401);
|
|
assert.deepEqual(await response.json(), { error: "authorization_missing" });
|
|
assert.deepEqual(d1.queries, []);
|
|
});
|
|
});
|
|
|
|
function deviceRevocationBody(): Record<string, unknown> {
|
|
return {
|
|
version: 1,
|
|
device_id: "device-02",
|
|
idempotency_key: DEVICE_REVOCATION_IDEMPOTENCY_KEY,
|
|
};
|
|
}
|
|
|
|
function deviceRow(overrides: Record<string, unknown>): Record<string, unknown> {
|
|
return {
|
|
device_id: "device-01",
|
|
public_key: PUBLIC_KEY,
|
|
device_name: "MacBook Pro",
|
|
platform: "macOS",
|
|
approval_status: "approved",
|
|
created_at: 1_780_000_000,
|
|
approved_at: 1_780_000_010,
|
|
last_active_at: 1_780_000_020,
|
|
revoked_at: null,
|
|
...overrides,
|
|
};
|
|
}
|