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 file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
2017-06-19 07:55:07 -05:00
|
|
|
#include "test.hpp"
|
|
|
|
|
2017-03-08 10:38:22 -06:00
|
|
|
#include "config.h"
|
|
|
|
|
2016-10-12 03:47:26 -05:00
|
|
|
#include <cstdlib>
|
2015-10-21 05:01:47 -05:00
|
|
|
#include <iostream>
|
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>
|
|
|
|
#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>
|
2015-10-21 05:01:47 -05:00
|
|
|
|
2016-09-14 16:43:56 -05:00
|
|
|
#include <Log.hpp>
|
|
|
|
|
2016-04-24 19:59:58 -05:00
|
|
|
class HTTPGetTest;
|
|
|
|
|
2016-10-17 10:51:54 -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
|
|
|
}
|
|
|
|
|
2017-04-07 08:37:20 -05:00
|
|
|
int main(int argc, char** argv)
|
2016-08-28 15:32:34 -05:00
|
|
|
{
|
2017-04-19 23:06:28 -05:00
|
|
|
const bool verbose = (argc > 1 && std::string("--verbose") == argv[1]);
|
|
|
|
const char* loglevel = verbose ? "trace" : "error";
|
2017-04-07 08:37:20 -05:00
|
|
|
|
|
|
|
Log::initialize("tst", loglevel, true, false, {});
|
2016-09-14 16:43:56 -05:00
|
|
|
|
2017-05-11 21:08:20 -05:00
|
|
|
runClientTests(true, verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool IsStandalone = false;
|
|
|
|
|
|
|
|
bool isStandalone()
|
|
|
|
{
|
|
|
|
return IsStandalone;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runClientTests(bool standalone, bool verbose)
|
|
|
|
{
|
|
|
|
IsStandalone = standalone;
|
|
|
|
|
2016-08-28 15:32:34 -05:00
|
|
|
CPPUNIT_NS::TestResult controller;
|
|
|
|
CPPUNIT_NS::TestResultCollector result;
|
|
|
|
controller.addListener(&result);
|
|
|
|
CPPUNIT_NS::BriefTestProgressListener progress;
|
|
|
|
controller.addListener(&progress);
|
|
|
|
controller.addListener(new CPPUNIT_NS::TextTestProgressListener());
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
// redirect std::cerr temporarily
|
|
|
|
std::stringstream errorBuffer;
|
|
|
|
std::streambuf* oldCerr = std::cerr.rdbuf(errorBuffer.rdbuf());
|
2017-04-07 08:37:20 -05:00
|
|
|
|
2017-04-19 23:06:28 -05:00
|
|
|
runner.run(controller);
|
2015-10-21 05:01:47 -05:00
|
|
|
|
2017-04-19 23:06:28 -05:00
|
|
|
std::cerr.rdbuf(oldCerr);
|
2017-04-07 08:37:20 -05:00
|
|
|
|
2017-04-19 23:06:28 -05:00
|
|
|
// output the errors we got during the testing
|
|
|
|
if (!result.wasSuccessful())
|
|
|
|
std::cerr << errorBuffer.str() << std::endl;
|
|
|
|
}
|
|
|
|
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();
|
|
|
|
|
|
|
|
return result.wasSuccessful() ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|