about summary refs log blame commit diff
path: root/tvix/store/src/tests/utils.rs
blob: 916e6516216cf8ec8bd834050bb5c6977b750f91 (plain) (tree)
1
2
3
4
5
6
7
8
9
            



                                                                 

  
                                                                               
                                

 
                                                         
                                 

 
                                                                                         
                                     

 
                                                       
                                    
 
use crate::{
    blobservice::{BlobService, MemoryBlobService},
    chunkservice::{ChunkService, MemoryChunkService},
    directoryservice::{DirectoryService, MemoryDirectoryService},
    pathinfoservice::{MemoryPathInfoService, PathInfoService},
};

pub fn gen_blob_service() -> impl BlobService + Send + Sync + Clone + 'static {
    MemoryBlobService::default()
}

pub fn gen_chunk_service() -> impl ChunkService + Clone {
    MemoryChunkService::default()
}

pub fn gen_directory_service() -> impl DirectoryService + Send + Sync + Clone + 'static {
    MemoryDirectoryService::default()
}

pub fn gen_pathinfo_service() -> impl PathInfoService {
    MemoryPathInfoService::default()
}