2015-10-29 19:34:36 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef MESSMER_CRYFS_TEST_CLI_TESTUTILS_CLITEST_H
|
|
|
|
#define MESSMER_CRYFS_TEST_CLI_TESTUTILS_CLITEST_H
|
|
|
|
|
|
|
|
#include <google/gtest/gtest.h>
|
2015-11-02 21:20:10 +01:00
|
|
|
#include <google/gmock/gmock.h>
|
2015-10-29 19:34:36 +01:00
|
|
|
#include <messmer/cpp-utils/tempfile/TempDir.h>
|
|
|
|
#include <messmer/cpp-utils/tempfile/TempFile.h>
|
|
|
|
#include "../../../src/Cli.h"
|
2015-10-30 19:53:15 +01:00
|
|
|
#include <messmer/cpp-utils/logging/logging.h>
|
2015-11-03 22:10:56 +01:00
|
|
|
#include <messmer/cpp-utils/process/subprocess.h>
|
2015-10-29 19:34:36 +01:00
|
|
|
|
|
|
|
class CliTest : public ::testing::Test {
|
|
|
|
public:
|
2015-10-30 17:23:08 +01:00
|
|
|
CliTest(): _basedir(), _mountdir(), basedir(_basedir.path()), mountdir(_mountdir.path()), logfile(), configfile(false) {}
|
2015-10-29 19:34:36 +01:00
|
|
|
|
2015-10-30 17:23:08 +01:00
|
|
|
cpputils::TempDir _basedir;
|
|
|
|
cpputils::TempDir _mountdir;
|
|
|
|
boost::filesystem::path basedir;
|
|
|
|
boost::filesystem::path mountdir;
|
2015-10-29 19:34:36 +01:00
|
|
|
cpputils::TempFile logfile;
|
|
|
|
cpputils::TempFile configfile;
|
|
|
|
|
2015-10-29 19:55:26 +01:00
|
|
|
void run(std::vector<const char*> args) {
|
2015-10-29 19:34:36 +01:00
|
|
|
std::vector<char*> _args;
|
|
|
|
_args.reserve(args.size()+1);
|
|
|
|
_args.push_back(const_cast<char*>("cryfs"));
|
|
|
|
for (const char *arg : args) {
|
|
|
|
_args.push_back(const_cast<char*>(arg));
|
|
|
|
}
|
2015-11-03 21:22:35 +01:00
|
|
|
auto &keyGenerator = cpputils::Random::PseudoRandom();
|
2015-11-04 05:27:00 +01:00
|
|
|
cryfs::Cli(keyGenerator, cpputils::SCrypt::TestSettings).main(_args.size(), _args.data());
|
2015-10-29 19:34:36 +01:00
|
|
|
}
|
|
|
|
|
2015-10-29 19:55:26 +01:00
|
|
|
void EXPECT_EXIT_WITH_HELP_MESSAGE(std::vector<const char*> args) {
|
2015-10-29 19:34:36 +01:00
|
|
|
EXPECT_RUN_ERROR(args, "Usage");
|
|
|
|
}
|
|
|
|
|
2015-10-29 19:55:26 +01:00
|
|
|
void EXPECT_RUN_ERROR(std::vector<const char*> args, const char *message) {
|
2015-10-29 19:34:36 +01:00
|
|
|
EXPECT_EXIT(
|
|
|
|
run(args),
|
|
|
|
::testing::ExitedWithCode(1),
|
|
|
|
message
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-10-30 22:24:18 +01:00
|
|
|
void EXPECT_RUN_SUCCESS(std::vector<const char*> args, const boost::filesystem::path &mountDir) {
|
2015-11-03 22:02:04 +01:00
|
|
|
//TODO Make this work when run in background
|
|
|
|
ASSERT(std::find(args.begin(), args.end(), string("-f")) != args.end(), "Currently only works if run in foreground");
|
2015-11-02 21:20:10 +01:00
|
|
|
std::thread unmountThread([&mountDir] {
|
|
|
|
int returncode = -1;
|
|
|
|
while (returncode != 0) {
|
2015-11-03 22:10:56 +01:00
|
|
|
returncode = cpputils::Subprocess::callAndGetReturnCode(std::string("fusermount -u ") + mountDir.c_str() + " 2>/dev/null");
|
2015-11-02 21:20:10 +01:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(50)); // TODO Is this the test case duration? Does a shorter interval make the test case faster?
|
|
|
|
}
|
|
|
|
});
|
2015-11-04 05:27:00 +01:00
|
|
|
testing::internal::CaptureStdout();
|
2015-11-02 21:20:10 +01:00
|
|
|
run(args);
|
|
|
|
unmountThread.join();
|
2015-11-04 05:27:00 +01:00
|
|
|
EXPECT_THAT(testing::internal::GetCapturedStdout(), testing::MatchesRegex(".*Mounting filesystem.*"));
|
2015-10-29 19:34:36 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|