2017-06-06 02:53:41 -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/.
|
|
|
|
*/
|
|
|
|
|
2020-01-17 14:49:38 -06:00
|
|
|
// Runs old-style CPPUNIT tests in their own thread inside a WSD process.
|
|
|
|
// Depending which cppunit objects this is linked with this runs different
|
|
|
|
// tests.
|
2017-06-06 02:53:41 -05:00
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <config.h>
|
2017-06-06 02:53:41 -05:00
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <Unit.hpp>
|
|
|
|
#include <wsd/LOOLWSD.hpp>
|
2017-06-06 02:53:41 -05:00
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <test.hpp>
|
2017-06-06 02:53:41 -05:00
|
|
|
|
|
|
|
// Inside the WSD process
|
|
|
|
class UnitClient : public UnitWSD
|
|
|
|
{
|
|
|
|
bool _workerStarted;
|
|
|
|
std::thread _worker;
|
|
|
|
|
|
|
|
public:
|
|
|
|
UnitClient() :
|
|
|
|
_workerStarted(false)
|
|
|
|
{
|
|
|
|
int timeout_minutes = 5;
|
|
|
|
setTimeout(timeout_minutes * 60 * 1000);
|
|
|
|
}
|
|
|
|
~UnitClient()
|
|
|
|
{
|
|
|
|
LOG_INF("Joining test worker thread\n");
|
|
|
|
_worker.join();
|
|
|
|
}
|
|
|
|
|
2017-06-20 02:34:16 -05:00
|
|
|
bool filterAlertAllusers(const std::string & msg) override
|
2017-06-16 11:55:23 -05:00
|
|
|
{
|
2020-05-24 08:10:18 -05:00
|
|
|
std::cout << "Alert: " << msg << '\n';
|
2017-06-16 11:55:23 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-06 02:53:41 -05:00
|
|
|
void configure(Poco::Util::LayeredConfiguration& config) override
|
|
|
|
{
|
|
|
|
UnitWSD::configure(config);
|
|
|
|
// force HTTPS - to test harder
|
|
|
|
config.setBool("ssl.enable", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void invokeTest() override
|
|
|
|
{
|
|
|
|
// this method gets called every few seconds.
|
|
|
|
if (_workerStarted)
|
|
|
|
return;
|
|
|
|
_workerStarted = true;
|
|
|
|
|
|
|
|
_worker = std::thread([this]{
|
|
|
|
if (runClientTests(false, true))
|
2017-09-19 13:06:46 -05:00
|
|
|
exitTest(TestResult::Ok);
|
2017-06-06 02:53:41 -05:00
|
|
|
else
|
2017-09-19 13:06:46 -05:00
|
|
|
exitTest(TestResult::Failed);
|
2017-06-06 02:53:41 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
UnitBase *unit_create_wsd(void)
|
|
|
|
{
|
|
|
|
return new UnitClient();
|
|
|
|
}
|
|
|
|
|
2017-09-19 15:16:44 -05:00
|
|
|
// Allows re-use of UnitClient in test.cpp impls.
|
2020-01-21 05:21:08 -06:00
|
|
|
#ifdef STANDALONE_CPPUNIT
|
|
|
|
# error "Should never be compiled this way";
|
|
|
|
#endif
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <test.cpp>
|
2017-09-19 15:16:44 -05:00
|
|
|
|
2017-06-06 02:53:41 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|