link-assistant-router 0.103.0

Link.Assistant.Router — Claude MAX OAuth proxy and token gateway for Anthropic APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
//! Unit tests for the multi-account router ([`crate::accounts`]).
//!
//! Split from `accounts.rs` to keep that file within the repository's
//! 1000-line limit.

use crate::accounts::*;
use crate::subscription::SubscriptionProvider;
use std::fs;

fn tempdir(slug: &str) -> PathBuf {
    let dir = std::env::temp_dir().join(format!("router-acct-{slug}-{}", uuid::Uuid::new_v4()));
    fs::create_dir_all(&dir).unwrap();
    dir
}

fn write_creds(dir: &std::path::Path, token: &str) {
    fs::write(
        dir.join("credentials.json"),
        format!("{{\"accessToken\":\"{token}\"}}"),
    )
    .unwrap();
}

#[test]
fn round_robin_distributes_calls() {
    let a = tempdir("a");
    let b = tempdir("b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new(
        a,
        &[b],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    let s1 = router.select().unwrap();
    let s2 = router.select().unwrap();
    let s3 = router.select().unwrap();
    let names: Vec<_> = vec![s1.name, s2.name, s3.name];
    assert!(names.contains(&"primary".to_string()));
    assert!(names.contains(&"account-1".to_string()));
}

fn write_creds_expiring(dir: &std::path::Path, refresh: &str, expires_at_ms: i64) {
    let refresh_field = if refresh.is_empty() {
        String::new()
    } else {
        format!("\"refreshToken\":\"{refresh}\",")
    };
    fs::write(
        dir.join("credentials.json"),
        format!(
            "{{\"claudeAiOauth\":{{\"accessToken\":\"tok\",{refresh_field}\"expiresAt\":{expires_at_ms}}}}}"
        ),
    )
    .unwrap();
}

/// A credential that cannot serve a request must not report healthy, even
/// before any request has been attempted.
///
/// `healthy` consulted only the in-memory cooldown timer, which is `None`
/// in a freshly started process. So `accounts list` reported `true` for an
/// account whose token was expired with no refresh token left, at the same
/// moment `doctor` called it EXPIRED and every request returned 401 — a
/// health check that suppresses the alert it exists to raise (issue #242).
#[test]
fn a_terminally_expired_credential_is_not_healthy() {
    let dir = tempdir("expired");
    write_creds_expiring(&dir, "", 1_600_000_000_000);
    let router = AccountRouter::new(
        dir,
        &[],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    let snap = router.health_snapshot();
    assert!(!snap[0].healthy, "expired credential reported healthy");
    assert_eq!(snap[0].credential, CredentialState::Expired);
}

/// An expired access token that still has a refresh token is recoverable,
/// so it stays healthy: `expiresAt` is a hint the refresh ladder acts on,
/// and reporting it dead would be a false negative in the other direction.
#[test]
fn an_expired_credential_with_a_refresh_token_stays_healthy() {
    let dir = tempdir("refreshable");
    write_creds_expiring(&dir, "refresh-token", 1_600_000_000_000);
    let router = AccountRouter::new(
        dir,
        &[],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    let snap = router.health_snapshot();
    assert!(
        snap[0].healthy,
        "a refreshable credential must stay healthy"
    );
    assert_eq!(snap[0].credential, CredentialState::Refreshable);
}

/// An account whose credential file does not exist cannot serve anything.
#[test]
fn a_missing_credential_is_not_healthy() {
    let dir = tempdir("absent");
    let router = AccountRouter::new(
        dir,
        &[],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    let snap = router.health_snapshot();
    assert!(!snap[0].healthy, "missing credential reported healthy");
    assert!(matches!(snap[0].credential, CredentialState::Unusable(_)));
}

/// Reporting an account unhealthy must not stop the router from trying it:
/// the refresh ladder recovers expired tokens on the next request, and the
/// health column is a report, not a routing decision.
#[test]
fn credential_state_does_not_change_selection() {
    let dir = tempdir("still-selected");
    write_creds_expiring(&dir, "", 1_600_000_000_000);
    let router = AccountRouter::new(
        dir,
        &[],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    assert!(!router.health_snapshot()[0].healthy);
    assert_eq!(router.select().unwrap().name, "primary");
}

#[test]
fn cooldown_skips_unhealthy_account() {
    let a = tempdir("aa");
    let b = tempdir("bb");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new(
        a,
        &[b],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    router.report_failure("primary", "rate limited");
    let snap = router.health_snapshot();
    assert!(!snap[0].healthy);
    assert!(snap[1].healthy);
    let chosen = router.select().unwrap();
    assert_eq!(chosen.name, "account-1");
}

#[test]
fn no_healthy_returns_error() {
    let a = tempdir("a2");
    write_creds(&a, "tok-a");
    let router = AccountRouter::new(
        a,
        &[],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    router.report_failure("primary", "fail");
    let r = router.select();
    assert!(matches!(r, Err(AccountError::NoHealthyAccounts)));
}

#[test]
fn least_used_picks_lowest_count() {
    let a = tempdir("la");
    let b = tempdir("lb");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new(
        a,
        &[b],
        SelectionStrategy::LeastUsed,
        Duration::from_secs(60),
    );
    let _ = router.select().unwrap();
    let _ = router.select().unwrap();
    let _ = router.select().unwrap();
    let snap = router.health_snapshot();
    let total: usize = snap.iter().map(|s| s.used).sum();
    assert_eq!(total, 3);
    // both accounts should be exercised (LeastUsed prefers the unused one)
    assert!(snap.iter().any(|s| s.used >= 1));
}

#[test]
fn strategy_aliases_ignore_surrounding_whitespace() {
    assert_eq!(
        SelectionStrategy::from_str_opt("  quota-first  "),
        Some(SelectionStrategy::LeastUsed)
    );
}

#[test]
fn least_used_compares_normalized_spend_for_uneven_limits() {
    let a = tempdir("normalized-a");
    let b = tempdir("normalized-b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new_for_provider(
        a,
        &[b],
        SubscriptionProvider::Claude,
        AccountRouterOptions {
            strategy: SelectionStrategy::LeastUsed,
            request_limits: vec![Some(2), Some(100)],
            ..AccountRouterOptions::default()
        },
    );

    assert_eq!(router.select().unwrap().name, "primary");
    assert_eq!(router.select().unwrap().name, "account-1");
    assert_eq!(router.select().unwrap().name, "account-1");
}

#[test]
fn session_affinity_keeps_a_conversation_on_one_account() {
    let a = tempdir("session-a");
    let b = tempdir("session-b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new_for_provider(
        a,
        &[b],
        SubscriptionProvider::Claude,
        AccountRouterOptions::default(),
    );

    let first = router
        .select_with_context(&RoutingContext::for_session("conversation-1"))
        .unwrap();
    let again = router
        .select_with_context(&RoutingContext::for_session("conversation-1"))
        .unwrap();
    let other = router
        .select_with_context(&RoutingContext::for_session("conversation-2"))
        .unwrap();

    assert_eq!(first.name, again.name);
    assert_ne!(first.name, other.name);
}

#[test]
fn session_activity_renews_the_affinity_timeout() {
    let a = tempdir("session-renew-a");
    let b = tempdir("session-renew-b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new_for_provider(
        a,
        &[b],
        SubscriptionProvider::Claude,
        AccountRouterOptions::default(),
    );
    let context = RoutingContext::for_session("active-conversation");
    router.select_with_context(&context).unwrap();

    let shortened_expiry = Instant::now() + Duration::from_secs(1);
    router
        .inner
        .affinities
        .lock()
        .unwrap()
        .get_mut("active-conversation")
        .unwrap()
        .expires_at = shortened_expiry;

    router.select_with_context(&context).unwrap();
    let renewed_expiry = router
        .inner
        .affinities
        .lock()
        .unwrap()
        .get("active-conversation")
        .unwrap()
        .expires_at;
    assert!(renewed_expiry > shortened_expiry);
}

#[test]
fn an_unavailable_session_account_is_not_silently_changed() {
    let a = tempdir("strict-session-a");
    let b = tempdir("strict-session-b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new_for_provider(
        a,
        &[b],
        SubscriptionProvider::Claude,
        AccountRouterOptions::default(),
    );
    let context = RoutingContext::for_session("strict-conversation");
    let selected = router.select_with_context(&context).unwrap();
    router.report_failure(&selected.name, "quota exhausted");

    assert!(matches!(
        router.select_with_context(&context),
        Err(AccountError::SessionAccountUnavailable(_))
    ));
}

#[test]
fn explicit_account_pins_are_strict() {
    let a = tempdir("pin-a");
    let b = tempdir("pin-b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let router = AccountRouter::new_for_provider(
        a,
        &[b],
        SubscriptionProvider::Claude,
        AccountRouterOptions::default(),
    );

    let selected = router
        .select_with_context(&RoutingContext::pinned("account-1"))
        .unwrap();
    assert_eq!(selected.name, "account-1");
    router.report_failure("account-1", "quota exhausted");
    assert!(matches!(
        router.select_with_context(&RoutingContext::pinned("account-1")),
        Err(AccountError::PinnedAccountUnavailable(_))
    ));
    assert!(matches!(
        router.select_with_context(&RoutingContext::pinned("missing")),
        Err(AccountError::UnknownPinnedAccount(_))
    ));
}

#[test]
fn configured_request_limits_remove_spent_accounts() {
    let a = tempdir("limits-a");
    let b = tempdir("limits-b");
    write_creds(&a, "tok-a");
    write_creds(&b, "tok-b");
    let options = AccountRouterOptions {
        request_limits: vec![Some(1), Some(2)],
        ..AccountRouterOptions::default()
    };
    let router = AccountRouter::new_for_provider(a, &[b], SubscriptionProvider::Claude, options);

    assert_eq!(router.select().unwrap().name, "primary");
    assert_eq!(router.select().unwrap().name, "account-1");
    assert_eq!(router.select().unwrap().name, "account-1");
    assert!(matches!(
        router.select(),
        Err(AccountError::NoHealthyAccounts)
    ));
    let health = router.health_snapshot();
    assert_eq!(health[0].remaining_requests, Some(0));
    assert_eq!(health[1].remaining_requests, Some(0));
}

#[test]
fn concurrent_selection_cannot_oversubscribe_an_account_cap() {
    let a = tempdir("atomic-limit");
    write_creds(&a, "tok-a");
    let router = AccountRouter::new_for_provider(
        a,
        &[],
        SubscriptionProvider::Claude,
        AccountRouterOptions {
            request_limits: vec![Some(1)],
            ..AccountRouterOptions::default()
        },
    );
    let successful = (0..16)
        .map(|_| {
            let router = router.clone();
            std::thread::spawn(move || router.select().is_ok())
        })
        .map(|worker| worker.join().unwrap())
        .filter(|successful| *successful)
        .count();

    assert_eq!(successful, 1);
    assert_eq!(router.health_snapshot()[0].used, 1);
}

#[test]
fn vendor_subscription_accounts_use_the_same_pool() {
    let a = tempdir("codex-a");
    let b = tempdir("codex-b");
    fs::write(
        a.join("auth.json"),
        r#"{"tokens":{"access_token":"codex-a","account_id":"acct-a"}}"#,
    )
    .unwrap();
    fs::write(
        b.join("auth.json"),
        r#"{"tokens":{"access_token":"codex-b","account_id":"acct-b"}}"#,
    )
    .unwrap();
    let router = AccountRouter::new_for_provider(
        a,
        &[b],
        SubscriptionProvider::Codex,
        AccountRouterOptions::default(),
    );

    let selected = router
        .select_subscription(&RoutingContext::pinned("account-1"))
        .unwrap();
    assert_eq!(selected.name, "account-1");
    assert_eq!(selected.token.access_token, "codex-b");
    assert_eq!(selected.token.account_id.as_deref(), Some("acct-b"));
}

/// A rejection is a fact about one chain link, not about the account: once the
/// credential on disk differs from the one that was refused, the account is
/// reported recoverable again without a restart (issue #239's rule, kept).
#[tokio::test]
async fn a_rotated_credential_clears_an_earlier_refusal() {
    let dir = tempdir("rotated-after-refusal");
    write_creds_expiring(&dir, "revoked-refresh-token", 1_600_000_000_000);
    let router = AccountRouter::new(
        dir.clone(),
        &[],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    let cache = crate::refresh::TokenCache::new();

    let refused = crate::subscription::SubscriptionToken {
        access_token: "tok".into(),
        refresh_token: Some("revoked-refresh-token".into()),
        expires_at_ms: Some(1_600_000_000_000),
        account_id: None,
        resource_url: None,
    };
    cache.record_refresh_refused(SubscriptionProvider::Claude, "primary", &refused);
    assert_eq!(
        router.health_snapshot_with(Some(&cache))[0].credential,
        CredentialState::Rejected
    );

    // Another holder rotates the chain forward; the file no longer matches the
    // link that was refused.
    write_creds_expiring(&dir, "rotated-refresh-token", 1_600_000_000_000);

    let snapshot = router.health_snapshot_with(Some(&cache));
    assert_eq!(snapshot[0].credential, CredentialState::Refreshable);
    assert!(snapshot[0].healthy, "a rotated chain must recover");
}

/// One revoked account must not make its healthy neighbours look revoked.
///
/// The evidence the ladder records alongside this is keyed by *provider*, which
/// is right for routing a vendor away and wrong for a per-account report: every
/// account in a Claude pool shares that key. The refusal is keyed per account
/// and per credential precisely so this stays true (issue #245).
#[tokio::test]
async fn one_revoked_account_does_not_condemn_the_pool() {
    let dead = tempdir("pool-dead");
    let live = tempdir("pool-live");
    write_creds_expiring(&dead, "revoked-refresh-token", 1_600_000_000_000);
    write_creds_expiring(&live, "healthy-refresh-token", 1_600_000_000_000);
    let router = AccountRouter::new(
        dead,
        &[live],
        SelectionStrategy::RoundRobin,
        Duration::from_secs(60),
    );
    let cache = crate::refresh::TokenCache::new();

    let refused = crate::subscription::SubscriptionToken {
        access_token: "tok".into(),
        refresh_token: Some("revoked-refresh-token".into()),
        expires_at_ms: Some(1_600_000_000_000),
        account_id: None,
        resource_url: None,
    };
    cache.record_refresh_refused(SubscriptionProvider::Claude, "primary", &refused);

    let snapshot = router.health_snapshot_with(Some(&cache));
    assert_eq!(snapshot[0].credential, CredentialState::Rejected);
    assert!(!snapshot[0].healthy);
    assert_eq!(
        snapshot[1].credential,
        CredentialState::Refreshable,
        "the second account shares only a provider, not a credential"
    );
    assert!(snapshot[1].healthy, "a healthy neighbour was condemned");
}