File size: 5,473 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | import { describe, expect, it } from "vitest";
import type { OpenClawConfig } from "../config/config.js";
import { evaluateGatewayAuthSurfaceStates } from "./runtime-gateway-auth-surfaces.js";
const EMPTY_ENV = {} as NodeJS.ProcessEnv;
function envRef(id: string) {
return { source: "env", provider: "default", id } as const;
}
function evaluate(config: OpenClawConfig, env: NodeJS.ProcessEnv = EMPTY_ENV) {
return evaluateGatewayAuthSurfaceStates({
config,
env,
});
}
describe("evaluateGatewayAuthSurfaceStates", () => {
it("marks gateway.auth.token active when token mode is explicit", () => {
const states = evaluate({
gateway: {
auth: {
mode: "token",
token: envRef("GW_AUTH_TOKEN"),
},
},
} as OpenClawConfig);
expect(states["gateway.auth.token"]).toMatchObject({
hasSecretRef: true,
active: true,
reason: 'gateway.auth.mode is "token".',
});
});
it("marks gateway.auth.token inactive when env token is configured", () => {
const states = evaluate(
{
gateway: {
auth: {
mode: "token",
token: envRef("GW_AUTH_TOKEN"),
},
},
} as OpenClawConfig,
{ OPENCLAW_GATEWAY_TOKEN: "env-token" } as NodeJS.ProcessEnv,
);
expect(states["gateway.auth.token"]).toMatchObject({
hasSecretRef: true,
active: false,
reason: "gateway token env var is configured.",
});
});
it("marks gateway.auth.token inactive when password mode is explicit", () => {
const states = evaluate({
gateway: {
auth: {
mode: "password",
token: envRef("GW_AUTH_TOKEN"),
},
},
} as OpenClawConfig);
expect(states["gateway.auth.token"]).toMatchObject({
hasSecretRef: true,
active: false,
reason: 'gateway.auth.mode is "password".',
});
});
it("marks gateway.auth.password active when password mode is explicit", () => {
const states = evaluate({
gateway: {
auth: {
mode: "password",
password: envRef("GW_AUTH_PASSWORD"),
},
},
} as OpenClawConfig);
expect(states["gateway.auth.password"]).toMatchObject({
hasSecretRef: true,
active: true,
reason: 'gateway.auth.mode is "password".',
});
});
it("marks gateway.auth.password inactive when env token is configured", () => {
const states = evaluate(
{
gateway: {
auth: {
password: envRef("GW_AUTH_PASSWORD"),
},
},
} as OpenClawConfig,
{ OPENCLAW_GATEWAY_TOKEN: "env-token" } as NodeJS.ProcessEnv,
);
expect(states["gateway.auth.password"]).toMatchObject({
hasSecretRef: true,
active: false,
reason: "gateway token env var is configured.",
});
});
it("marks gateway.remote.token active when remote token fallback is active", () => {
const states = evaluate({
gateway: {
mode: "local",
remote: {
token: envRef("GW_REMOTE_TOKEN"),
},
},
} as OpenClawConfig);
expect(states["gateway.remote.token"]).toMatchObject({
hasSecretRef: true,
active: true,
reason: "local token auth can win and no env/auth token is configured.",
});
});
it("marks gateway.remote.token inactive when token auth cannot win", () => {
const states = evaluate({
gateway: {
auth: {
mode: "password",
},
remote: {
token: envRef("GW_REMOTE_TOKEN"),
},
},
} as OpenClawConfig);
expect(states["gateway.remote.token"]).toMatchObject({
hasSecretRef: true,
active: false,
reason: 'token auth cannot win with gateway.auth.mode="password".',
});
});
it("marks gateway.remote.token inactive when local token SecretRef is configured", () => {
const states = evaluate({
gateway: {
mode: "local",
auth: {
mode: "token",
token: envRef("GW_AUTH_TOKEN"),
},
remote: {
token: envRef("GW_REMOTE_TOKEN"),
},
},
} as OpenClawConfig);
expect(states["gateway.remote.token"]).toMatchObject({
hasSecretRef: true,
active: false,
reason: "gateway.auth.token is configured.",
});
});
it("marks gateway.remote.password active when remote url is configured", () => {
const states = evaluate({
gateway: {
remote: {
url: "wss://gateway.example.com",
password: envRef("GW_REMOTE_PASSWORD"),
},
},
} as OpenClawConfig);
expect(states["gateway.remote.password"].hasSecretRef).toBe(true);
expect(states["gateway.remote.password"].active).toBe(true);
expect(states["gateway.remote.password"].reason).toContain("remote surface is active:");
expect(states["gateway.remote.password"].reason).toContain("gateway.remote.url is configured");
});
it("marks gateway.remote.password inactive when password auth cannot win", () => {
const states = evaluate({
gateway: {
auth: {
mode: "token",
},
remote: {
password: envRef("GW_REMOTE_PASSWORD"),
},
},
} as OpenClawConfig);
expect(states["gateway.remote.password"]).toMatchObject({
hasSecretRef: true,
active: false,
reason: 'password auth cannot win with gateway.auth.mode="token".',
});
});
});
|