libcryfs/test/CryFsTest.cpp

56 lines
2.0 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>
#include "../src/CryDevice.h"
#include "../src/CryDir.h"
#include "../src/CryFile.h"
#include "../src/CryOpenFile.h"
2015-04-27 16:38:09 +02:00
//TODO (whole project) Make constructors explicit when implicit construction not needed
using ::testing::Test;
using cpputils::TempDir;
using cpputils::TempFile;
using cpputils::dynamic_pointer_move;
2015-07-21 18:22:03 +02:00
using cpputils::make_unique_ref;
2015-04-27 16:38:09 +02:00
using blockstore::ondisk::OnDiskBlockStore;
namespace bf = boost::filesystem;
using namespace cryfs;
class CryFsTest: public Test {
public:
CryFsTest(): rootdir(), config(false) {}
TempDir rootdir;
TempFile config;
};
TEST_F(CryFsTest, CreatedRootdirIsLoadableAfterClosing) {
{
2015-07-21 18:22:03 +02:00
CryDevice dev(CryConfigLoader::createNewWithWeakKey(config.path()), make_unique_ref<OnDiskBlockStore>(rootdir.path()));
2015-04-27 16:38:09 +02:00
}
2015-07-21 18:22:03 +02:00
CryDevice dev(CryConfigLoader::loadExisting(config.path()).value(), make_unique_ref<OnDiskBlockStore>(rootdir.path()));
2015-06-17 12:28:18 +02:00
auto root = dev.Load(bf::path("/"));
dynamic_pointer_move<CryDir>(root.get()).get()->children();
2015-06-17 12:28:18 +02:00
}
TEST_F(CryFsTest, UsingStrongKey1_CreatedRootdirIsLoadableAfterClosing) {
{
2015-07-21 18:22:03 +02:00
CryDevice dev(CryConfigLoader::createNew(config.path()), make_unique_ref<OnDiskBlockStore>(rootdir.path()));
2015-06-17 12:28:18 +02:00
}
2015-07-21 18:22:03 +02:00
CryDevice dev(CryConfigLoader::loadExisting(config.path()).value(), make_unique_ref<OnDiskBlockStore>(rootdir.path()));
2015-06-17 12:28:18 +02:00
auto root = dev.Load(bf::path("/"));
dynamic_pointer_move<CryDir>(root.get()).get()->children();
2015-06-17 12:28:18 +02:00
}
TEST_F(CryFsTest, UsingStrongKey2_CreatedRootdirIsLoadableAfterClosing) {
{
2015-07-21 18:22:03 +02:00
CryDevice dev(CryConfigLoader::loadOrCreate(config.path()), make_unique_ref<OnDiskBlockStore>(rootdir.path()));
2015-06-17 12:28:18 +02:00
}
2015-07-21 18:22:03 +02:00
CryDevice dev(CryConfigLoader::loadOrCreate(config.path()), make_unique_ref<OnDiskBlockStore>(rootdir.path()));
auto root = dev.Load(bf::path("/"));
dynamic_pointer_move<CryDir>(root.get()).get()->children();
2015-04-27 16:38:09 +02:00
}