about summary refs log tree commit diff
path: root/tvix/store/src/tests/utils.rs
blob: 9da9d2643b813bc2efb28f7b24430a854e2705f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use crate::{
    blobservice::{BlobService, SledBlobService},
    chunkservice::{ChunkService, SledChunkService},
    directoryservice::{DirectoryService, SledDirectoryService},
    pathinfoservice::{PathInfoService, SledPathInfoService},
};

pub fn gen_blob_service() -> impl BlobService + Send + Sync + Clone + 'static {
    SledBlobService::new_temporary().unwrap()
}

pub fn gen_chunk_service() -> impl ChunkService + Clone {
    SledChunkService::new_temporary().unwrap()
}

pub fn gen_directory_service() -> impl DirectoryService + Send + Sync + Clone + 'static {
    SledDirectoryService::new_temporary().unwrap()
}

pub fn gen_pathinfo_service() -> impl PathInfoService {
    SledPathInfoService::new_temporary().unwrap()
}