link-assistant-router 0.101.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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
//! Tests for the credential recovery ladder (issue #239).
//!
//! Every test drives a real credential file through a real token endpoint on
//! loopback, because the bug being fixed lives exactly in the seam between the
//! two: the router concluded "revoked" from an `invalid_grant` without ever
//! re-reading the file another holder had already rotated forward.

use std::sync::{Arc, Mutex};

use super::super::TokenCache;
use crate::credential_store::CredentialStore;
use crate::subscription::{SubscriptionProvider, SubscriptionReader, SubscriptionToken};

const NOW_MS: i64 = 1_700_000_000_000;

/// A Claude credential file in the layout the Claude CLI writes.
fn seed_credential(home: &std::path::Path, access: &str, refresh: &str, expires_at_ms: i64) {
    let document = serde_json::json!({
        "claudeAiOauth": {
            "accessToken": access,
            "refreshToken": refresh,
            "expiresAt": expires_at_ms,
            "scopes": ["user:inference"],
        }
    });
    std::fs::write(
        home.join(".credentials.json"),
        serde_json::to_vec_pretty(&document).expect("serialize"),
    )
    .expect("seed credential");
}

fn token(access: &str, refresh: &str, expires_at_ms: i64) -> SubscriptionToken {
    SubscriptionToken {
        access_token: access.into(),
        refresh_token: Some(refresh.into()),
        expires_at_ms: Some(expires_at_ms),
        account_id: None,
        resource_url: None,
    }
}

/// One scripted answer from the token endpoint.
struct Answer {
    status: u16,
    body: &'static str,
    /// Delay before answering, so a test can hold the credential lock long
    /// enough for a second holder to contend for it.
    delay: std::time::Duration,
}

impl Answer {
    const fn new(status: u16, body: &'static str) -> Self {
        Self {
            status,
            body,
            delay: std::time::Duration::ZERO,
        }
    }

    const fn after(mut self, delay: std::time::Duration) -> Self {
        self.delay = delay;
        self
    }
}

/// Requests the stub endpoint received, as `(head, body)` pairs.
type Received = Arc<Mutex<Vec<(String, String)>>>;

/// Serve a scripted sequence of answers on loopback, recording every request.
///
/// `before_answer` runs with the zero-based request index *before* the response
/// is written, which is how a test simulates another holder rotating the chain
/// while our exchange is still in flight.
async fn scripted_endpoint(
    script: Vec<Answer>,
    before_answer: impl Fn(usize) + Send + 'static,
) -> (String, Received, tokio::task::JoinHandle<()>) {
    use tokio::io::{AsyncReadExt, AsyncWriteExt};

    let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
    let url = format!("http://{}/v1/oauth/token", listener.local_addr().unwrap());
    let received: Received = Arc::new(Mutex::new(Vec::new()));
    let recorder = Arc::clone(&received);
    let handle = tokio::spawn(async move {
        for (index, answer) in script.into_iter().enumerate() {
            let (mut socket, _) = listener.accept().await.unwrap();
            let mut raw = Vec::new();
            let mut buf = [0u8; 4096];
            loop {
                let read = socket.read(&mut buf).await.unwrap();
                raw.extend_from_slice(&buf[..read]);
                let text = String::from_utf8_lossy(&raw);
                if read == 0
                    || text
                        .split_once("\r\n\r\n")
                        .is_some_and(|(_, body)| !body.is_empty())
                {
                    break;
                }
            }
            let request = String::from_utf8_lossy(&raw).to_string();
            let (head, body) = request.split_once("\r\n\r\n").unwrap();
            recorder
                .lock()
                .unwrap()
                .push((head.to_string(), body.to_string()));
            if !answer.delay.is_zero() {
                tokio::time::sleep(answer.delay).await;
            }
            before_answer(index);
            let status = answer.status;
            let body = answer.body;
            socket
                .write_all(
                    format!(
                        "HTTP/1.1 {status} X\r\ncontent-type: application/json\r\ncontent-length: \
                         {}\r\nconnection: close\r\n\r\n{body}",
                        body.len()
                    )
                    .as_bytes(),
                )
                .await
                .unwrap();
            socket.flush().await.unwrap();
        }
    });
    (url, received, handle)
}

/// Stop waiting on the stub endpoint.
///
/// The script is only fully consumed when the ladder makes every exchange the
/// test expects, so a regression shows up as an unconsumed answer. Bounding the
/// wait turns that into an assertion failure a few seconds later instead of a
/// test run that hangs.
async fn drain(server: tokio::task::JoinHandle<()>) {
    assert!(
        tokio::time::timeout(std::time::Duration::from_secs(5), server)
            .await
            .is_ok(),
        "the ladder made fewer exchanges than the test scripted"
    );
}

const INVALID_GRANT: &str =
    r#"{"error":"invalid_grant","error_description":"refresh token not found"}"#;

/// The case from issue #239: our refresh token is rejected because another
/// holder already rotated the chain forward. Re-reading the credential is all
/// it takes to keep serving, so no `invalid_grant` may be reported as revoked
/// until that check has been made.
#[tokio::test]
async fn a_rotation_that_lands_during_the_exchange_is_adopted_instead_of_reported_as_revoked() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());

    // While the first exchange is in flight, a vendor CLI redeems the same link
    // and writes the rotation to disk.
    let rotated_home = home.path().to_path_buf();
    let (url, received, server) = scripted_endpoint(
        vec![
            Answer::new(400, INVALID_GRANT),
            Answer::new(
                200,
                r#"{"access_token":"access-3","refresh_token":"refresh-3","expires_in":3600}"#,
            ),
        ],
        move |index| {
            if index == 0 {
                seed_credential(&rotated_home, "access-2", "refresh-2", NOW_MS - 1);
            }
        },
    )
    .await;

    let cache = TokenCache::new();
    cache.register_reader("primary", &reader);
    let fresh = cache
        .get_fresh_for_at(
            &reqwest::Client::new(),
            &url,
            SubscriptionProvider::Claude,
            "primary",
            token("access-1", "refresh-1", NOW_MS - 1),
            NOW_MS,
        )
        .await;
    drain(server).await;

    assert_eq!(fresh.access_token, "access-3");
    // The second exchange must spend the *newer* link, not replay the rejected
    // one.
    let bodies: Vec<serde_json::Value> = {
        let requests = received.lock().unwrap();
        assert_eq!(requests.len(), 2, "one retry, not a loop");
        requests
            .iter()
            .map(|(_, body)| serde_json::from_str(body).expect("json body"))
            .collect()
    };
    assert_eq!(bodies[0]["refresh_token"], "refresh-1");
    assert_eq!(bodies[1]["refresh_token"], "refresh-2");

    // Nothing is reported as revoked, and the recovery says how it happened.
    assert_eq!(cache.last_refresh_error(SubscriptionProvider::Claude), None);
    assert_eq!(
        cache.last_recovery(SubscriptionProvider::Claude),
        Some("the stored refresh token was rejected; adopted a newer one from disk and retried")
    );
    // The rotation reached disk, so the next process start does not replay a
    // spent link.
    assert_eq!(
        CredentialStore::reload(&reader)
            .expect("credential")
            .refresh_token
            .as_deref(),
        Some("refresh-3")
    );
}

/// A credential the store has *not* rotated past is genuinely revoked, and must
/// still be terminal — but the message has to say which of the two causes it is
/// and where that was checked.
#[tokio::test]
async fn a_revoked_credential_stays_terminal_and_names_the_cause() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());
    let (url, received, server) =
        scripted_endpoint(vec![Answer::new(400, INVALID_GRANT)], |_| {}).await;

    let cache = TokenCache::new();
    cache.register_reader("primary", &reader);
    let client = reqwest::Client::new();
    let stale = token("access-1", "refresh-1", NOW_MS - 1);
    let handed_back = cache
        .get_fresh_for_at(
            &client,
            &url,
            SubscriptionProvider::Claude,
            "primary",
            stale.clone(),
            NOW_MS,
        )
        .await;
    // The unrefreshable token is handed back so the upstream, not a guess here,
    // decides whether it still works.
    assert_eq!(handed_back.access_token, "access-1");

    let message = cache
        .last_refresh_error(SubscriptionProvider::Claude)
        .expect("a terminal rejection is reported");
    assert!(
        message.contains("still holds the same refresh token that was just rejected"),
        "{message}"
    );
    assert!(
        message.contains("revoked or already spent elsewhere"),
        "{message}"
    );
    assert!(
        message.contains("link-assistant-router auth claude"),
        "{message}"
    );
    assert!(message.contains(".credentials.json"), "{message}");
    // The generic "waiting will not help" advice is the sentence issue #239
    // calls misleading; the ladder gives the checked one instead.
    assert!(!message.contains("waiting will not help"), "{message}");

    // A second call must not spend another exchange against a credential that
    // is known dead.
    let again = cache
        .get_fresh_for_at(
            &client,
            &url,
            SubscriptionProvider::Claude,
            "primary",
            stale,
            NOW_MS + 1_000,
        )
        .await;
    assert_eq!(again.access_token, "access-1");
    drain(server).await;
    assert_eq!(received.lock().unwrap().len(), 1, "one exchange only");
}

/// Two holders of the same credential — here two `TokenCache`s, as two router
/// processes would be — must serialise their read → refresh → write cycles. The
/// one that loses the race observes the winner's rotation instead of spending
/// the refresh token a second time.
#[tokio::test]
async fn two_concurrent_refreshes_serialise_and_the_second_observes_the_first() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());
    let (url, received, server) = scripted_endpoint(
        vec![
            Answer::new(
                200,
                r#"{"access_token":"access-2","refresh_token":"refresh-2","expires_in":3600}"#,
            )
            .after(std::time::Duration::from_millis(150)),
        ],
        |_| {},
    )
    .await;

    let first = TokenCache::new();
    let second = TokenCache::new();
    first.register_reader("primary", &reader);
    second.register_reader("primary", &reader);
    let client = reqwest::Client::new();
    let stale = token("access-1", "refresh-1", NOW_MS - 1);
    let (left, right) = tokio::join!(
        first.get_fresh_for_at(
            &client,
            &url,
            SubscriptionProvider::Claude,
            "primary",
            stale.clone(),
            NOW_MS,
        ),
        second.get_fresh_for_at(
            &client,
            &url,
            SubscriptionProvider::Claude,
            "primary",
            stale,
            NOW_MS,
        ),
    );
    drain(server).await;

    assert_eq!(left.access_token, "access-2");
    assert_eq!(right.access_token, "access-2");
    assert_eq!(
        received.lock().unwrap().len(),
        1,
        "the second holder must observe the first's rotation, not spend another exchange"
    );
    // Exactly one of the two adopted what the other wrote.
    let adopted = "adopted a newer credential from disk without spending an exchange";
    let rungs = [
        first.last_recovery(SubscriptionProvider::Claude),
        second.last_recovery(SubscriptionProvider::Claude),
    ];
    assert_eq!(
        rungs.iter().filter(|rung| **rung == Some(adopted)).count(),
        1,
        "{rungs:?}"
    );
    assert!(
        crate::credential_store::lock_path_for(&home.path().join(".credentials.json")).exists(),
        "the sidecar lock is what serialised them"
    );
}

/// An interrupted write must leave the previous credential intact: the router
/// writes to a temporary file and renames, so a process killed mid-write leaves
/// the old credential readable and a stray temporary behind, never a truncated
/// credential file.
#[test]
fn an_interrupted_write_leaves_the_previous_credential_intact() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());

    // What a crash between "write the temporary" and "rename it over" leaves:
    // the same `.{name}.{pid}.{uuid}.tmp` shape `atomic_write_owner_only` uses.
    let interrupted = home.path().join("..credentials.json.4242.deadbeef.tmp");
    std::fs::write(&interrupted, b"{\"claudeAiOauth\":{\"accessTok").expect("partial write");

    let intact = CredentialStore::reload(&reader).expect("the previous credential survives");
    assert_eq!(intact.access_token, "access-1");
    assert_eq!(intact.refresh_token.as_deref(), Some("refresh-1"));

    // The next write still lands, and lands whole.
    CredentialStore::persist(&reader, &token("access-2", "refresh-2", NOW_MS + 3_600_000))
        .expect("persist");
    let replaced = CredentialStore::reload(&reader).expect("credential");
    assert_eq!(replaced.refresh_token.as_deref(), Some("refresh-2"));
    let raw = std::fs::read_to_string(home.path().join(".credentials.json")).expect("read");
    let document: serde_json::Value = serde_json::from_str(&raw).expect("whole document");
    // Vendor fields this crate does not model are preserved by the rewrite.
    assert_eq!(document["claudeAiOauth"]["scopes"][0], "user:inference");

    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt as _;
        let mode = std::fs::metadata(home.path().join(".credentials.json"))
            .expect("metadata")
            .permissions()
            .mode();
        assert_eq!(mode & 0o777, 0o600, "credentials stay owner-only");
    }
}

/// The rotation has to survive a restart: a refresh that only ever lived in
/// memory left a spent link on disk for the next process start to replay, which
/// is what made the failure self-perpetuating.
#[tokio::test]
async fn a_rotated_refresh_token_survives_a_process_restart() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());
    let (url, received, server) = scripted_endpoint(
        vec![Answer::new(
            200,
            r#"{"access_token":"access-2","refresh_token":"refresh-2","expires_in":3600}"#,
        )],
        |_| {},
    )
    .await;

    let client = reqwest::Client::new();
    let before_restart = TokenCache::new();
    before_restart.register_reader("primary", &reader);
    let fresh = before_restart
        .get_fresh_for_at(
            &client,
            &url,
            SubscriptionProvider::Claude,
            "primary",
            token("access-1", "refresh-1", NOW_MS - 1),
            NOW_MS,
        )
        .await;
    assert_eq!(fresh.access_token, "access-2");
    drop(before_restart);
    drain(server).await;

    // A fresh process reads the credential file, not the old cache.
    let after_restart = TokenCache::new();
    after_restart.register_reader("primary", &reader);
    let from_disk = reader.read_token().expect("credential on disk");
    assert_eq!(from_disk.refresh_token.as_deref(), Some("refresh-2"));
    let reused = after_restart
        .get_fresh_for_at(
            &client,
            &url,
            SubscriptionProvider::Claude,
            "primary",
            from_disk,
            NOW_MS + 1_000,
        )
        .await;
    assert_eq!(reused.access_token, "access-2");
    assert_eq!(
        received.lock().unwrap().len(),
        1,
        "the restarted process must not need another exchange"
    );
}

/// Claude's token endpoint attests the client from the request itself, so the
/// exchange has to look like the one the vendor client sends.
#[tokio::test]
async fn the_claude_exchange_carries_the_vendor_client_headers() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());
    let (url, received, server) = scripted_endpoint(
        vec![Answer::new(
            200,
            r#"{"access_token":"access-2","refresh_token":"refresh-2","expires_in":3600}"#,
        )],
        |_| {},
    )
    .await;

    let cache = TokenCache::new();
    cache.register_reader("primary", &reader);
    cache
        .get_fresh_for_at(
            &reqwest::Client::new(),
            &url,
            SubscriptionProvider::Claude,
            "primary",
            token("access-1", "refresh-1", NOW_MS - 1),
            NOW_MS,
        )
        .await;
    drain(server).await;

    let head = {
        let requests = received.lock().unwrap();
        requests[0].0.to_ascii_lowercase()
    };
    assert!(head.contains("content-type: application/json"), "{head}");
    assert!(
        head.contains(&format!(
            "anthropic-beta: {}",
            crate::proxy::OAUTH_BETA_FLAG
        )),
        "{head}"
    );
    assert!(
        head.contains(&super::super::CLAUDE_OAUTH_USER_AGENT.to_ascii_lowercase()),
        "{head}"
    );
}

/// The last rung before an operator is bothered: every direct exchange was
/// rejected, so the vendor's own client is asked to rotate the chain and the
/// router adopts what it wrote.
#[cfg(unix)]
#[tokio::test]
async fn the_vendor_client_rotates_a_chain_the_router_could_not() {
    use std::os::unix::fs::PermissionsExt as _;

    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());
    // Every exchange the router can make is rejected, so the ladder has nothing
    // left but the vendor client.
    let (url, received, server) =
        scripted_endpoint(vec![Answer::new(400, INVALID_GRANT)], |_| {}).await;

    let stub = home.path().join("stub-vendor-cli");
    std::fs::write(
        &stub,
        format!(
            "#!/bin/sh\ncat > \"$CLAUDE_CONFIG_DIR/.credentials.json\" <<'JSON'\n{}\nJSON\n",
            serde_json::json!({
                "claudeAiOauth": {
                    "accessToken": "access-from-vendor",
                    "refreshToken": "refresh-from-vendor",
                    "expiresAt": NOW_MS + 3_600_000,
                    "scopes": ["user:inference"],
                }
            })
        ),
    )
    .expect("write stub");
    std::fs::set_permissions(&stub, std::fs::Permissions::from_mode(0o755)).expect("chmod stub");

    let cache = TokenCache::new();
    cache.register_reader("primary", &reader);
    cache.register_vendor_cli(
        "primary",
        Arc::new(crate::vendor_cli_refresh::VendorCli::claude(
            &stub,
            home.path(),
        )),
    );
    let fresh = cache
        .get_fresh_for_at(
            &reqwest::Client::new(),
            &url,
            SubscriptionProvider::Claude,
            "primary",
            token("access-1", "refresh-1", NOW_MS - 1),
            NOW_MS,
        )
        .await;
    drain(server).await;

    assert_eq!(fresh.access_token, "access-from-vendor");
    assert_eq!(
        received.lock().unwrap().len(),
        1,
        "the router stops exchanging once the client hands back a usable token"
    );
    assert_eq!(cache.last_refresh_error(SubscriptionProvider::Claude), None);
    assert_eq!(
        cache.last_recovery(SubscriptionProvider::Claude),
        Some(
            "every direct exchange was rejected; the vendor client rotated the chain and its \
             credential was adopted"
        )
    );
}

/// The vendor client sometimes leaves a rotated *refresh* token behind without
/// a usable access token — it wrote the chain forward and then failed, or its
/// access token is already spent. That link is still worth an exchange.
#[cfg(unix)]
#[tokio::test]
async fn a_link_the_vendor_client_left_behind_is_exchanged() {
    use std::os::unix::fs::PermissionsExt as _;

    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());
    let (url, received, server) = scripted_endpoint(
        vec![
            Answer::new(400, INVALID_GRANT),
            Answer::new(
                200,
                r#"{"access_token":"access-4","refresh_token":"refresh-4","expires_in":3600}"#,
            ),
        ],
        |_| {},
    )
    .await;

    // Expired access token, newer refresh link: nothing to serve with, but
    // something to exchange.
    let stub = home.path().join("stub-vendor-cli");
    std::fs::write(
        &stub,
        format!(
            "#!/bin/sh\ncat > \"$CLAUDE_CONFIG_DIR/.credentials.json\" <<'JSON'\n{}\nJSON\n",
            serde_json::json!({
                "claudeAiOauth": {
                    "accessToken": "access-3-expired",
                    "refreshToken": "refresh-3",
                    "expiresAt": NOW_MS - 1,
                    "scopes": ["user:inference"],
                }
            })
        ),
    )
    .expect("write stub");
    std::fs::set_permissions(&stub, std::fs::Permissions::from_mode(0o755)).expect("chmod stub");

    let cache = TokenCache::new();
    cache.register_reader("primary", &reader);
    cache.register_vendor_cli(
        "primary",
        Arc::new(crate::vendor_cli_refresh::VendorCli::claude(
            &stub,
            home.path(),
        )),
    );
    let fresh = cache
        .get_fresh_for_at(
            &reqwest::Client::new(),
            &url,
            SubscriptionProvider::Claude,
            "primary",
            token("access-1", "refresh-1", NOW_MS - 1),
            NOW_MS,
        )
        .await;
    drain(server).await;

    assert_eq!(fresh.access_token, "access-4");
    let spent: Vec<String> = {
        let requests = received.lock().unwrap();
        requests
            .iter()
            .map(|(_, body)| {
                serde_json::from_str::<serde_json::Value>(body).expect("json body")["refresh_token"]
                    .as_str()
                    .unwrap_or_default()
                    .to_string()
            })
            .collect()
    };
    assert_eq!(spent, vec!["refresh-1", "refresh-3"]);
    // And the exchange the client's link earned is written back.
    assert_eq!(
        CredentialStore::reload(&reader)
            .expect("credential")
            .refresh_token
            .as_deref(),
        Some("refresh-4")
    );
}

/// When even the newer link on disk is rejected, the whole token family really
/// is gone — and the message has to say that it checked, rather than repeat the
/// same advice it would have given without looking.
#[tokio::test]
async fn a_family_that_is_revoked_wholesale_says_the_newer_link_was_tried_too() {
    let home = tempfile::tempdir().expect("temp home");
    seed_credential(home.path(), "access-1", "refresh-1", NOW_MS - 1);
    let reader = SubscriptionReader::new(SubscriptionProvider::Claude, home.path());

    let rotated_home = home.path().to_path_buf();
    let (url, _received, server) = scripted_endpoint(
        vec![
            Answer::new(400, INVALID_GRANT),
            Answer::new(400, INVALID_GRANT),
        ],
        move |index| {
            if index == 0 {
                seed_credential(&rotated_home, "access-2", "refresh-2", NOW_MS - 1);
            }
        },
    )
    .await;

    let cache = TokenCache::new();
    cache.register_reader("primary", &reader);
    cache
        .get_fresh_for_at(
            &reqwest::Client::new(),
            &url,
            SubscriptionProvider::Claude,
            "primary",
            token("access-1", "refresh-1", NOW_MS - 1),
            NOW_MS,
        )
        .await;
    drain(server).await;

    let reported = cache
        .last_refresh_error(SubscriptionProvider::Claude)
        .expect("a terminal rejection is reported");
    assert!(
        reported.contains("was rejected as well"),
        "the message must say the newer link was tried too: {reported}"
    );
    assert!(
        reported.contains("token family has been revoked"),
        "{reported}"
    );
    assert!(reported.contains(".credentials.json"), "{reported}");
    assert!(
        reported.contains("link-assistant-router auth claude"),
        "{reported}"
    );
}