Spaces:
Paused
Paused
| import Testing | |
| @testable import OpenClaw | |
| struct AnthropicOAuthCodeStateTests { | |
| func parsesRawToken() { | |
| let parsed = AnthropicOAuthCodeState.parse(from: "abcDEF1234#stateXYZ9876") | |
| #expect(parsed == .init(code: "abcDEF1234", state: "stateXYZ9876")) | |
| } | |
| func parsesBacktickedToken() { | |
| let parsed = AnthropicOAuthCodeState.parse(from: "`abcDEF1234#stateXYZ9876`") | |
| #expect(parsed == .init(code: "abcDEF1234", state: "stateXYZ9876")) | |
| } | |
| func parsesCallbackURL() { | |
| let raw = "https://console.anthropic.com/oauth/code/callback?code=abcDEF1234&state=stateXYZ9876" | |
| let parsed = AnthropicOAuthCodeState.parse(from: raw) | |
| #expect(parsed == .init(code: "abcDEF1234", state: "stateXYZ9876")) | |
| } | |
| func extractsFromSurroundingText() { | |
| let raw = "Paste the code#state value: abcDEF1234#stateXYZ9876 then return." | |
| let parsed = AnthropicOAuthCodeState.parse(from: raw) | |
| #expect(parsed == .init(code: "abcDEF1234", state: "stateXYZ9876")) | |
| } | |
| } | |