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

推荐订阅源

爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
I
InfoQ
美团技术团队
罗磊的独立博客
B
Blog RSS Feed
GbyAI
GbyAI
小众软件
小众软件
IT之家
IT之家
Engineering at Meta
Engineering at Meta
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
MyScale Blog
MyScale Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss

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
fix(cli): key oauth session epochs on identity · openclaw...
obviyus · 2026-04-23 · via Recent Commits to openclaw:main

@@ -30,59 +30,61 @@ describe("resolveCliAuthEpoch", () => {

3030

).resolves.toBeUndefined();

3131

});

323233-

it("keeps claude cli oauth epochs stable across access-token refreshes", async () => {

33+

it("keeps identity-less claude cli oauth epochs stable across token changes", async () => {

3434

let access = "access-a";

35+

let refresh = "refresh-a";

3536

let expires = 1;

3637

setCliAuthEpochTestDeps({

3738

readClaudeCliCredentialsCached: () => ({

3839

type: "oauth",

3940

provider: "anthropic",

4041

access,

41-

refresh: "refresh",

42+

refresh,

4243

expires,

4344

}),

4445

});

45464647

const first = await resolveCliAuthEpoch({ provider: "claude-cli" });

4748

access = "access-b";

49+

refresh = "refresh-b";

4850

expires = 2;

4951

const second = await resolveCliAuthEpoch({ provider: "claude-cli" });

50525153

expect(first).toBeDefined();

5254

expect(second).toBe(first);

5355

});

545655-

it("changes claude cli oauth epochs when the refresh token changes", async () => {

56-

let refresh = "refresh-a";

57+

it("changes claude cli token epochs when the static token changes", async () => {

58+

let token = "token-a";

5759

setCliAuthEpochTestDeps({

5860

readClaudeCliCredentialsCached: () => ({

59-

type: "oauth",

61+

type: "token",

6062

provider: "anthropic",

61-

access: "access",

62-

refresh,

63+

token,

6364

expires: 1,

6465

}),

6566

});

66676768

const first = await resolveCliAuthEpoch({ provider: "claude-cli" });

68-

refresh = "refresh-b";

69+

token = "token-b";

6970

const second = await resolveCliAuthEpoch({ provider: "claude-cli" });

70717172

expect(first).toBeDefined();

7273

expect(second).toBeDefined();

7374

expect(second).not.toBe(first);

7475

});

757676-

it("keeps oauth auth-profile epochs stable across access-token refreshes", async () => {

77+

it("keeps oauth auth-profile epochs stable across token refreshes", async () => {

7778

let store: AuthProfileStore = {

7879

version: 1,

7980

profiles: {

8081

"anthropic:work": {

8182

type: "oauth",

8283

provider: "anthropic",

8384

access: "access-a",

84-

refresh: "refresh",

85+

refresh: "refresh-a",

8586

expires: 1,

87+

email: "user@example.com",

8688

},

8789

},

8890

};

@@ -101,8 +103,9 @@ describe("resolveCliAuthEpoch", () => {

101103

type: "oauth",

102104

provider: "anthropic",

103105

access: "access-b",

104-

refresh: "refresh",

106+

refresh: "refresh-b",

105107

expires: 2,

108+

email: "user@example.com",

106109

},

107110

},

108111

};

@@ -115,16 +118,17 @@ describe("resolveCliAuthEpoch", () => {

115118

expect(second).toBe(first);

116119

});

117120118-

it("changes oauth auth-profile epochs when the refresh token changes", async () => {

121+

it("changes oauth auth-profile epochs when the account identity changes", async () => {

119122

let store: AuthProfileStore = {

120123

version: 1,

121124

profiles: {

122125

"anthropic:work": {

123126

type: "oauth",

124127

provider: "anthropic",

125128

access: "access",

126-

refresh: "refresh-a",

129+

refresh: "refresh",

127130

expires: 1,

131+

email: "user-a@example.com",

128132

},

129133

},

130134

};

@@ -143,8 +147,9 @@ describe("resolveCliAuthEpoch", () => {

143147

type: "oauth",

144148

provider: "anthropic",

145149

access: "access",

146-

refresh: "refresh-b",

150+

refresh: "refresh",

147151

expires: 1,

152+

email: "user-b@example.com",

148153

},

149154

},

150155

};

@@ -162,14 +167,16 @@ describe("resolveCliAuthEpoch", () => {

162167

let access = "local-access-a";

163168

let localRefresh = "local-refresh-a";

164169

let refresh = "profile-refresh-a";

170+

let accountId = "acct-1";

171+

let email = "user-a@example.com";

165172

setCliAuthEpochTestDeps({

166173

readCodexCliCredentialsCached: () => ({

167174

type: "oauth",

168175

provider: "openai-codex",

169176

access,

170177

refresh: localRefresh,

171178

expires: 1,

172-

accountId: "acct-1",

179+

accountId,

173180

}),

174181

loadAuthProfileStoreForRuntime: () => ({

175182

version: 1,

@@ -180,6 +187,7 @@ describe("resolveCliAuthEpoch", () => {

180187

access: "profile-access",

181188

refresh,

182189

expires: 1,

190+

email,

183191

},

184192

},

185193

}),

@@ -204,18 +212,31 @@ describe("resolveCliAuthEpoch", () => {

204212

provider: "codex-cli",

205213

authProfileId: "openai:work",

206214

});

215+

accountId = "acct-2";

216+

const fifth = await resolveCliAuthEpoch({

217+

provider: "codex-cli",

218+

authProfileId: "openai:work",

219+

});

220+

email = "user-b@example.com";

221+

const sixth = await resolveCliAuthEpoch({

222+

provider: "codex-cli",

223+

authProfileId: "openai:work",

224+

});

207225208226

expect(first).toBeDefined();

209-

expect(third).toBeDefined();

210-

expect(fourth).toBeDefined();

211227

expect(second).toBe(first);

212-

expect(third).not.toBe(second);

213-

expect(fourth).not.toBe(third);

228+

expect(third).toBe(second);

229+

expect(fourth).toBe(third);

230+

expect(fifth).toBeDefined();

231+

expect(sixth).toBeDefined();

232+

expect(fifth).not.toBe(fourth);

233+

expect(sixth).not.toBe(fifth);

214234

});

215235216236

it("can ignore local codex state when the backend is profile-owned", async () => {

217237

let localAccess = "local-access-a";

218238

let profileRefresh = "profile-refresh-a";

239+

let profileAccountId = "acct-1";

219240

setCliAuthEpochTestDeps({

220241

readCodexCliCredentialsCached: () => ({

221242

type: "oauth",

@@ -234,7 +255,7 @@ describe("resolveCliAuthEpoch", () => {

234255

access: "profile-access",

235256

refresh: profileRefresh,

236257

expires: 1,

237-

accountId: "acct-1",

258+

accountId: profileAccountId,

238259

},

239260

},

240261

}),

@@ -257,10 +278,17 @@ describe("resolveCliAuthEpoch", () => {

257278

authProfileId: "openai-codex:default",

258279

skipLocalCredential: true,

259280

});

281+

profileAccountId = "acct-2";

282+

const fourth = await resolveCliAuthEpoch({

283+

provider: "codex-cli",

284+

authProfileId: "openai-codex:default",

285+

skipLocalCredential: true,

286+

});

260287261288

expect(first).toBeDefined();

262289

expect(second).toBe(first);

263-

expect(third).toBeDefined();

264-

expect(third).not.toBe(second);

290+

expect(third).toBe(second);

291+

expect(fourth).toBeDefined();

292+

expect(fourth).not.toBe(third);

265293

});

266294

});