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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Engineering at Meta
Engineering at Meta
C
Check Point Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
WordPress大学
WordPress大学
博客园 - 司徒正美

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(auth): align operator bootstrap scopes · openclaw/ope...
BunsDev · 2026-05-12 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import OpenClawProtocol

44

import Testing

55

@testable import OpenClaw

667+

@Suite(.serialized)

78

struct GatewayChannelConnectTests {

89

private final class ConnectParamsRecorder: @unchecked Sendable {

910

private let lock = NSLock()

@@ -25,6 +26,23 @@ struct GatewayChannelConnectTests {

2526

}

2627

}

272829+

private final class ScopeCapture: @unchecked Sendable {

30+

private let lock = NSLock()

31+

private var scopes: [String]?

32+33+

func set(_ scopes: [String]?) {

34+

self.lock.lock()

35+

self.scopes = scopes

36+

self.lock.unlock()

37+

}

38+39+

func snapshot() -> [String]? {

40+

self.lock.lock()

41+

defer { self.lock.unlock() }

42+

return self.scopes

43+

}

44+

}

45+2846

private final class TLSFailureSession: WebSocketSessioning, GatewayTLSFailureProviding, @unchecked Sendable {

2947

private var failure: GatewayTLSValidationFailure?

3048

@@ -92,6 +110,23 @@ struct GatewayChannelConnectTests {

92110

})

93111

}

94112113+

private func withTemporaryStateDir<T>(_ operation: () async throws -> T) async throws -> T {

114+

let tempDir = FileManager.default.temporaryDirectory

115+

.appendingPathComponent(UUID().uuidString, isDirectory: true)

116+

try FileManager.default.createDirectory(at: tempDir, withIntermediateDirectories: true)

117+

let previousStateDir = ProcessInfo.processInfo.environment["OPENCLAW_STATE_DIR"]

118+

setenv("OPENCLAW_STATE_DIR", tempDir.path, 1)

119+

defer {

120+

if let previousStateDir {

121+

setenv("OPENCLAW_STATE_DIR", previousStateDir, 1)

122+

} else {

123+

unsetenv("OPENCLAW_STATE_DIR")

124+

}

125+

try? FileManager.default.removeItem(at: tempDir)

126+

}

127+

return try await operation()

128+

}

129+95130

@Test func `concurrent connect is single flight on success`() async throws {

96131

let session = self.makeSession(response: .helloOk(delayMs: 200))

97132

let channel = try GatewayChannelActor(

@@ -152,6 +187,126 @@ struct GatewayChannelConnectTests {

152187

#expect(session.snapshotMakeCount() == 1)

153188

}

154189190+

@Test func `default operator connect scopes preserve pairing and admin`() async throws {

191+

try await self.withTemporaryStateDir {

192+

let capture = ScopeCapture()

193+

let session = GatewayTestWebSocketSession(

194+

taskFactory: {

195+

GatewayTestWebSocketTask(sendHook: { _, message, sendIndex in

196+

if sendIndex == 0 {

197+

capture.set(GatewayWebSocketTestSupport.connectScopes(from: message))

198+

}

199+

})

200+

})

201+

let channel = try GatewayChannelActor(

202+

url: #require(URL(string: "ws://example.invalid")),

203+

token: nil,

204+

session: WebSocketSessionBox(session: session))

205+206+

try await channel.connect()

207+208+

#expect(capture.snapshot() == [

209+

"operator.admin",

210+

"operator.read",

211+

"operator.write",

212+

"operator.approvals",

213+

"operator.pairing",

214+

])

215+

}

216+

}

217+218+

@Test func `bootstrap token connect scopes are bootstrap-compatible`() async throws {

219+

let capture = ScopeCapture()

220+

let session = GatewayTestWebSocketSession(

221+

taskFactory: {

222+

GatewayTestWebSocketTask(sendHook: { _, message, sendIndex in

223+

if sendIndex == 0 {

224+

capture.set(GatewayWebSocketTestSupport.connectScopes(from: message))

225+

}

226+

})

227+

})

228+

let channel = try GatewayChannelActor(

229+

url: #require(URL(string: "ws://example.invalid")),

230+

token: nil,

231+

bootstrapToken: "setup-bootstrap-token",

232+

session: WebSocketSessionBox(session: session))

233+234+

try await channel.connect()

235+236+

#expect(capture.snapshot() == [

237+

"operator.approvals",

238+

"operator.read",

239+

"operator.write",

240+

])

241+

}

242+243+

@Test func `stored device token connect scopes reuse cached scopes`() async throws {

244+

try await self.withTemporaryStateDir {

245+

let identity = DeviceIdentityStore.loadOrCreate()

246+

let storedEntry = DeviceAuthStore.storeToken(

247+

deviceId: identity.deviceId,

248+

role: "operator",

249+

token: "bootstrap-device-token",

250+

scopes: ["operator.read", "operator.write", "operator.approvals"])

251+

let capture = ScopeCapture()

252+

let session = GatewayTestWebSocketSession(

253+

taskFactory: {

254+

GatewayTestWebSocketTask(sendHook: { _, message, sendIndex in

255+

if sendIndex == 0 {

256+

capture.set(GatewayWebSocketTestSupport.connectScopes(from: message))

257+

}

258+

})

259+

})

260+

let channel = try GatewayChannelActor(

261+

url: #require(URL(string: "ws://example.invalid")),

262+

token: nil,

263+

session: WebSocketSessionBox(session: session))

264+265+

try await channel.connect()

266+267+

#expect(capture.snapshot() == storedEntry.scopes)

268+

}

269+

}

270+271+

@Test func `explicit device token connect scopes preserve requested scopes`() async throws {

272+

try await self.withTemporaryStateDir {

273+

let identity = DeviceIdentityStore.loadOrCreate()

274+

_ = DeviceAuthStore.storeToken(

275+

deviceId: identity.deviceId,

276+

role: "operator",

277+

token: "bootstrap-device-token",

278+

scopes: ["operator.read", "operator.write", "operator.approvals"])

279+

let requestedScopes = ["operator.admin", "operator.pairing"]

280+

let capture = ScopeCapture()

281+

let session = GatewayTestWebSocketSession(

282+

taskFactory: {

283+

GatewayTestWebSocketTask(sendHook: { _, message, sendIndex in

284+

if sendIndex == 0 {

285+

capture.set(GatewayWebSocketTestSupport.connectScopes(from: message))

286+

}

287+

})

288+

})

289+

let channel = try GatewayChannelActor(

290+

url: #require(URL(string: "ws://example.invalid")),

291+

token: nil,

292+

session: WebSocketSessionBox(session: session),

293+

connectOptions: GatewayConnectOptions(

294+

role: "operator",

295+

scopes: requestedScopes,

296+

scopesAreExplicit: true,

297+

caps: [],

298+

commands: [],

299+

permissions: [:],

300+

clientId: "openclaw-macos",

301+

clientMode: "ui",

302+

clientDisplayName: "OpenClaw macOS Debug CLI"))

303+304+

try await channel.connect()

305+306+

#expect(capture.snapshot() == requestedScopes)

307+

}

308+

}

309+155310

@Test func `connect surfaces structured auth failure`() async throws {

156311

let session = self.makeSession(response: .authFailed(

157312

delayMs: 0,