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

推荐订阅源

V
Visual Studio Blog
U
Unit 42
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
博客园 - 司徒正美
Vercel News
Vercel News
I
InfoQ
GbyAI
GbyAI
C
Check Point Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
B
Blog
MyScale Blog
MyScale Blog
腾讯CDC
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 三生石上(FineUI控件)

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
remove ios identity migration · openclaw/openclaw@99e69e1
joshavant · 2026-06-19 · via Recent Commits to openclaw:main

@@ -25,115 +25,18 @@ struct DeviceIdentityStoreTests {

2525

}

26262727

@Test

28-

func `migrates legacy identity state into shared app group storage`() throws {

28+

func `shared app group storage wins over legacy app support storage`() throws {

2929

let tempDir = FileManager.default.temporaryDirectory

3030

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

3131

defer { try? FileManager.default.removeItem(at: tempDir) }

3232

let legacyURL = tempDir.appendingPathComponent("legacy", isDirectory: true)

3333

let sharedURL = tempDir.appendingPathComponent("shared", isDirectory: true)

3434

let legacyIdentityURL = legacyURL.appendingPathComponent("identity", isDirectory: true)

3535

let legacyDeviceURL = legacyIdentityURL.appendingPathComponent("device.json", isDirectory: false)

36-

let legacyAuthURL = legacyIdentityURL.appendingPathComponent("device-auth.json", isDirectory: false)

3736

let sharedIdentityURL = sharedURL.appendingPathComponent("identity", isDirectory: true)

3837

let sharedDeviceURL = sharedIdentityURL.appendingPathComponent("device.json", isDirectory: false)

39-

let sharedAuthURL = sharedIdentityURL.appendingPathComponent("device-auth.json", isDirectory: false)

40-

let storedIdentity = try Self.identityJSON(

41-

publicKeyPem: Self.pem(

42-

label: "PUBLIC KEY",

43-

body: "MCowBQYDK2VwAyEAA6EHv/POEL4dcN0Y50vAmWfk1jCbpQ1fHdyGZBJVMbg="),

44-

privateKeyPem: Self.pem(

45-

label: "PRIVATE KEY",

46-

body: "MC4CAQAwBQYDK2VwBCIEIAABAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR4f"))

47-

let storedAuth = """

48-

{

49-

"version": 1,

50-

"deviceId": "legacy-device",

51-

"tokens": {

52-

"node": {

53-

"token": "legacy-node-token",

54-

"role": "node",

55-

"scopes": [],

56-

"updatedAtMs": 1700000000000

57-

}

58-

}

59-

}

60-

"""

61-

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

62-

try storedIdentity.write(to: legacyDeviceURL, atomically: true, encoding: .utf8)

63-

try storedAuth.write(to: legacyAuthURL, atomically: true, encoding: .utf8)

64-65-

let selected = DeviceIdentityPaths.stateDirURL(

66-

overrideURL: nil,

67-

legacyStateDirURL: legacyURL,

68-

appGroupStateDirURL: sharedURL,

69-

temporaryDirectory: tempDir)

70-71-

#expect(selected == sharedURL)

72-

#expect(try String(contentsOf: sharedDeviceURL, encoding: .utf8) == storedIdentity)

73-

#expect(try String(contentsOf: sharedAuthURL, encoding: .utf8) == storedAuth)

74-

let markerURL = sharedIdentityURL

75-

.appendingPathComponent(DeviceIdentityPaths.legacyMigrationMarkerFileName, isDirectory: false)

76-

#expect(FileManager.default.fileExists(atPath: markerURL.path))

77-

}

78-79-

@Test

80-

func `legacy app identity replaces extension-created app group identity before migration is marked`() throws {

81-

let tempDir = FileManager.default.temporaryDirectory

82-

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

83-

defer { try? FileManager.default.removeItem(at: tempDir) }

84-

let legacyURL = tempDir.appendingPathComponent("legacy", isDirectory: true)

85-

let sharedURL = tempDir.appendingPathComponent("shared", isDirectory: true)

86-

let legacyIdentityURL = legacyURL.appendingPathComponent("identity", isDirectory: true)

87-

let sharedIdentityURL = sharedURL.appendingPathComponent("identity", isDirectory: true)

88-

let legacyDeviceURL = legacyIdentityURL.appendingPathComponent("device.json", isDirectory: false)

89-

let sharedDeviceURL = sharedIdentityURL.appendingPathComponent("device.json", isDirectory: false)

90-

let legacyAuthURL = legacyIdentityURL.appendingPathComponent("device-auth.json", isDirectory: false)

91-

let sharedAuthURL = sharedIdentityURL.appendingPathComponent("device-auth.json", isDirectory: false)

92-

let legacyDevice = "legacy-device\n"

93-

let legacyAuth = "legacy-auth\n"

94-

let extensionDevice = "extension-device\n"

95-

let extensionAuth = "extension-auth\n"

96-

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

97-

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

98-

try legacyDevice.write(to: legacyDeviceURL, atomically: true, encoding: .utf8)

99-

try legacyAuth.write(to: legacyAuthURL, atomically: true, encoding: .utf8)

100-

try extensionDevice.write(to: sharedDeviceURL, atomically: true, encoding: .utf8)

101-

try extensionAuth.write(to: sharedAuthURL, atomically: true, encoding: .utf8)

102-103-

let selected = DeviceIdentityPaths.stateDirURL(

104-

overrideURL: nil,

105-

legacyStateDirURL: legacyURL,

106-

appGroupStateDirURL: sharedURL,

107-

temporaryDirectory: tempDir)

108-109-

#expect(selected == sharedURL)

110-

#expect(try String(contentsOf: sharedDeviceURL, encoding: .utf8) == legacyDevice)

111-

#expect(try String(contentsOf: sharedAuthURL, encoding: .utf8) == legacyAuth)

112-

let markerURL = sharedIdentityURL

113-

.appendingPathComponent(DeviceIdentityPaths.legacyMigrationMarkerFileName, isDirectory: false)

114-

#expect(FileManager.default.fileExists(atPath: markerURL.path))

115-

}

116-117-

@Test

118-

func `does not replace marked shared app group identity state`() throws {

119-

let tempDir = FileManager.default.temporaryDirectory

120-

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

121-

defer { try? FileManager.default.removeItem(at: tempDir) }

122-

let legacyURL = tempDir.appendingPathComponent("legacy", isDirectory: true)

123-

let sharedURL = tempDir.appendingPathComponent("shared", isDirectory: true)

124-

let legacyIdentityURL = legacyURL.appendingPathComponent("identity", isDirectory: true)

125-

let sharedIdentityURL = sharedURL.appendingPathComponent("identity", isDirectory: true)

126-

let legacyDeviceURL = legacyIdentityURL.appendingPathComponent("device.json", isDirectory: false)

127-

let sharedDeviceURL = sharedIdentityURL.appendingPathComponent("device.json", isDirectory: false)

128-

let markerURL = sharedIdentityURL

129-

.appendingPathComponent(DeviceIdentityPaths.legacyMigrationMarkerFileName, isDirectory: false)

130-

let sharedDevice = "shared-device\n"

131-

let legacyDevice = "legacy-device\n"

13238

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

133-

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

134-

try legacyDevice.write(to: legacyDeviceURL, atomically: true, encoding: .utf8)

135-

try sharedDevice.write(to: sharedDeviceURL, atomically: true, encoding: .utf8)

136-

try Data("1\n".utf8).write(to: markerURL, options: [.atomic])

39+

try "legacy-device\n".write(to: legacyDeviceURL, atomically: true, encoding: .utf8)

1374013841

let selected = DeviceIdentityPaths.stateDirURL(

13942

overrideURL: nil,

@@ -142,9 +45,7 @@ struct DeviceIdentityStoreTests {

14245

temporaryDirectory: tempDir)

1434614447

#expect(selected == sharedURL)

145-

#expect(try String(contentsOf: sharedDeviceURL, encoding: .utf8) == sharedDevice)

146-

let sharedAuthURL = sharedIdentityURL.appendingPathComponent("device-auth.json", isDirectory: false)

147-

#expect(!FileManager.default.fileExists(atPath: sharedAuthURL.path))

48+

#expect(!FileManager.default.fileExists(atPath: sharedDeviceURL.path))

14849

}

1495015051

@Test