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
#![deny(missing_docs)]
#![warn(clippy::all)]
use {
fidl::endpoints::ServerEnd,
fidl_fuchsia_io as fio, fidl_fuchsia_pkg as fpkg,
fuchsia_hash::{Hash, ParseHashError},
fuchsia_zircon::{self as zx, AsHandleRef as _, Status},
futures::{stream, StreamExt as _},
std::{collections::HashSet, sync::Arc},
thiserror::Error,
tracing::warn,
};
pub mod blob;
pub mod mock;
pub use mock::Mock;
#[derive(Debug, Error)]
#[allow(missing_docs)]
pub enum BlobfsError {
#[error("while opening blobfs dir")]
OpenDir(#[from] fuchsia_fs::node::OpenError),
#[error("while listing blobfs dir")]
ReadDir(#[source] fuchsia_fs::directory::EnumerateError),
#[error("while deleting blob")]
Unlink(#[source] Status),
#[error("while sync'ing")]
Sync(#[source] Status),
#[error("while parsing blob merkle hash")]
ParseHash(#[from] ParseHashError),
#[error("FIDL error")]
Fidl(#[from] fidl::Error),
}
#[derive(Debug, Clone)]
pub struct Client {
proxy: fio::DirectoryProxy,
}
impl Client {
pub fn open_from_namespace() -> Result<Self, BlobfsError> {
let proxy = fuchsia_fs::directory::open_in_namespace(
"/blob",
fio::OpenFlags::RIGHT_READABLE | fio::OpenFlags::RIGHT_WRITABLE,
)?;
Ok(Client { proxy })
}
pub fn open_from_namespace_executable() -> Result<Self, BlobfsError> {
let proxy = fuchsia_fs::directory::open_in_namespace(
"/blob",
fio::OpenFlags::RIGHT_READABLE | fio::OpenFlags::RIGHT_EXECUTABLE,
)?;
Ok(Client { proxy })
}
pub fn open_from_namespace_rwx() -> Result<Self, BlobfsError> {
let proxy = fuchsia_fs::directory::open_in_namespace(
"/blob",
fio::OpenFlags::RIGHT_READABLE
| fio::OpenFlags::RIGHT_WRITABLE
| fio::OpenFlags::RIGHT_EXECUTABLE,
)?;
Ok(Client { proxy })
}
pub fn new(proxy: fio::DirectoryProxy) -> Self {
Client { proxy }
}
pub fn new_test() -> (Self, fio::DirectoryRequestStream) {
let (proxy, stream) =
fidl::endpoints::create_proxy_and_stream::<fio::DirectoryMarker>().unwrap();
(Self { proxy }, stream)
}
pub fn new_mock() -> (Self, mock::Mock) {
let (proxy, stream) =
fidl::endpoints::create_proxy_and_stream::<fio::DirectoryMarker>().unwrap();
(Self { proxy }, mock::Mock { stream })
}
pub fn new_temp_dir_fake() -> (Self, TempDirFake) {
let blobfs_dir = tempfile::TempDir::new().unwrap();
let blobfs = Client::new(
fuchsia_fs::directory::open_in_namespace(
blobfs_dir.path().to_str().unwrap(),
fio::OpenFlags::RIGHT_READABLE,
)
.unwrap(),
);
(blobfs, TempDirFake { dir: blobfs_dir })
}
pub fn forward_open(
&self,
blob: &Hash,
flags: fio::OpenFlags,
server_end: ServerEnd<fio::NodeMarker>,
) -> Result<(), fidl::Error> {
self.proxy.open(flags, fio::ModeType::empty(), &blob.to_string(), server_end)
}
pub async fn list_known_blobs(&self) -> Result<HashSet<Hash>, BlobfsError> {
let entries =
fuchsia_fs::directory::readdir(&self.proxy).await.map_err(BlobfsError::ReadDir)?;
entries
.into_iter()
.filter(|entry| entry.kind == fuchsia_fs::directory::DirentKind::File)
.map(|entry| entry.name.parse().map_err(BlobfsError::ParseHash))
.collect()
}
pub async fn delete_blob(&self, blob: &Hash) -> Result<(), BlobfsError> {
self.proxy
.unlink(&blob.to_string(), fio::UnlinkOptions::EMPTY)
.await?
.map_err(|s| BlobfsError::Unlink(Status::from_raw(s)))
}
pub async fn open_blob_for_read(
&self,
blob: &Hash,
) -> Result<fio::FileProxy, fuchsia_fs::node::OpenError> {
fuchsia_fs::directory::open_file(
&self.proxy,
&blob.to_string(),
fio::OpenFlags::RIGHT_READABLE,
)
.await
}
pub fn open_blob_for_read_no_describe(
&self,
blob: &Hash,
) -> Result<fio::FileProxy, fuchsia_fs::node::OpenError> {
fuchsia_fs::directory::open_file_no_describe(
&self.proxy,
&blob.to_string(),
fio::OpenFlags::RIGHT_READABLE,
)
}
pub async fn open_blob_for_write(
&self,
blob: &Hash,
blob_type: fpkg::BlobType,
) -> Result<blob::Blob<blob::NeedsTruncate>, blob::CreateError> {
blob::create(&self.proxy, blob, blob_type).await
}
pub async fn has_blob(&self, blob: &Hash) -> bool {
let file = match fuchsia_fs::directory::open_file_no_describe(
&self.proxy,
&blob.to_string(),
fio::OpenFlags::DESCRIBE | fio::OpenFlags::RIGHT_READABLE,
) {
Ok(file) => file,
Err(_) => return false,
};
let mut events = file.take_event_stream();
let event = match events.next().await {
None => return false,
Some(event) => match event {
Err(_) => return false,
Ok(event) => match event {
fio::FileEvent::OnOpen_ { s, info } => {
if Status::from_raw(s) != Status::OK {
return false;
}
match info {
Some(info) => match *info {
fio::NodeInfoDeprecated::File(fio::FileObject {
event: Some(event),
stream: _, }) => event,
_ => return false,
},
_ => return false,
}
}
fio::FileEvent::OnRepresentation { payload } => match payload {
fio::Representation::File(fio::FileInfo {
observer: Some(event), ..
}) => event,
_ => return false,
},
},
},
};
match event.wait_handle(zx::Signals::USER_0, zx::Time::INFINITE_PAST) {
Ok(_) => true,
Err(status) => {
if status != Status::TIMED_OUT {
warn!("blobfs: unknown error asserting blob existence: {}", status);
}
false
}
}
}
pub async fn filter_to_missing_blobs(&self, candidates: &HashSet<Hash>) -> HashSet<Hash> {
let all_known_blobs =
if candidates.len() > 20 { self.list_known_blobs().await.ok() } else { None };
let all_known_blobs = Arc::new(all_known_blobs);
stream::iter(candidates.clone())
.map(move |blob| {
let all_known_blobs = Arc::clone(&all_known_blobs);
async move {
if (*all_known_blobs).as_ref().map(|blobs| blobs.contains(&blob)) == Some(false)
|| !self.has_blob(&blob).await
{
Some(blob)
} else {
None
}
}
})
.buffer_unordered(50)
.filter_map(|blob| async move { blob })
.collect()
.await
}
pub async fn sync(&self) -> Result<(), BlobfsError> {
self.proxy.sync().await?.map_err(zx::Status::from_raw).map_err(BlobfsError::Sync)
}
}
pub struct TempDirFake {
dir: tempfile::TempDir,
}
impl TempDirFake {
pub fn backing_temp_dir(&self) -> &tempfile::TempDir {
&self.dir
}
pub fn backing_dir_as_openat_dir(&self) -> openat::Dir {
let file = std::fs::File::open(self.dir.path()).unwrap();
let handle = fdio::transfer_fd(file).unwrap();
fdio::create_fd(handle).unwrap()
}
}
#[cfg(test)]
impl Client {
pub fn for_ramdisk(blobfs: &blobfs_ramdisk::BlobfsRamdisk) -> Self {
Self::new(blobfs.root_dir_proxy().unwrap())
}
}
#[cfg(test)]
#[allow(clippy::bool_assert_comparison)]
mod tests {
use {
super::*, assert_matches::assert_matches, blobfs_ramdisk::BlobfsRamdisk,
fuchsia_async as fasync, fuchsia_merkle::MerkleTree, futures::stream::TryStreamExt,
maplit::hashset, std::io::Write as _,
};
#[fasync::run_singlethreaded(test)]
async fn list_known_blobs_empty() {
let blobfs = BlobfsRamdisk::start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
assert_eq!(client.list_known_blobs().await.unwrap(), HashSet::new());
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn list_known_blobs() {
let blobfs = BlobfsRamdisk::builder()
.with_blob(&b"blob 1"[..])
.with_blob(&b"blob 2"[..])
.start()
.await
.unwrap();
let client = Client::for_ramdisk(&blobfs);
let expected = blobfs.list_blobs().unwrap().into_iter().collect();
assert_eq!(client.list_known_blobs().await.unwrap(), expected);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn delete_blob_and_then_list() {
let blobfs = BlobfsRamdisk::builder()
.with_blob(&b"blob 1"[..])
.with_blob(&b"blob 2"[..])
.start()
.await
.unwrap();
let client = Client::for_ramdisk(&blobfs);
let merkle = MerkleTree::from_reader(&b"blob 1"[..]).unwrap().root();
assert_matches!(client.delete_blob(&merkle).await, Ok(()));
let expected = hashset! {MerkleTree::from_reader(&b"blob 2"[..]).unwrap().root()};
assert_eq!(client.list_known_blobs().await.unwrap(), expected);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn delete_non_existing_blob() {
let blobfs = BlobfsRamdisk::start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
let blob_merkle = Hash::from([1; 32]);
assert_matches!(
client.delete_blob(&blob_merkle).await,
Err(BlobfsError::Unlink(Status::NOT_FOUND))
);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn delete_blob_mock() {
let (client, mut stream) = Client::new_test();
let blob_merkle = Hash::from([1; 32]);
fasync::Task::spawn(async move {
match stream.try_next().await.unwrap().unwrap() {
fio::DirectoryRequest::Unlink { name, responder, .. } => {
assert_eq!(name, blob_merkle.to_string());
responder.send(&mut Ok(())).unwrap();
}
other => panic!("unexpected request: {other:?}"),
}
})
.detach();
assert_matches!(client.delete_blob(&blob_merkle).await, Ok(()));
}
#[fasync::run_singlethreaded(test)]
async fn has_blob() {
let blobfs = BlobfsRamdisk::builder().with_blob(&b"blob 1"[..]).start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
assert_eq!(
client.has_blob(&MerkleTree::from_reader(&b"blob 1"[..]).unwrap().root()).await,
true
);
assert_eq!(client.has_blob(&Hash::from([1; 32])).await, false);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn has_blob_return_false_if_blob_is_partially_written() {
let blobfs = BlobfsRamdisk::start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
let blob = [3; 1024];
let hash = MerkleTree::from_reader(&blob[..]).unwrap().root();
let mut file = blobfs.root_dir().unwrap().write_file(hash.to_string(), 0o777).unwrap();
assert_eq!(client.has_blob(&hash).await, false);
file.set_len(blob.len() as u64).unwrap();
assert_eq!(client.has_blob(&hash).await, false);
file.write_all(&blob[..512]).unwrap();
assert_eq!(client.has_blob(&hash).await, false);
file.write_all(&blob[512..]).unwrap();
assert_eq!(client.has_blob(&hash).await, true);
blobfs.stop().await.unwrap();
}
struct TestBlob<S> {
_blob: blob::Blob<S>,
hash: Hash,
}
async fn open_blob_only(client: &Client, blob: &[u8; 1024]) -> TestBlob<blob::NeedsTruncate> {
let hash = MerkleTree::from_reader(&blob[..]).unwrap().root();
let blob = client.open_blob_for_write(&hash, fpkg::BlobType::Uncompressed).await.unwrap();
TestBlob { _blob: blob, hash }
}
async fn open_and_truncate_blob(
client: &Client,
blob: &[u8; 1024],
) -> TestBlob<blob::NeedsData> {
let hash = MerkleTree::from_reader(&blob[..]).unwrap().root();
let blob = client
.open_blob_for_write(&hash, fpkg::BlobType::Uncompressed)
.await
.unwrap()
.truncate(blob.len() as u64)
.await
.unwrap()
.unwrap_needs_data();
TestBlob { _blob: blob, hash }
}
async fn partially_write_blob(client: &Client, blob: &[u8; 1024]) -> TestBlob<blob::NeedsData> {
let hash = MerkleTree::from_reader(&blob[..]).unwrap().root();
let blob = client
.open_blob_for_write(&hash, fpkg::BlobType::Uncompressed)
.await
.unwrap()
.truncate(blob.len() as u64)
.await
.unwrap()
.unwrap_needs_data()
.write(&blob[..512])
.await
.unwrap()
.unwrap_more_to_write();
TestBlob { _blob: blob, hash }
}
async fn fully_write_blob(client: &Client, blob: &[u8; 1024]) -> TestBlob<blob::AtEof> {
let hash = MerkleTree::from_reader(&blob[..]).unwrap().root();
let blob = client
.open_blob_for_write(&hash, fpkg::BlobType::Uncompressed)
.await
.unwrap()
.truncate(blob.len() as u64)
.await
.unwrap()
.unwrap_needs_data()
.write(&blob[..])
.await
.unwrap()
.unwrap_done();
TestBlob { _blob: blob, hash }
}
#[fasync::run_singlethreaded(test)]
async fn filter_to_missing_blobs_without_heuristic() {
let blobfs = BlobfsRamdisk::builder().start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
let missing_hash0 = Hash::from([0; 32]);
let missing_hash1 = Hash::from([1; 32]);
let present_blob0 = fully_write_blob(&client, &[2; 1024]).await;
let present_blob1 = fully_write_blob(&client, &[3; 1024]).await;
assert_eq!(
client
.filter_to_missing_blobs(
&hashset! { missing_hash0, missing_hash1,
present_blob0.hash, present_blob1.hash
}
)
.await,
hashset! { missing_hash0, missing_hash1 }
);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn filter_to_missing_blobs_without_heuristic_and_with_partially_written_blobs() {
let blobfs = BlobfsRamdisk::builder().start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
let missing_blob0 = open_blob_only(&client, &[0; 1024]).await;
let missing_blob1 = open_and_truncate_blob(&client, &[1; 1024]).await;
let missing_blob2 = partially_write_blob(&client, &[2; 1024]).await;
let present_blob = fully_write_blob(&client, &[3; 1024]).await;
assert_eq!(
client
.filter_to_missing_blobs(&hashset! {
missing_blob0.hash, missing_blob1.hash, missing_blob2.hash, present_blob.hash
})
.await,
hashset! { missing_blob0.hash, missing_blob1.hash, missing_blob2.hash }
);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn filter_to_missing_blobs_with_heuristic() {
let blobfs = BlobfsRamdisk::builder().start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
let missing_hash0 = Hash::from([0; 32]);
let missing_hash1 = Hash::from([1; 32]);
let missing_hash2 = Hash::from([2; 32]);
let missing_hash3 = Hash::from([3; 32]);
let missing_hash4 = Hash::from([4; 32]);
let missing_hash5 = Hash::from([5; 32]);
let missing_hash6 = Hash::from([6; 32]);
let missing_hash7 = Hash::from([7; 32]);
let missing_hash8 = Hash::from([8; 32]);
let missing_hash9 = Hash::from([9; 32]);
let missing_hash10 = Hash::from([10; 32]);
let present_blob0 = fully_write_blob(&client, &[20; 1024]).await;
let present_blob1 = fully_write_blob(&client, &[21; 1024]).await;
let present_blob2 = fully_write_blob(&client, &[22; 1024]).await;
let present_blob3 = fully_write_blob(&client, &[23; 1024]).await;
let present_blob4 = fully_write_blob(&client, &[24; 1024]).await;
let present_blob5 = fully_write_blob(&client, &[25; 1024]).await;
let present_blob6 = fully_write_blob(&client, &[26; 1024]).await;
let present_blob7 = fully_write_blob(&client, &[27; 1024]).await;
let present_blob8 = fully_write_blob(&client, &[28; 1024]).await;
let present_blob9 = fully_write_blob(&client, &[29; 1024]).await;
let present_blob10 = fully_write_blob(&client, &[30; 1024]).await;
assert_eq!(
client
.filter_to_missing_blobs(
&hashset! { missing_hash0, missing_hash1, missing_hash2, missing_hash3,
missing_hash4, missing_hash5, missing_hash6, missing_hash7, missing_hash8,
missing_hash9, missing_hash10, present_blob0.hash, present_blob1.hash,
present_blob2.hash, present_blob3.hash, present_blob4.hash,
present_blob5.hash, present_blob6.hash, present_blob7.hash,
present_blob8.hash, present_blob9.hash, present_blob10.hash
}
)
.await,
hashset! { missing_hash0, missing_hash1, missing_hash2, missing_hash3,
missing_hash4, missing_hash5, missing_hash6, missing_hash7, missing_hash8,
missing_hash9, missing_hash10
}
);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn filter_to_missing_blobs_with_heuristic_and_with_partially_written_blobs() {
let blobfs = BlobfsRamdisk::builder().start().await.unwrap();
let client = Client::for_ramdisk(&blobfs);
let missing_blob0 = open_blob_only(&client, &[0; 1024]).await;
let missing_blob1 = open_blob_only(&client, &[1; 1024]).await;
let missing_blob2 = open_blob_only(&client, &[2; 1024]).await;
let missing_blob3 = open_and_truncate_blob(&client, &[3; 1024]).await;
let missing_blob4 = open_and_truncate_blob(&client, &[4; 1024]).await;
let missing_blob5 = open_and_truncate_blob(&client, &[5; 1024]).await;
let missing_blob6 = partially_write_blob(&client, &[6; 1024]).await;
let missing_blob7 = partially_write_blob(&client, &[7; 1024]).await;
let missing_blob8 = partially_write_blob(&client, &[8; 1024]).await;
let missing_hash9 = Hash::from([9; 32]);
let missing_hash10 = Hash::from([10; 32]);
let present_blob0 = fully_write_blob(&client, &[20; 1024]).await;
let present_blob1 = fully_write_blob(&client, &[21; 1024]).await;
let present_blob2 = fully_write_blob(&client, &[22; 1024]).await;
let present_blob3 = fully_write_blob(&client, &[23; 1024]).await;
let present_blob4 = fully_write_blob(&client, &[24; 1024]).await;
let present_blob5 = fully_write_blob(&client, &[25; 1024]).await;
let present_blob6 = fully_write_blob(&client, &[26; 1024]).await;
let present_blob7 = fully_write_blob(&client, &[27; 1024]).await;
let present_blob8 = fully_write_blob(&client, &[28; 1024]).await;
let present_blob9 = fully_write_blob(&client, &[29; 1024]).await;
let present_blob10 = fully_write_blob(&client, &[30; 1024]).await;
assert_eq!(
client
.filter_to_missing_blobs(
&hashset! { missing_blob0.hash, missing_blob1.hash, missing_blob2.hash,
missing_blob3.hash, missing_blob4.hash, missing_blob5.hash,
missing_blob6.hash, missing_blob7.hash, missing_blob8.hash,
missing_hash9, missing_hash10, present_blob0.hash,
present_blob1.hash, present_blob2.hash, present_blob3.hash,
present_blob4.hash, present_blob5.hash, present_blob6.hash,
present_blob7.hash, present_blob8.hash, present_blob9.hash,
present_blob10.hash
}
)
.await,
hashset! { missing_blob0.hash, missing_blob1.hash, missing_blob2.hash,
missing_blob3.hash, missing_blob4.hash, missing_blob5.hash, missing_blob6.hash,
missing_blob7.hash, missing_blob8.hash, missing_hash9, missing_hash10
}
);
blobfs.stop().await.unwrap();
}
#[fasync::run_singlethreaded(test)]
async fn sync() {
let counter = Arc::new(std::sync::atomic::AtomicU32::new(0));
let counter_clone = Arc::clone(&counter);
let (client, mut stream) = Client::new_test();
fasync::Task::spawn(async move {
match stream.try_next().await.unwrap().unwrap() {
fio::DirectoryRequest::Sync { responder } => {
counter_clone.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
responder.send(&mut Ok(())).unwrap();
}
other => panic!("unexpected request: {other:?}"),
}
})
.detach();
assert_matches!(client.sync().await, Ok(()));
assert_eq!(counter.load(std::sync::atomic::Ordering::SeqCst), 1);
}
#[fasync::run_singlethreaded(test)]
async fn temp_dir_fake_backing_dir() {
let (blobfs, fake) = Client::new_temp_dir_fake();
std::fs::File::create(
fake.backing_temp_dir()
.path()
.join("0000000000000000000000000000000000000000000000000000000000000000"),
)
.unwrap();
let actual = blobfs.list_known_blobs().await.unwrap();
assert_eq!(actual, hashset! {[0u8; 32].into()});
}
#[fasync::run_singlethreaded(test)]
async fn temp_dir_fake_backing_dir_as_openat_dir() {
let (blobfs, fake) = Client::new_temp_dir_fake();
fake.backing_dir_as_openat_dir()
.write_file("0000000000000000000000000000000000000000000000000000000000000000", 0o600)
.unwrap();
let actual = blobfs.list_known_blobs().await.unwrap();
assert_eq!(actual, hashset! {[0u8; 32].into()});
}
#[fasync::run_singlethreaded(test)]
async fn temp_dir_fake_read_only() {
let (blobfs, _fake) = Client::new_temp_dir_fake();
assert_matches!(
blobfs.open_blob_for_write(&Hash::from([0; 32]), fpkg::BlobType::Uncompressed).await,
Err(blob::CreateError::AlreadyExists)
);
}
}