mbx-cache-core 0.10.1

Unstable CAS, transport, and cache-agent primitives for mbx embedders
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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
use super::*;
use crate::*;

/// An S3 error document, as a store would send one.
fn s3_error_body(code: &str) -> String {
    format!("<?xml version=\"1.0\"?><Error><Code>{code}</Code><Message>no</Message></Error>")
}

fn credentials() -> S3Credentials {
    S3Credentials {
        access_key_id: "AKIDEXAMPLE".into(),
        secret_access_key: "wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY".into(),
        session_token: None,
    }
}

fn config(server: &mockito::ServerGuard) -> S3RemoteCacheConfig {
    S3RemoteCacheConfig {
        bucket: "cache-bucket".into(),
        prefix: String::new(),
        namespace: "acme".into(),
        region: "us-east-1".into(),
        endpoint: Some(server.url().parse().unwrap()),
        force_path_style: None,
        conditional_writes: S3ConditionalWrites::Auto,
        credentials: credentials(),
        connect_timeout: Duration::from_secs(1),
        read_timeout: Duration::from_secs(1),
        download_timeout: Duration::from_secs(1),
        retries: 0,
    }
}

fn test_store(server: &mockito::ServerGuard) -> S3RemoteCache {
    S3RemoteCache::new(config(server)).unwrap()
}

fn test_store_with(
    server: &mockito::ServerGuard,
    download_timeout: Duration,
    retries: i64,
) -> S3RemoteCache {
    S3RemoteCache::new(S3RemoteCacheConfig {
        download_timeout,
        retries,
        ..config(server)
    })
    .unwrap()
}

/// The key a blob of these bytes lands on, under the test configuration.
fn blob_path(digest: &CacheDigest) -> String {
    format!(
        "/cache-bucket/acme/v1/blobs/{}/{}/{}",
        digest.algorithm, digest.hash, digest.size
    )
}

#[tokio::test]
async fn a_blob_round_trips_through_its_content_addressed_key() {
    let mut server = mockito::Server::new_async().await;
    let contents = b"a cached object file";
    let digest = CacheDigest::blake3(contents);
    let request = server
        .mock("GET", blob_path(&digest).as_str())
        .match_header("x-amz-content-sha256", mockito::Matcher::Any)
        .match_header("x-amz-date", mockito::Matcher::Any)
        .match_header(
            "authorization",
            mockito::Matcher::Regex(
                "^AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/[0-9]{8}/us-east-1/s3/aws4_request, \
                 SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=[0-9a-f]{64}$"
                    .into(),
            ),
        )
        .with_status(200)
        .with_body(contents)
        .expect(1)
        .create_async()
        .await;
    let staging = tempfile::tempdir().unwrap();

    let file = test_store(&server)
        .get_blob_file(&digest, staging.path())
        .await
        .unwrap();

    assert_eq!(fs::read(file.path()).unwrap(), contents);
    request.assert_async().await;
}

#[tokio::test]
async fn a_blob_that_fails_verification_is_refused() {
    let mut server = mockito::Server::new_async().await;
    let digest = CacheDigest::blake3(b"what was asked for");
    // The same length as what was asked for, so the size guard cannot reject it
    // first and verification is what does.
    server
        .mock("GET", blob_path(&digest).as_str())
        .with_status(200)
        .with_body(b"something else!!!!")
        .create_async()
        .await;
    let staging = tempfile::tempdir().unwrap();

    let error = test_store(&server)
        .get_blob_file(&digest, staging.path())
        .await
        .unwrap_err();

    assert!(error.to_string().contains("failed digest verification"));
}

#[tokio::test]
async fn a_blob_larger_than_its_digest_stops_being_read() {
    let mut server = mockito::Server::new_async().await;
    let digest = CacheDigest::blake3(b"small");
    server
        .mock("GET", blob_path(&digest).as_str())
        .with_status(200)
        .with_body(vec![b'x'; 4096])
        .create_async()
        .await;
    let staging = tempfile::tempdir().unwrap();

    let error = test_store(&server)
        .get_blob_file(&digest, staging.path())
        .await
        .unwrap_err();

    assert!(
        error
            .to_string()
            .contains("exceeded the size of its digest")
    );
}

#[tokio::test]
async fn storing_a_blob_writes_it_create_only() {
    let mut server = mockito::Server::new_async().await;
    let contents = b"a published object";
    let digest = CacheDigest::blake3(contents);
    let request = server
        .mock("PUT", blob_path(&digest).as_str())
        .match_header("if-none-match", "*")
        .match_body(contents.to_vec())
        .with_status(200)
        .expect(1)
        .create_async()
        .await;

    test_store(&server)
        .put_blob(&BlobUpload {
            digest,
            source: BlobSource::Bytes(contents.to_vec()),
        })
        .await
        .unwrap();

    request.assert_async().await;
}

#[tokio::test]
async fn a_blob_the_store_already_holds_is_not_an_error() {
    let mut server = mockito::Server::new_async().await;
    let contents = b"already stored";
    let digest = CacheDigest::blake3(contents);
    server
        .mock("PUT", blob_path(&digest).as_str())
        .with_status(412)
        .with_body(s3_error_body("PreconditionFailed"))
        .create_async()
        .await;

    // The key is the content address of these bytes, so an object already
    // sitting there holds exactly what this upload would have written.
    test_store(&server)
        .put_blob(&BlobUpload {
            digest,
            source: BlobSource::Bytes(contents.to_vec()),
        })
        .await
        .unwrap();
}

#[tokio::test]
async fn a_conflicting_conditional_write_is_retried() {
    let mut server = mockito::Server::new_async().await;
    let contents = b"contended object";
    let digest = CacheDigest::blake3(contents);
    let conflict = server
        .mock("PUT", blob_path(&digest).as_str())
        .with_status(409)
        .with_body(s3_error_body("ConditionalRequestConflict"))
        .expect(1)
        .create_async()
        .await;
    let stored = server
        .mock("PUT", blob_path(&digest).as_str())
        .with_status(200)
        .expect(1)
        .create_async()
        .await;
    let mut settings = config(&server);
    settings.retries = 1;

    S3RemoteCache::new(settings)
        .unwrap()
        .put_blob(&BlobUpload {
            digest,
            source: BlobSource::Bytes(contents.to_vec()),
        })
        .await
        .unwrap();

    conflict.assert_async().await;
    stored.assert_async().await;
}

#[tokio::test]
async fn a_file_backed_blob_is_streamed_with_its_length() {
    let mut server = mockito::Server::new_async().await;
    let contents = vec![b'z'; 128 * 1024];
    let digest = CacheDigest::blake3(&contents);
    let request = server
        .mock("PUT", blob_path(&digest).as_str())
        .match_header("content-length", contents.len().to_string().as_str())
        // A streamed body is not hashed, so the signature covers everything
        // about the request except bytes TLS and the content address stand
        // behind.
        .match_header("x-amz-content-sha256", "UNSIGNED-PAYLOAD")
        .match_body(contents.to_vec())
        .with_status(200)
        .expect(1)
        .create_async()
        .await;
    let file = tempfile::NamedTempFile::new().unwrap();
    fs::write(file.path(), &contents).unwrap();

    test_store(&server)
        .put_blob(&BlobUpload {
            digest,
            source: BlobSource::Path(file.path().to_path_buf()),
        })
        .await
        .unwrap();

    request.assert_async().await;
}

#[tokio::test]
async fn a_missing_action_result_is_a_miss_rather_than_an_error() {
    let mut server = mockito::Server::new_async().await;
    let action = CacheDigest::blake3(b"an action");
    server
        .mock(
            "GET",
            format!(
                "/cache-bucket/acme/v1/action-results/blake3/{}/{}",
                action.hash, action.size
            )
            .as_str(),
        )
        .with_status(404)
        .with_body(s3_error_body("NoSuchKey"))
        .create_async()
        .await;

    assert!(
        test_store(&server)
            .get_action_result(&action)
            .await
            .unwrap()
            .is_none()
    );
}

#[tokio::test]
async fn an_action_result_naming_another_action_is_refused() {
    let mut server = mockito::Server::new_async().await;
    let action = CacheDigest::blake3(b"an action");
    let other = CacheDigest::blake3(b"a different action");
    server
        .mock(
            "GET",
            format!(
                "/cache-bucket/acme/v1/action-results/blake3/{}/{}",
                action.hash, action.size
            )
            .as_str(),
        )
        .with_status(200)
        .with_body(
            serde_json::to_vec(&RemoteActionResult {
                action: other,
                metadata: None,
                output_root: None,
                version: 1,
            })
            .unwrap(),
        )
        .create_async()
        .await;

    let error = test_store(&server)
        .get_action_result(&action)
        .await
        .unwrap_err();

    assert!(
        error
            .to_string()
            .contains("does not match requested action")
    );
}

/// The key a task action manifest lands on.
fn manifest_path(key: &CacheDigest) -> String {
    format!(
        "/cache-bucket/acme/v1/action-manifests/blake3/{}/{}",
        key.hash, key.size
    )
}

#[tokio::test]
async fn a_manifest_carries_the_entity_tag_its_update_must_send_back() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a task");
    server
        .mock("GET", manifest_path(&key).as_str())
        .with_status(200)
        .with_header("etag", "\"d41d8cd98f00b204e9800998ecf8427e\"")
        .with_body("{}")
        .create_async()
        .await;
    let update = server
        .mock("PUT", manifest_path(&key).as_str())
        .match_header("if-match", "\"d41d8cd98f00b204e9800998ecf8427e\"")
        .with_status(200)
        .expect(1)
        .create_async()
        .await;
    let store = test_store(&server);

    let manifest = store.get_action_manifest(&key).await.unwrap().unwrap();
    assert_eq!(manifest.etag, "d41d8cd98f00b204e9800998ecf8427e");

    let outcome = store
        .put_action_manifest(&key, b"{}", Some(&manifest.etag))
        .await
        .unwrap();

    assert_eq!(outcome, ManifestPutOutcome::Stored);
    update.assert_async().await;
}

#[tokio::test]
async fn a_manifest_that_moved_reports_a_precondition_failure() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a contended task");
    server
        .mock("PUT", manifest_path(&key).as_str())
        .match_header("if-match", "\"stale\"")
        .with_status(412)
        .with_body(s3_error_body("PreconditionFailed"))
        .create_async()
        .await;

    let outcome = test_store(&server)
        .put_action_manifest(&key, b"{}", Some("stale"))
        .await
        .unwrap();

    // The agent answers this by re-reading, merging, and trying again, which is
    // what keeps a concurrent writer's predictions.
    assert_eq!(outcome, ManifestPutOutcome::PreconditionFailed);
}

#[tokio::test]
async fn a_first_manifest_is_written_create_only() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a new task");
    let request = server
        .mock("PUT", manifest_path(&key).as_str())
        .match_header("if-none-match", "*")
        .with_status(200)
        .expect(1)
        .create_async()
        .await;

    let outcome = test_store(&server)
        .put_action_manifest(&key, b"{}", None)
        .await
        .unwrap();

    assert_eq!(outcome, ManifestPutOutcome::Stored);
    request.assert_async().await;
}

#[tokio::test]
async fn a_retryable_status_is_retried() {
    let mut server = mockito::Server::new_async().await;
    let contents = b"an object the store was too busy for";
    let digest = CacheDigest::blake3(contents);
    // S3 answers 503 SlowDown for a prefix under load and asks the client to
    // try again. The protocol backend retries these; so must this one.
    let busy = server
        .mock("PUT", blob_path(&digest).as_str())
        .with_status(503)
        .with_body(s3_error_body("SlowDown"))
        .expect(1)
        .create_async()
        .await;
    let stored = server
        .mock("PUT", blob_path(&digest).as_str())
        .with_status(200)
        .expect(1)
        .create_async()
        .await;
    let mut settings = config(&server);
    settings.retries = 1;

    S3RemoteCache::new(settings)
        .unwrap()
        .put_blob(&BlobUpload {
            digest,
            source: BlobSource::Bytes(contents.to_vec()),
        })
        .await
        .unwrap();

    busy.assert_async().await;
    stored.assert_async().await;
}

#[tokio::test]
async fn a_store_that_does_not_implement_something_else_is_not_retried_forever() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a task");
    // 501 is not transient: a store that does not implement something will not
    // implement it a moment later.
    let refusals = server
        .mock("PUT", manifest_path(&key).as_str())
        .with_status(501)
        .with_body(s3_error_body("NotImplemented"))
        .expect(2)
        .create_async()
        .await;
    let mut settings = config(&server);
    settings.retries = 3;

    let error = S3RemoteCache::new(settings)
        .unwrap()
        .put_action_manifest(&key, b"{}", None)
        .await
        .unwrap_err();

    // One conditional attempt, one unconditional retry, and no more.
    refusals.assert_async().await;
    assert!(error.to_string().contains("failed to update"));
}

#[tokio::test]
async fn a_store_without_conditional_writes_is_used_without_them() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a task");
    let refused = server
        .mock("PUT", manifest_path(&key).as_str())
        .match_header("if-none-match", "*")
        .with_status(501)
        .with_body(s3_error_body("NotImplemented"))
        .expect(1)
        .create_async()
        .await;
    let unconditional = server
        .mock("PUT", manifest_path(&key).as_str())
        .match_header("if-none-match", mockito::Matcher::Missing)
        .with_status(200)
        .expect(2)
        .create_async()
        .await;
    let store = test_store(&server);

    assert_eq!(
        store.put_action_manifest(&key, b"{}", None).await.unwrap(),
        ManifestPutOutcome::Stored
    );
    // Having learned it once, the store stops asking for the rest of the
    // session rather than spending a refused round trip on every write.
    assert_eq!(
        store.put_action_manifest(&key, b"{}", None).await.unwrap(),
        ManifestPutOutcome::Stored
    );

    refused.assert_async().await;
    unconditional.assert_async().await;
}

#[tokio::test]
async fn conditionals_stay_on_when_dropping_them_does_not_help() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a task");
    // An intermediary answers 501 for a reason that has nothing to do with the
    // condition, so the unconditional retry fails too. Concluding the store
    // cannot do conditional writes would turn every later manifest update into
    // a last-writer-wins one on no evidence.
    server
        .mock("PUT", manifest_path(&key).as_str())
        .with_status(501)
        .with_body(s3_error_body("NotImplemented"))
        .expect_at_least(2)
        .create_async()
        .await;
    let store = test_store(&server);

    assert!(store.put_action_manifest(&key, b"{}", None).await.is_err());

    assert!(store.conditionals_enabled());
}

#[tokio::test]
async fn a_store_that_dislikes_a_request_is_not_mistaken_for_one_without_conditionals() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a task");
    server
        .mock("PUT", manifest_path(&key).as_str())
        .with_status(400)
        .with_body(s3_error_body("InvalidRequest"))
        .create_async()
        .await;
    let store = test_store(&server);

    let error = store
        .put_action_manifest(&key, b"{}", None)
        .await
        .unwrap_err();

    assert!(error.to_string().contains("InvalidRequest"));
    assert!(store.conditionals_enabled());
}

#[tokio::test]
async fn requiring_conditional_writes_refuses_a_store_without_them() {
    let mut server = mockito::Server::new_async().await;
    let key = CacheDigest::blake3(b"a task");
    server
        .mock("PUT", manifest_path(&key).as_str())
        .with_status(501)
        .with_body(s3_error_body("NotImplemented"))
        .create_async()
        .await;
    let mut settings = config(&server);
    settings.conditional_writes = S3ConditionalWrites::Required;

    let error = S3RemoteCache::new(settings)
        .unwrap()
        .put_action_manifest(&key, b"{}", None)
        .await
        .unwrap_err();

    assert!(
        error
            .to_string()
            .contains("conditional writes are required")
    );
}

#[tokio::test]
async fn a_reachable_bucket_passes_the_connection_probe() {
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("GET", "/cache-bucket/acme/v1/connectivity-probe")
        .with_status(404)
        .expect(1)
        .create_async()
        .await;

    // A bucket that answers at all has proved the endpoint, the credentials,
    // and its own existence. Whether this key is present says nothing.
    test_store(&server).check_connection().await.unwrap();

    request.assert_async().await;
}

#[tokio::test]
async fn rejected_credentials_are_named_in_the_connection_probe() {
    let mut server = mockito::Server::new_async().await;
    server
        .mock("GET", "/cache-bucket/acme/v1/connectivity-probe")
        .with_status(403)
        .with_body(s3_error_body("SignatureDoesNotMatch"))
        .create_async()
        .await;

    let error = test_store(&server).check_connection().await.unwrap_err();

    assert!(error.to_string().contains("AWS_ACCESS_KEY_ID"));
}

#[tokio::test]
async fn a_least_privilege_policy_still_passes_the_connection_probe() {
    let mut server = mockito::Server::new_async().await;
    // Without s3:ListBucket, S3 refuses a read of an absent object rather than
    // reporting it absent -- and the probe key is never written. A working
    // configuration must not be reported as broken credentials.
    server
        .mock("GET", "/cache-bucket/acme/v1/connectivity-probe")
        .with_status(403)
        .with_body(s3_error_body("AccessDenied"))
        .create_async()
        .await;

    test_store(&server).check_connection().await.unwrap();
}

#[tokio::test]
async fn a_refused_read_is_a_miss_rather_than_a_failed_build() {
    let mut server = mockito::Server::new_async().await;
    let action = CacheDigest::blake3(b"an action");
    let path = format!(
        "/cache-bucket/acme/v1/action-results/blake3/{}/{}",
        action.hash, action.size
    );
    server
        .mock("GET", path.as_str())
        .with_status(403)
        .with_body(s3_error_body("AccessDenied"))
        .create_async()
        .await;

    // Every cold lookup under a least-privilege policy arrives this way, so
    // reporting them as errors would make such a policy unusable.
    assert!(
        test_store(&server)
            .get_action_result(&action)
            .await
            .unwrap()
            .is_none()
    );
}

#[tokio::test]
async fn credentials_s3_itself_rejected_are_not_mistaken_for_a_miss() {
    let mut server = mockito::Server::new_async().await;
    let action = CacheDigest::blake3(b"an action");
    let path = format!(
        "/cache-bucket/acme/v1/action-results/blake3/{}/{}",
        action.hash, action.size
    );
    server
        .mock("GET", path.as_str())
        .with_status(403)
        .with_body(s3_error_body("InvalidAccessKeyId"))
        .create_async()
        .await;

    // A request that never authenticated says nothing about the object, and
    // swallowing it would leave a permanently cold cache with no explanation.
    let error = test_store(&server)
        .get_action_result(&action)
        .await
        .unwrap_err();

    assert!(error.to_string().contains("InvalidAccessKeyId"));
}

#[tokio::test]
async fn a_bucket_in_another_region_says_which_one() {
    let mut server = mockito::Server::new_async().await;
    server
        .mock("GET", "/cache-bucket/acme/v1/connectivity-probe")
        .with_status(301)
        .with_header("x-amz-bucket-region", "eu-west-1")
        .create_async()
        .await;

    let error = test_store(&server).check_connection().await.unwrap_err();

    assert!(error.to_string().contains("eu-west-1"));
}

#[tokio::test]
async fn temporary_credentials_send_their_session_token() {
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("GET", "/cache-bucket/acme/v1/connectivity-probe")
        .match_header("x-amz-security-token", "session-token")
        .with_status(200)
        .expect(1)
        .create_async()
        .await;
    let mut settings = config(&server);
    settings.credentials.session_token = Some("session-token".into());

    S3RemoteCache::new(settings)
        .unwrap()
        .check_connection()
        .await
        .unwrap();

    request.assert_async().await;
}

#[tokio::test]
async fn extensions_a_bucket_cannot_serve_report_themselves_absent() {
    let server = mockito::Server::new_async().await;
    let store = test_store(&server);
    let digest = CacheDigest::blake3(b"anything");
    let staging = tempfile::tempdir().unwrap();

    // Reporting absence is what routes the agent and the upload queue to the
    // per-object requests every version of the protocol has made.
    assert!(store.action_batch_limit().await.unwrap().is_none());
    assert!(store.blob_pack_upload_limits().await.unwrap().is_none());
    assert!(
        store
            .get_action_results(std::slice::from_ref(&digest))
            .await
            .unwrap()
            .is_none()
    );
    assert!(
        store
            .get_blob_pack(std::slice::from_ref(&digest), staging.path())
            .await
            .unwrap()
            .is_none()
    );
    assert!(
        store
            .put_blob_pack(&[BlobUpload {
                digest,
                source: BlobSource::Bytes(Vec::new()),
            }])
            .await
            .unwrap()
            .is_none()
    );

    // An empty request is answered rather than declined, matching the protocol
    // client, so a caller with nothing to do does not fall back for no reason.
    assert_eq!(
        store.get_action_results(&[]).await.unwrap(),
        Some(Vec::new())
    );
    assert!(store.put_blob_pack(&[]).await.unwrap().is_some());
}

#[test]
fn buckets_are_addressed_by_host_on_aws_and_by_path_elsewhere() {
    let addressed = |bucket: &str, endpoint: Option<&str>, force: Option<bool>| {
        base_url(&S3RemoteCacheConfig {
            bucket: bucket.into(),
            endpoint: endpoint.map(|endpoint| endpoint.parse().unwrap()),
            force_path_style: force,
            ..S3RemoteCacheConfig {
                bucket: bucket.into(),
                prefix: String::new(),
                namespace: "acme".into(),
                region: "us-west-2".into(),
                endpoint: None,
                force_path_style: None,
                conditional_writes: S3ConditionalWrites::Auto,
                credentials: credentials(),
                connect_timeout: Duration::from_secs(1),
                read_timeout: Duration::from_secs(1),
                download_timeout: Duration::from_secs(1),
                retries: 0,
            }
        })
        .unwrap()
        .to_string()
    };

    assert_eq!(
        addressed("cache", None, None),
        "https://cache.s3.us-west-2.amazonaws.com/"
    );
    // A dot in the name is not covered by the wildcard certificate that makes
    // host addressing work, so such a bucket is addressed by path.
    assert_eq!(
        addressed("cache.example.com", None, None),
        "https://s3.us-west-2.amazonaws.com/cache.example.com/"
    );
    assert_eq!(
        addressed("cache", None, Some(true)),
        "https://s3.us-west-2.amazonaws.com/cache/"
    );
    assert_eq!(
        addressed("cache", Some("http://127.0.0.1:9000"), None),
        "http://127.0.0.1:9000/cache/"
    );
    assert_eq!(
        addressed(
            "cache",
            Some("https://account.r2.cloudflarestorage.com"),
            None
        ),
        "https://account.r2.cloudflarestorage.com/cache/"
    );
    assert_eq!(
        addressed("cache", Some("https://store.example.com"), Some(false)),
        "https://cache.store.example.com/"
    );
    // An endpoint's own path survives being addressed by host.
    assert_eq!(
        addressed("cache", Some("https://gateway.example.com/s3"), Some(false)),
        "https://cache.gateway.example.com/s3/"
    );
    assert_eq!(
        addressed("cache", Some("https://gateway.example.com/s3"), None),
        "https://gateway.example.com/s3/cache/"
    );
}

#[test]
fn keys_are_laid_out_under_the_prefix_namespace_and_layout_version() {
    let server = mockito::Server::new();
    let mut settings = config(&server);
    settings.prefix = "/teams/backend/".into();
    let store = S3RemoteCache::new(settings).unwrap();
    let digest = CacheDigest {
        algorithm: "blake3".into(),
        hash: "a".repeat(64),
        size: 7,
    };

    assert!(
        store
            .object_url(ObjectKind::Blob, &digest)
            .unwrap()
            .path()
            .ends_with(&format!(
                "/cache-bucket/teams/backend/acme/v1/blobs/blake3/{}/7",
                digest.hash
            ))
    );
}

#[test]
fn a_namespace_that_could_escape_its_prefix_is_refused() {
    let server = mockito::Server::new();
    let refused = |namespace: &str| {
        let mut settings = config(&server);
        settings.namespace = namespace.into();
        match S3RemoteCache::new(settings) {
            Err(error) => error.to_string(),
            Ok(_) => panic!("namespace {namespace:?} should have been refused"),
        }
    };

    // The protocol carries the namespace in a header a server interprets. In a
    // bucket it is part of the key, so it has to stay inside its own prefix.
    assert!(refused("../other").contains("relative path segment"));
    assert!(refused("acme//backend").contains("empty path segment"));
    assert!(refused("/acme").contains("must not start or end with a slash"));
    assert!(refused("").contains("must not be empty"));
    assert!(refused("acme backend").contains("must use only letters"));
    // A namespace naming more than one level is ordinary and stays allowed.
    let mut settings = config(&server);
    settings.namespace = "acme/backend".into();
    assert!(S3RemoteCache::new(settings).map(drop).is_ok());
}

#[test]
fn error_codes_are_read_out_of_an_s3_error_document() {
    assert_eq!(error_code(&s3_error_body("NoSuchKey")), Some("NoSuchKey"));
    assert_eq!(error_code("not xml at all"), None);
    assert_eq!(error_code("<Error><Code></Code></Error>"), None);
    // A code at the very end of the document is still found: nothing may trim
    // the tail off a body before scanning it.
    assert_eq!(
        error_code("<Code>AccessDenied</Code>"),
        Some("AccessDenied")
    );
    assert_eq!(error_code(&"é".repeat(16 * 1024)), None);
}

/// The bucket backend reads `download_timeout` exactly as the protocol backend
/// does: a deadline for the whole download, not a budget each attempt gets
/// afresh. A `503` is what a store sends for a prefix under load and is
/// retryable, so four retries would otherwise sleep at least
/// 100ms + 500ms + 2s + 7.5s; returning well inside that shows the deadline cut
/// the retry loop short instead of restarting with every attempt.
#[tokio::test]
async fn blob_download_timeout_spans_retries_rather_than_one_attempt() {
    let mut server = mockito::Server::new_async().await;
    let digest = CacheDigest::blake3(b"retried blob");
    let request = server
        .mock("GET", blob_path(&digest).as_str())
        .with_status(503)
        .with_body(s3_error_body("SlowDown"))
        .expect_at_least(1)
        .create_async()
        .await;
    let store = test_store_with(&server, Duration::from_millis(200), 4);
    let staging = tempfile::tempdir().unwrap();

    let started = Instant::now();
    let error = store
        .get_blob_file(&digest, staging.path())
        .await
        .err()
        .unwrap();
    let elapsed = started.elapsed();

    assert!(
        error
            .to_string()
            .contains("exceeded its 200ms budget across all attempts"),
        "{error}"
    );
    assert!(elapsed < Duration::from_secs(5), "took {elapsed:?}");
    request.assert_async().await;
}

/// The control for the test above: the same store, given a budget large enough
/// to cover the whole retry loop, spends every retry and fails with the store's
/// own error rather than a timeout.
#[tokio::test]
async fn transient_failures_exhaust_retries_within_a_generous_deadline() {
    let mut server = mockito::Server::new_async().await;
    let digest = CacheDigest::blake3(b"retried blob");
    let request = server
        .mock("GET", blob_path(&digest).as_str())
        .with_status(503)
        .with_body(s3_error_body("SlowDown"))
        .expect(2)
        .create_async()
        .await;
    let store = test_store_with(&server, Duration::from_secs(30), 1);
    let staging = tempfile::tempdir().unwrap();

    let error = store
        .get_blob_file(&digest, staging.path())
        .await
        .err()
        .unwrap();

    assert!(!error.to_string().contains("budget"), "{error}");
    request.assert_async().await;
}