risingwave_hummock_test/
local_state_store_test_utils.rs1use std::future::Future;
16
17use risingwave_common::util::epoch::EpochPair;
18use risingwave_storage::error::StorageResult;
19use risingwave_storage::store::{InitOptions, LocalStateStore};
20
21pub trait LocalStateStoreTestExt: LocalStateStore {
22 fn init_for_test(&mut self, epoch: u64) -> impl Future<Output = StorageResult<()>> + Send + '_ {
23 self.init(InitOptions::new(EpochPair::new_test_epoch(epoch)))
24 }
25
26 fn init_for_test_with_prev_epoch(
27 &mut self,
28 epoch: u64,
29 prev_epoch: u64,
30 ) -> impl Future<Output = StorageResult<()>> + Send + '_ {
31 self.init(InitOptions::new(EpochPair::new(epoch, prev_epoch)))
32 }
33}
34impl<T: LocalStateStore> LocalStateStoreTestExt for T {}