2017-06-06 02:53:41 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
2023-11-09 12:23:00 -06:00
|
|
|
* Copyright the Collabora Online contributors.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*
|
2017-06-06 02:53:41 -05:00
|
|
|
* 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
|
|
|
|
2020-12-24 11:15:37 -06:00
|
|
|
#define TST_LOG_REDIRECT
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <Unit.hpp>
|
2021-11-18 06:08:14 -06:00
|
|
|
#include <wsd/COOLWSD.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:
|
2021-04-12 13:39:46 -05:00
|
|
|
UnitClient()
|
|
|
|
: UnitWSD("UnitClient")
|
|
|
|
, _workerStarted(false)
|
2017-06-06 02:53:41 -05:00
|
|
|
{
|
2020-12-14 13:00:55 -06:00
|
|
|
constexpr std::chrono::minutes timeout_minutes(5);
|
|
|
|
setTimeout(timeout_minutes);
|
2017-06-06 02:53:41 -05:00
|
|
|
}
|
|
|
|
~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);
|
|
|
|
}
|
|
|
|
|
2020-12-24 11:15:37 -06:00
|
|
|
void invokeWSDTest() override
|
2017-06-06 02:53:41 -05:00
|
|
|
{
|
|
|
|
// this method gets called every few seconds.
|
|
|
|
if (_workerStarted)
|
|
|
|
return;
|
|
|
|
_workerStarted = true;
|
|
|
|
|
|
|
|
_worker = std::thread([this]{
|
2022-08-12 06:24:41 -05:00
|
|
|
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: */
|