libcryfs/test/filesystem/CryFsTest.cpp

70 lines
2.1 KiB
C++
Raw Normal View History

2015-04-27 16:38:09 +02:00
#include <google/gtest/gtest.h>
#include <messmer/cpp-utils/tempfile/TempDir.h>
#include <messmer/cpp-utils/tempfile/TempFile.h>
2015-06-21 17:44:45 +02:00
#include <messmer/cpp-utils/pointer/cast.h>
2015-04-27 16:38:09 +02:00
#include <messmer/blockstore/implementations/ondisk/OnDiskBlockStore.h>
2015-09-12 20:16:13 +02:00
#include "../../src/filesystem/CryDevice.h"
#include "../../src/filesystem/CryDir.h"
#include "../../src/filesystem/CryFile.h"
#include "../../src/filesystem/CryOpenFile.h"
2015-10-22 18:48:04 +02:00
#include "../testutils/MockConsole.h"
#include "../../src/config/CryConfigLoader.h"
2015-04-27 16:38:09 +02:00
//TODO (whole project) Make constructors explicit when implicit construction not needed
using ::testing::Test;
2015-10-22 18:48:04 +02:00
using ::testing::Return;
using ::testing::_;
2015-04-27 16:38:09 +02:00
using cpputils::TempDir;
using cpputils::TempFile;
using cpputils::dynamic_pointer_move;
2015-07-21 18:22:03 +02:00
using cpputils::make_unique_ref;
using cpputils::unique_ref;
2015-09-12 20:16:13 +02:00
using cpputils::Console;
using cpputils::Random;
using cpputils::SCrypt;
using cpputils::Data;
2015-04-27 16:38:09 +02:00
using blockstore::ondisk::OnDiskBlockStore;
using boost::none;
2015-04-27 16:38:09 +02:00
namespace bf = boost::filesystem;
using namespace cryfs;
class CryFsTest: public Test, public TestWithMockConsole {
2015-04-27 16:38:09 +02:00
public:
2015-10-22 18:48:04 +02:00
CryFsTest(): rootdir(), config(false) {
}
CryConfigFile loadOrCreateConfig() {
return CryConfigLoader(mockConsole(), Random::PseudoRandom(), SCrypt::TestSettings, [] {return "mypassword";}, none).loadOrCreate(config.path()).value();
}
unique_ref<OnDiskBlockStore> blockStore() {
return make_unique_ref<OnDiskBlockStore>(rootdir.path());
2015-10-22 18:48:04 +02:00
}
2015-04-27 16:38:09 +02:00
TempDir rootdir;
TempFile config;
};
TEST_F(CryFsTest, CreatedRootdirIsLoadableAfterClosing) {
2015-06-17 12:28:18 +02:00
{
CryDevice dev(loadOrCreateConfig(), blockStore());
2015-06-17 12:28:18 +02:00
}
CryDevice dev(loadOrCreateConfig(), blockStore());
auto root = dev.Load(bf::path("/"));
dynamic_pointer_move<CryDir>(root.get()).get()->children();
2015-04-27 16:38:09 +02:00
}
TEST_F(CryFsTest, LoadingFilesystemDoesntModifyConfigFile) {
{
CryDevice dev(loadOrCreateConfig(), blockStore());
}
Data configAfterCreating = Data::LoadFromFile(config.path()).value();
{
CryDevice dev(loadOrCreateConfig(), blockStore());
}
Data configAfterLoading = Data::LoadFromFile(config.path()).value();
EXPECT_EQ(configAfterCreating, configAfterLoading);
}