2015-03-12 14:27:51 +01:00
|
|
|
#include "../../../implementations/ondisk/OnDiskBlock.h"
|
|
|
|
#include "../../../implementations/ondisk/OnDiskBlockStore.h"
|
|
|
|
#include "../../testutils/BlockStoreTest.h"
|
|
|
|
#include "../../testutils/BlockStoreWithRandomKeysTest.h"
|
2015-02-17 00:23:33 +01:00
|
|
|
#include "google/gtest/gtest.h"
|
|
|
|
|
|
|
|
#include "messmer/tempfile/src/TempDir.h"
|
2014-12-09 17:19:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
using blockstore::BlockStore;
|
|
|
|
using blockstore::BlockStoreWithRandomKeys;
|
|
|
|
using blockstore::ondisk::OnDiskBlockStore;
|
|
|
|
|
|
|
|
using std::unique_ptr;
|
|
|
|
using std::make_unique;
|
|
|
|
|
2015-02-17 00:23:33 +01:00
|
|
|
using tempfile::TempDir;
|
|
|
|
|
2014-12-09 17:19:59 +01:00
|
|
|
class OnDiskBlockStoreTestFixture: public BlockStoreTestFixture {
|
|
|
|
public:
|
|
|
|
unique_ptr<BlockStore> createBlockStore() override {
|
|
|
|
return make_unique<OnDiskBlockStore>(tempdir.path());
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
TempDir tempdir;
|
|
|
|
};
|
|
|
|
|
|
|
|
INSTANTIATE_TYPED_TEST_CASE_P(OnDisk, BlockStoreTest, OnDiskBlockStoreTestFixture);
|
|
|
|
|
|
|
|
class OnDiskBlockStoreWithRandomKeysTestFixture: public BlockStoreWithRandomKeysTestFixture {
|
|
|
|
public:
|
|
|
|
unique_ptr<BlockStoreWithRandomKeys> createBlockStore() override {
|
|
|
|
return make_unique<OnDiskBlockStore>(tempdir.path());
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
TempDir tempdir;
|
|
|
|
};
|
|
|
|
|
|
|
|
INSTANTIATE_TYPED_TEST_CASE_P(OnDisk, BlockStoreWithRandomKeysTest, OnDiskBlockStoreWithRandomKeysTestFixture);
|