惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
The Cloudflare Blog
IT之家
IT之家
雷峰网
雷峰网
小众软件
小众软件
博客园 - 叶小钗
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 【当耐特】
V
V2EX
博客园_首页
T
Tailwind CSS Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(onboard): support non-interactive GitHub Copilot tok...
BunsDev · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1,4 +1,11 @@

1-

import { describe, expect, it, vi } from "vitest";

1+

import fs from "node:fs/promises";

2+

import os from "node:os";

3+

import path from "node:path";

4+

import { afterEach, describe, expect, it, vi } from "vitest";

5+

import {

6+

clearRuntimeAuthProfileStoreSnapshots,

7+

ensureAuthProfileStore,

8+

} from "../../src/agents/auth-profiles.js";

29

import { createTestPluginApi } from "../../test/helpers/plugins/plugin-api.js";

310411

const resolveCopilotApiTokenMock = vi.hoisted(() => vi.fn());

@@ -12,6 +19,19 @@ vi.mock("./register.runtime.js", () => ({

12191320

import plugin from "./index.js";

142122+

const tempDirs: string[] = [];

23+24+

afterEach(async () => {

25+

clearRuntimeAuthProfileStoreSnapshots();

26+

await Promise.all(tempDirs.splice(0).map((dir) => fs.rm(dir, { recursive: true, force: true })));

27+

});

28+29+

async function createAgentDir() {

30+

const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-github-copilot-test-"));

31+

tempDirs.push(dir);

32+

return dir;

33+

}

34+1535

function _registerProvider() {

1636

return registerProviderWithPluginConfig({});

1737

}

@@ -116,4 +136,234 @@ describe("github-copilot plugin", () => {

116136

},

117137

});

118138

});

139+140+

it("stores GitHub Copilot token from non-interactive onboarding", async () => {

141+

const provider = registerProviderWithPluginConfig({});

142+

const method = provider.auth[0];

143+

const agentDir = await createAgentDir();

144+

const runtime = { error: vi.fn(), exit: vi.fn() };

145+146+

const result = await method.runNonInteractive({

147+

authChoice: "github-copilot",

148+

config: {},

149+

baseConfig: {},

150+

opts: { githubCopilotToken: "ghu_test\r\n123" },

151+

runtime,

152+

agentDir,

153+

resolveApiKey: vi.fn(async () => ({

154+

key: "ghu_test123",

155+

source: "flag" as const,

156+

})),

157+

toApiKeyCredential: vi.fn(),

158+

});

159+160+

expect(runtime.error).not.toHaveBeenCalled();

161+

expect(result?.auth?.profiles?.["github-copilot:github"]).toEqual({

162+

provider: "github-copilot",

163+

mode: "token",

164+

});

165+

expect(result?.agents?.defaults?.model).toEqual({

166+

primary: "github-copilot/claude-opus-4.7",

167+

});

168+

expect(result?.agents?.defaults?.models?.["github-copilot/claude-opus-4.7"]).toEqual({});

169+170+

const profile = ensureAuthProfileStore(agentDir).profiles["github-copilot:github"];

171+

expect(profile).toEqual({

172+

type: "token",

173+

provider: "github-copilot",

174+

token: "ghu_test123",

175+

});

176+

});

177+178+

it("stores env-backed token refs for non-interactive onboarding ref mode", async () => {

179+

const provider = registerProviderWithPluginConfig({});

180+

const method = provider.auth[0];

181+

const agentDir = await createAgentDir();

182+

const runtime = { error: vi.fn(), exit: vi.fn() };

183+184+

const result = await method.runNonInteractive({

185+

authChoice: "github-copilot",

186+

config: { agents: { defaults: { model: { fallbacks: ["openai/gpt-5.4"] } } } },

187+

baseConfig: {},

188+

opts: { secretInputMode: "ref" },

189+

runtime,

190+

agentDir,

191+

resolveApiKey: vi.fn(async () => ({

192+

key: "ghu_from_env",

193+

source: "env" as const,

194+

envVarName: "COPILOT_GITHUB_TOKEN",

195+

})),

196+

toApiKeyCredential: vi.fn(),

197+

});

198+199+

expect(runtime.error).not.toHaveBeenCalled();

200+

expect(result?.agents?.defaults?.model).toEqual({

201+

fallbacks: ["openai/gpt-5.4"],

202+

primary: "github-copilot/claude-opus-4.7",

203+

});

204+205+

const profile = ensureAuthProfileStore(agentDir).profiles["github-copilot:github"];

206+

expect(profile).toEqual({

207+

type: "token",

208+

provider: "github-copilot",

209+

tokenRef: {

210+

source: "env",

211+

provider: "default",

212+

id: "COPILOT_GITHUB_TOKEN",

213+

},

214+

});

215+

});

216+217+

it("falls back to GH_TOKEN during non-interactive onboarding", async () => {

218+

const provider = registerProviderWithPluginConfig({});

219+

const method = provider.auth[0];

220+

const agentDir = await createAgentDir();

221+

const runtime = { error: vi.fn(), exit: vi.fn() };

222+

const resolveApiKey = vi.fn(async ({ envVar }: { envVar?: string }) =>

223+

envVar === "GH_TOKEN"

224+

? {

225+

key: "ghu_from_gh_token",

226+

source: "env" as const,

227+

envVarName: "GH_TOKEN",

228+

}

229+

: null,

230+

);

231+232+

const result = await method.runNonInteractive({

233+

authChoice: "github-copilot",

234+

config: {},

235+

baseConfig: {},

236+

opts: {},

237+

runtime,

238+

agentDir,

239+

resolveApiKey,

240+

toApiKeyCredential: vi.fn(),

241+

});

242+243+

expect(runtime.error).not.toHaveBeenCalled();

244+

expect(resolveApiKey).toHaveBeenCalledWith(

245+

expect.objectContaining({ envVar: "COPILOT_GITHUB_TOKEN" }),

246+

);

247+

expect(resolveApiKey).toHaveBeenCalledWith(expect.objectContaining({ envVar: "GH_TOKEN" }));

248+

expect(result?.auth?.profiles?.["github-copilot:github"]).toEqual({

249+

provider: "github-copilot",

250+

mode: "token",

251+

});

252+253+

const profile = ensureAuthProfileStore(agentDir).profiles["github-copilot:github"];

254+

expect(profile).toEqual({

255+

type: "token",

256+

provider: "github-copilot",

257+

token: "ghu_from_gh_token",

258+

});

259+

});

260+261+

it("preserves an existing primary model during non-interactive onboarding", async () => {

262+

const provider = registerProviderWithPluginConfig({});

263+

const method = provider.auth[0];

264+

const agentDir = await createAgentDir();

265+

const runtime = { error: vi.fn(), exit: vi.fn() };

266+267+

const result = await method.runNonInteractive({

268+

authChoice: "github-copilot",

269+

config: {

270+

agents: {

271+

defaults: {

272+

model: {

273+

primary: "github-copilot/gpt-5.4",

274+

fallbacks: ["openai/gpt-5.4"],

275+

},

276+

models: {

277+

"github-copilot/gpt-5.4": { label: "Existing" },

278+

},

279+

},

280+

},

281+

},

282+

baseConfig: {},

283+

opts: { githubCopilotToken: "ghu_test" },

284+

runtime,

285+

agentDir,

286+

resolveApiKey: vi.fn(async () => ({

287+

key: "ghu_test",

288+

source: "flag" as const,

289+

})),

290+

toApiKeyCredential: vi.fn(),

291+

});

292+293+

expect(runtime.error).not.toHaveBeenCalled();

294+

expect(result?.agents?.defaults?.model).toEqual({

295+

primary: "github-copilot/gpt-5.4",

296+

fallbacks: ["openai/gpt-5.4"],

297+

});

298+

expect(result?.agents?.defaults?.models).toEqual({

299+

"github-copilot/gpt-5.4": { label: "Existing" },

300+

});

301+

});

302+303+

it("reuses an existing token profile during non-interactive onboarding", async () => {

304+

const provider = registerProviderWithPluginConfig({});

305+

const method = provider.auth[0];

306+

const agentDir = await createAgentDir();

307+

const runtime = { error: vi.fn(), exit: vi.fn() };

308+

await fs.writeFile(

309+

path.join(agentDir, "auth-profiles.json"),

310+

JSON.stringify({

311+

version: 1,

312+

profiles: {

313+

"github-copilot:github": {

314+

type: "token",

315+

provider: "github-copilot",

316+

token: "existing-token",

317+

},

318+

},

319+

}),

320+

);

321+322+

const result = await method.runNonInteractive({

323+

authChoice: "github-copilot",

324+

config: {},

325+

baseConfig: {},

326+

opts: {},

327+

runtime,

328+

agentDir,

329+

resolveApiKey: vi.fn(async () => null),

330+

toApiKeyCredential: vi.fn(),

331+

});

332+333+

expect(runtime.error).not.toHaveBeenCalled();

334+

expect(result?.auth?.profiles?.["github-copilot:github"]).toEqual({

335+

provider: "github-copilot",

336+

mode: "token",

337+

});

338+

});

339+340+

it("does not emit a second missing-token error after ref-mode flag validation fails", async () => {

341+

const provider = registerProviderWithPluginConfig({});

342+

const method = provider.auth[0];

343+

const agentDir = await createAgentDir();

344+

const runtime = { error: vi.fn(), exit: vi.fn() };

345+346+

const result = await method.runNonInteractive({

347+

authChoice: "github-copilot",

348+

config: {},

349+

baseConfig: {},

350+

opts: {

351+

githubCopilotToken: "ghu_secret",

352+

secretInputMode: "ref",

353+

},

354+

runtime,

355+

agentDir,

356+

resolveApiKey: vi.fn(async () => null),

357+

toApiKeyCredential: vi.fn(),

358+

});

359+360+

expect(result).toBeNull();

361+

expect(runtime.error).toHaveBeenCalledTimes(1);

362+

expect(runtime.error).toHaveBeenCalledWith(

363+

[

364+

"--github-copilot-token cannot be used with --secret-input-mode ref unless COPILOT_GITHUB_TOKEN, GH_TOKEN, or GITHUB_TOKEN is set in env.",

365+

"Set one of those env vars and omit --github-copilot-token, or use --secret-input-mode plaintext.",

366+

].join("\n"),

367+

);

368+

});

119369

});