5aef047d87
/api/v1/query took its tenant scope from the request body, so a public access token minted for one environment could read the whole organization by asking for organization scope. The credential is now the ceiling and a wider ask is refused; secret keys and the membership-authorized Query page are unchanged.
49 lines
2.0 KiB
TypeScript
49 lines
2.0 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { queryScopeCeilingFor, resolveQueryScope } from "~/v3/queryScope";
|
|
|
|
// The public query API takes `scope` in the request body and executeQuery isolates
|
|
// on it, so without this the body — not the credential — decided how much data a
|
|
// caller could read.
|
|
describe("the query scope ceiling", () => {
|
|
it("caps a public access token at its own environment", () => {
|
|
expect(queryScopeCeilingFor("PUBLIC_JWT")).toBe("environment");
|
|
});
|
|
|
|
it("leaves every other bearer credential uncapped", () => {
|
|
expect(queryScopeCeilingFor("PRIVATE")).toBe("unbounded");
|
|
});
|
|
});
|
|
|
|
describe("resolveQueryScope", () => {
|
|
// An environment token asking to read the whole organization is refused, not
|
|
// quietly narrowed: an org-shaped question answered with one environment's
|
|
// numbers looks like an answer and isn't.
|
|
it("rejects an organization-scoped body from an environment token", () => {
|
|
const decision = resolveQueryScope({ ceiling: "environment", requested: "organization" });
|
|
expect(decision.ok).toBe(false);
|
|
expect(decision.ok === false && decision.error).toContain("scoped to one environment");
|
|
});
|
|
|
|
it("rejects a project-scoped body from an environment token", () => {
|
|
expect(resolveQueryScope({ ceiling: "environment", requested: "project" }).ok).toBe(false);
|
|
});
|
|
|
|
// The route's body schema defaults `scope` to "environment", so "no scope" and
|
|
// the token's ceiling are the same request.
|
|
it("allows an environment token its own environment", () => {
|
|
expect(resolveQueryScope({ ceiling: "environment", requested: "environment" })).toEqual({
|
|
ok: true,
|
|
scope: "environment",
|
|
});
|
|
});
|
|
|
|
// A secret key, a PAT-exchanged session or the Query page still query at org
|
|
// scope: they are not environment-bound credentials.
|
|
it("leaves an uncapped caller's organization scope alone", () => {
|
|
expect(resolveQueryScope({ ceiling: "unbounded", requested: "organization" })).toEqual({
|
|
ok: true,
|
|
scope: "organization",
|
|
});
|
|
});
|
|
});
|