39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#include "../../../implementations/ondisk/OnDiskBlock.h"
|
|
#include "../../../implementations/ondisk/OnDiskBlockStore.h"
|
|
#include "../../testutils/BlockStoreTest.h"
|
|
#include "../../testutils/BlockStoreWithRandomKeysTest.h"
|
|
#include "google/gtest/gtest.h"
|
|
|
|
#include "messmer/cpp-utils/tempfile/TempDir.h"
|
|
|
|
|
|
using blockstore::BlockStore;
|
|
using blockstore::BlockStoreWithRandomKeys;
|
|
using blockstore::ondisk::OnDiskBlockStore;
|
|
|
|
using cpputils::TempDir;
|
|
using cpputils::unique_ref;
|
|
using cpputils::make_unique_ref;
|
|
|
|
class OnDiskBlockStoreTestFixture: public BlockStoreTestFixture {
|
|
public:
|
|
unique_ref<BlockStore> createBlockStore() override {
|
|
return make_unique_ref<OnDiskBlockStore>(tempdir.path());
|
|
}
|
|
private:
|
|
TempDir tempdir;
|
|
};
|
|
|
|
INSTANTIATE_TYPED_TEST_CASE_P(OnDisk, BlockStoreTest, OnDiskBlockStoreTestFixture);
|
|
|
|
class OnDiskBlockStoreWithRandomKeysTestFixture: public BlockStoreWithRandomKeysTestFixture {
|
|
public:
|
|
unique_ref<BlockStoreWithRandomKeys> createBlockStore() override {
|
|
return make_unique_ref<OnDiskBlockStore>(tempdir.path());
|
|
}
|
|
private:
|
|
TempDir tempdir;
|
|
};
|
|
|
|
INSTANTIATE_TYPED_TEST_CASE_P(OnDisk, BlockStoreWithRandomKeysTest, OnDiskBlockStoreWithRandomKeysTestFixture);
|