2016-02-11 16:39:42 +01:00
|
|
|
#include <blockstore/implementations/testfake/FakeBlockStore.h>
|
|
|
|
#include <fspp/fstest/FsTest.h>
|
|
|
|
#include <cpp-utils/tempfile/TempFile.h>
|
2015-03-16 02:15:51 +01:00
|
|
|
|
2016-02-11 16:39:42 +01:00
|
|
|
#include <cryfs/filesystem/CryDevice.h>
|
|
|
|
#include <cryfs/config/CryConfigLoader.h>
|
2015-10-22 18:48:04 +02:00
|
|
|
#include "../testutils/MockConsole.h"
|
2016-06-22 02:36:29 +02:00
|
|
|
#include "../testutils/TestWithFakeHomeDirectory.h"
|
2015-03-16 02:15:51 +01:00
|
|
|
|
2015-06-18 19:36:05 +02:00
|
|
|
using cpputils::unique_ref;
|
|
|
|
using cpputils::make_unique_ref;
|
2015-10-24 19:35:37 +02:00
|
|
|
using cpputils::Random;
|
2015-11-04 05:27:00 +01:00
|
|
|
using cpputils::SCrypt;
|
2015-03-16 02:15:51 +01:00
|
|
|
using fspp::Device;
|
2015-10-22 18:48:04 +02:00
|
|
|
using ::testing::Return;
|
|
|
|
using ::testing::_;
|
2015-10-30 19:53:15 +01:00
|
|
|
using boost::none;
|
2015-03-16 02:15:51 +01:00
|
|
|
|
|
|
|
using blockstore::testfake::FakeBlockStore;
|
|
|
|
|
|
|
|
using namespace cryfs;
|
|
|
|
|
2016-06-22 02:36:29 +02:00
|
|
|
class CryFsTestFixture: public FileSystemTestFixture, public TestWithMockConsole, public TestWithFakeHomeDirectory {
|
2015-03-16 02:15:51 +01:00
|
|
|
public:
|
|
|
|
CryFsTestFixture()
|
|
|
|
// Don't create config tempfile yet
|
|
|
|
: configFile(false) {}
|
|
|
|
|
2015-06-18 19:36:05 +02:00
|
|
|
unique_ref<Device> createDevice() override {
|
2015-07-21 18:22:03 +02:00
|
|
|
auto blockStore = cpputils::make_unique_ref<FakeBlockStore>();
|
2015-11-19 10:08:09 +01:00
|
|
|
auto askPassword = [] {return "mypassword";};
|
2016-06-27 08:24:32 +02:00
|
|
|
auto config = CryConfigLoader(mockConsole(), Random::PseudoRandom(), SCrypt::TestSettings, askPassword, askPassword, none, none, none, true)
|
2015-11-04 05:27:00 +01:00
|
|
|
.loadOrCreate(configFile.path()).value();
|
2016-06-27 01:53:10 +02:00
|
|
|
return make_unique_ref<CryDevice>(std::move(config.configFile), std::move(blockStore), config.myClientId);
|
2015-03-16 02:15:51 +01:00
|
|
|
}
|
|
|
|
|
2015-04-25 03:37:25 +02:00
|
|
|
cpputils::TempFile configFile;
|
2015-03-16 02:15:51 +01:00
|
|
|
};
|
|
|
|
|
2015-03-16 02:57:01 +01:00
|
|
|
FSPP_ADD_FILESYTEM_TESTS(CryFS, CryFsTestFixture);
|