1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/*
Copyright 2013-2015 Skytechnology sp. z o.o.
This file is part of LizardFS.
LizardFS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3.
LizardFS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LizardFS. If not, see <http://www.gnu.org/licenses/>.
*/
#include <fstream>
#include <gtest/gtest.h>
#ifndef TEST_DATA_PATH
# error "You have to define TEST_DATA_PATH to compile this file"
#endif
#define TO_STRING_AUX(x) #x
#define TO_STRING(x) TO_STRING_AUX(x)
class BashTestingSuite : public testing::Test {
protected:
void run_test_case(std::string suite, std::string testCase) {
ASSERT_EQ(0, system("rm -f /tmp/test_err && touch /tmp/test_err && chmod 0777 /tmp/test_err"));
std::string runScript = TO_STRING(TEST_DATA_PATH) "/run-test.sh";
std::string testFile = TO_STRING(TEST_DATA_PATH) "/test_suites/" + suite + "/" + testCase + ".sh";
std::string environment = "ERROR_FILE=/tmp/test_err";
environment += " TEST_SUITE_NAME=" + suite;
environment += " TEST_CASE_NAME=" + testCase;
std::string command = environment + " " + runScript + " " + testFile;
int ret = system(command.c_str());
if (ret != 0) {
std::string error;
std::ifstream results("/tmp/test_err");
if (!results) {
error = "Script " + testFile + " crashed";
} else {
error.assign(
std::istreambuf_iterator<char>(results),
std::istreambuf_iterator<char>());
if (!error.empty() && *error.rbegin() == '\n') {
error.erase(error.size() - 1);
}
}
FAIL() << error;
}
}
};
#define add_test_case(suite, testCase) \
TEST_F(suite, testCase) { run_test_case(TO_STRING(suite), TO_STRING(testCase)); }
#include "test_suites.h"
#include "test_cases.h"
|