2015-10-21 05:01:47 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
2019-03-04 15:02:59 -06:00
|
|
|
#define TST_LOG_REDIRECT
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <test.hpp>
|
2017-06-19 07:55:07 -05:00
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <config.h>
|
2017-03-08 10:38:22 -06:00
|
|
|
|
2016-10-12 03:47:26 -05:00
|
|
|
#include <cstdlib>
|
2015-10-21 05:01:47 -05:00
|
|
|
#include <iostream>
|
2019-09-12 04:43:49 -05:00
|
|
|
#include <memory>
|
2016-08-28 15:32:34 -05:00
|
|
|
|
|
|
|
#include <cppunit/BriefTestProgressListener.h>
|
|
|
|
#include <cppunit/CompilerOutputter.h>
|
2015-10-21 05:01:47 -05:00
|
|
|
#include <cppunit/TestResult.h>
|
2019-05-01 16:12:56 -05:00
|
|
|
#include <cppunit/TestFailure.h>
|
2015-10-21 05:01:47 -05:00
|
|
|
#include <cppunit/TestResultCollector.h>
|
2016-08-28 15:32:34 -05:00
|
|
|
#include <cppunit/TestRunner.h>
|
2016-03-25 18:41:53 -05:00
|
|
|
#include <cppunit/TextTestProgressListener.h>
|
2015-10-21 05:01:47 -05:00
|
|
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
2016-08-28 15:32:34 -05:00
|
|
|
|
|
|
|
#include <Poco/RegularExpression.h>
|
2017-09-19 15:16:44 -05:00
|
|
|
#include <Poco/DirectoryIterator.h>
|
|
|
|
#include <Poco/FileStream.h>
|
|
|
|
#include <Poco/StreamCopier.h>
|
2015-10-21 05:01:47 -05:00
|
|
|
|
2020-02-23 12:32:10 -06:00
|
|
|
#include <helpers.hpp>
|
2020-01-21 05:21:08 -06:00
|
|
|
#include <Unit.hpp>
|
|
|
|
#include <wsd/LOOLWSD.hpp>
|
|
|
|
|
2016-09-14 16:43:56 -05:00
|
|
|
#include <Log.hpp>
|
|
|
|
|
2019-11-13 00:48:30 -06:00
|
|
|
#include "common/Protocol.hpp"
|
|
|
|
|
2016-04-24 19:59:58 -05:00
|
|
|
class HTTPGetTest;
|
|
|
|
|
2018-10-17 02:34:05 -05:00
|
|
|
bool filterTests(CPPUNIT_NS::TestRunner& runner, CPPUNIT_NS::Test* testRegistry, const std::string& testName)
|
2015-10-21 05:01:47 -05:00
|
|
|
{
|
2016-10-17 10:51:54 -05:00
|
|
|
Poco::RegularExpression re(testName, Poco::RegularExpression::RE_CASELESS);
|
|
|
|
Poco::RegularExpression::Match reMatch;
|
2016-08-28 15:32:34 -05:00
|
|
|
|
2016-10-17 10:51:54 -05:00
|
|
|
bool haveTests = false;
|
|
|
|
for (int i = 0; i < testRegistry->getChildTestCount(); ++i)
|
|
|
|
{
|
|
|
|
CPPUNIT_NS::Test* testSuite = testRegistry->getChildTestAt(i);
|
|
|
|
for (int j = 0; j < testSuite->getChildTestCount(); ++j)
|
2016-07-08 02:04:27 -05:00
|
|
|
{
|
2016-10-17 10:51:54 -05:00
|
|
|
CPPUNIT_NS::Test* testCase = testSuite->getChildTestAt(j);
|
|
|
|
try
|
2016-07-08 02:04:27 -05:00
|
|
|
{
|
2016-10-17 10:51:54 -05:00
|
|
|
if (re.match(testCase->getName(), reMatch))
|
2016-08-28 15:32:34 -05:00
|
|
|
{
|
2016-10-17 10:51:54 -05:00
|
|
|
runner.addTest(testCase);
|
|
|
|
haveTests = true;
|
2016-08-28 15:32:34 -05:00
|
|
|
}
|
2016-07-08 02:04:27 -05:00
|
|
|
}
|
2016-10-17 10:51:54 -05:00
|
|
|
catch (const std::exception& exc)
|
|
|
|
{
|
|
|
|
// Nothing to do; skip.
|
|
|
|
}
|
2016-07-08 02:04:27 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-28 15:32:34 -05:00
|
|
|
|
2016-10-17 10:51:54 -05:00
|
|
|
return haveTests;
|
2016-08-28 15:32:34 -05:00
|
|
|
}
|
|
|
|
|
2019-08-29 02:00:16 -05:00
|
|
|
static bool IsDebugrun = false;
|
|
|
|
|
2017-04-07 08:37:20 -05:00
|
|
|
int main(int argc, char** argv)
|
2016-08-28 15:32:34 -05:00
|
|
|
{
|
2019-09-22 11:37:32 -05:00
|
|
|
bool verbose = false;
|
|
|
|
for (int i = 1; i < argc; ++i)
|
|
|
|
{
|
|
|
|
const std::string arg(argv[i]);
|
|
|
|
if (arg == "--verbose")
|
|
|
|
{
|
|
|
|
verbose = true;
|
|
|
|
}
|
|
|
|
else if (arg == "--debugrun")
|
|
|
|
{
|
|
|
|
IsDebugrun = true;
|
|
|
|
}
|
|
|
|
}
|
2017-04-07 08:37:20 -05:00
|
|
|
|
2019-09-22 11:37:32 -05:00
|
|
|
const char* loglevel = verbose ? "trace" : "warning";
|
2017-04-07 08:37:20 -05:00
|
|
|
Log::initialize("tst", loglevel, true, false, {});
|
2016-09-14 16:43:56 -05:00
|
|
|
|
2017-08-17 07:04:22 -05:00
|
|
|
return runClientTests(true, verbose)? 0: 1;
|
2017-05-11 21:08:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool IsStandalone = false;
|
|
|
|
|
|
|
|
bool isStandalone()
|
|
|
|
{
|
|
|
|
return IsStandalone;
|
|
|
|
}
|
|
|
|
|
2020-02-23 12:32:10 -06:00
|
|
|
static std::mutex ErrorMutex;
|
2019-05-04 14:16:36 -05:00
|
|
|
static bool IsVerbose = false;
|
2020-02-23 12:32:10 -06:00
|
|
|
static std::ostringstream ErrorsStream;
|
2019-03-04 15:02:59 -06:00
|
|
|
|
|
|
|
void tstLog(const std::ostringstream &stream)
|
|
|
|
{
|
2019-05-04 14:16:36 -05:00
|
|
|
if (IsVerbose)
|
2020-02-23 12:32:10 -06:00
|
|
|
writeTestLog(stream.str() + '\n');
|
2019-05-04 14:16:36 -05:00
|
|
|
else
|
|
|
|
{
|
2020-02-23 12:32:10 -06:00
|
|
|
std::lock_guard<std::mutex> lock(ErrorMutex);
|
|
|
|
ErrorsStream << stream.str();
|
2019-05-04 14:16:36 -05:00
|
|
|
}
|
2019-03-04 15:02:59 -06:00
|
|
|
}
|
|
|
|
|
2020-02-23 12:32:10 -06:00
|
|
|
class TestProgressListener : public CppUnit::TestListener
|
|
|
|
{
|
|
|
|
TestProgressListener(const TestProgressListener& copy) = delete;
|
|
|
|
void operator=(const TestProgressListener& copy) = delete;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TestProgressListener() {}
|
|
|
|
virtual ~TestProgressListener() {}
|
|
|
|
|
|
|
|
void startTest(CppUnit::Test* test)
|
|
|
|
{
|
|
|
|
_name = test->getName();
|
|
|
|
writeTestLog("\n=============== START " + _name + '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
void addFailure(const CppUnit::TestFailure& failure)
|
|
|
|
{
|
|
|
|
if (failure.isError())
|
|
|
|
writeTestLog("\n>>>>>>>> FAILED " + _name + " <<<<<<<<<\n");
|
|
|
|
else
|
|
|
|
writeTestLog("\n>>>>>>>> PASS " + _name + " <<<<<<<<<\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void done() { writeTestLog("\n=============== END " + _name + " ===============\n"); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string _name;
|
|
|
|
};
|
|
|
|
|
2017-09-19 13:06:46 -05:00
|
|
|
// returns true on success
|
2017-05-11 21:08:20 -05:00
|
|
|
bool runClientTests(bool standalone, bool verbose)
|
|
|
|
{
|
2019-05-04 14:16:36 -05:00
|
|
|
IsVerbose = verbose;
|
2017-05-11 21:08:20 -05:00
|
|
|
IsStandalone = standalone;
|
|
|
|
|
2016-08-28 15:32:34 -05:00
|
|
|
CPPUNIT_NS::TestResult controller;
|
|
|
|
CPPUNIT_NS::TestResultCollector result;
|
|
|
|
controller.addListener(&result);
|
2020-02-23 12:32:10 -06:00
|
|
|
TestProgressListener listener;
|
2019-09-12 04:43:49 -05:00
|
|
|
controller.addListener(&listener);
|
2016-08-28 15:32:34 -05:00
|
|
|
|
|
|
|
CPPUNIT_NS::Test* testRegistry = CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
|
|
|
|
|
|
|
|
CPPUNIT_NS::TestRunner runner;
|
2016-10-17 10:51:54 -05:00
|
|
|
const char* envar = std::getenv("CPPUNIT_TEST_NAME");
|
|
|
|
std::string testName;
|
|
|
|
if (envar)
|
|
|
|
{
|
|
|
|
testName = std::string(envar);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (testName.empty())
|
2016-08-28 15:32:34 -05:00
|
|
|
{
|
2016-10-17 10:51:54 -05:00
|
|
|
// Add all tests.
|
2016-08-28 15:32:34 -05:00
|
|
|
runner.addTest(testRegistry);
|
|
|
|
}
|
2016-10-17 10:51:54 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
const bool testsAdded = filterTests(runner, testRegistry, testName);
|
|
|
|
if (!testsAdded)
|
|
|
|
{
|
|
|
|
std::cerr << "Failed to match [" << testName << "] to any names in the external test-suite. "
|
|
|
|
<< "No external tests will be executed" << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2016-07-08 02:04:27 -05:00
|
|
|
|
2017-04-19 23:06:28 -05:00
|
|
|
if (!verbose)
|
|
|
|
{
|
|
|
|
runner.run(controller);
|
2015-10-21 05:01:47 -05:00
|
|
|
|
2020-02-23 12:32:10 -06:00
|
|
|
// output the ErrorsStream we got during the testing
|
2017-04-19 23:06:28 -05:00
|
|
|
if (!result.wasSuccessful())
|
2020-02-23 12:32:10 -06:00
|
|
|
writeTestLog(ErrorsStream.str() + '\n');
|
2017-04-19 23:06:28 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
runner.run(controller);
|
|
|
|
}
|
2017-04-07 08:37:20 -05:00
|
|
|
|
2015-10-21 05:01:47 -05:00
|
|
|
CPPUNIT_NS::CompilerOutputter outputter(&result, std::cerr);
|
2016-10-04 03:04:22 -05:00
|
|
|
outputter.setNoWrap();
|
2015-10-21 05:01:47 -05:00
|
|
|
outputter.write();
|
|
|
|
|
2019-05-01 16:12:56 -05:00
|
|
|
const std::deque<CPPUNIT_NS::TestFailure *> &failures = result.failures();
|
|
|
|
if (!envar && failures.size() > 0)
|
|
|
|
{
|
|
|
|
std::cerr << "\nTo reproduce the first test failure use:\n\n";
|
2020-01-21 05:21:08 -06:00
|
|
|
#ifdef STANDALONE_CPPUNIT // unittest
|
|
|
|
const char *cmd = "./unittest";
|
|
|
|
std::cerr << "To debug:\n\n";
|
|
|
|
std::cerr << " (cd test; CPPUNIT_TEST_NAME=\"" << (*failures.begin())->failedTestName() << "\" gdb --args " << cmd << ")\n\n";
|
2019-05-03 08:01:57 -05:00
|
|
|
#else
|
2020-01-17 15:18:42 -06:00
|
|
|
std::string aLib = UnitBase::get().getUnitLibPath();
|
|
|
|
size_t lastSlash = aLib.rfind('/');
|
|
|
|
if (lastSlash != std::string::npos)
|
|
|
|
aLib = aLib.substr(lastSlash + 1, aLib.length() - lastSlash - 4) + ".la";
|
2020-01-17 14:49:38 -06:00
|
|
|
std::cerr << "(cd test; CPPUNIT_TEST_NAME=\"" << (*failures.begin())->failedTestName() <<
|
2020-01-17 15:18:42 -06:00
|
|
|
"\" ./run_unit.sh --test-name " << aLib << ")\n\n";
|
2019-05-03 08:01:57 -05:00
|
|
|
#endif
|
2019-05-01 16:12:56 -05:00
|
|
|
}
|
|
|
|
|
2017-08-17 07:04:22 -05:00
|
|
|
return result.wasSuccessful();
|
2015-10-21 05:01:47 -05:00
|
|
|
}
|
|
|
|
|
2020-01-21 05:21:08 -06:00
|
|
|
// Standalone tests don't really use WSD
|
|
|
|
#ifndef STANDALONE_CPPUNIT
|
2017-09-19 13:06:46 -05:00
|
|
|
|
|
|
|
std::vector<int> getKitPids()
|
|
|
|
{
|
|
|
|
return LOOLWSD::getKitPids();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the PID of the forkit
|
|
|
|
std::vector<int> getForKitPids()
|
|
|
|
{
|
|
|
|
std::vector<int> pids;
|
|
|
|
if (LOOLWSD::ForKitProcId >= 0)
|
|
|
|
pids.push_back(LOOLWSD::ForKitProcId);
|
|
|
|
return pids;
|
|
|
|
}
|
|
|
|
|
2019-10-08 04:23:29 -05:00
|
|
|
/// How many live loolkit processes do we have ?
|
2017-09-19 13:06:46 -05:00
|
|
|
int getLoolKitProcessCount()
|
|
|
|
{
|
|
|
|
return getKitPids().size();
|
|
|
|
}
|
2020-01-21 05:21:08 -06:00
|
|
|
#endif
|
2017-09-19 13:06:46 -05:00
|
|
|
|
2015-10-21 05:01:47 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|