2016-04-20 20:14:51 -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-12-20 07:06:26 -06:00
|
|
|
#include <config.h>
|
2016-04-20 20:14:51 -05:00
|
|
|
|
2016-04-25 01:25:23 -05:00
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
2016-04-20 20:14:51 -05:00
|
|
|
#include <Poco/Dynamic/Var.h>
|
|
|
|
#include <Poco/JSON/JSON.h>
|
|
|
|
#include <Poco/JSON/Parser.h>
|
|
|
|
#include <Poco/Net/AcceptCertificateHandler.h>
|
|
|
|
#include <Poco/Net/HTTPClientSession.h>
|
|
|
|
#include <Poco/Net/HTTPRequest.h>
|
|
|
|
#include <Poco/Net/HTTPResponse.h>
|
|
|
|
#include <Poco/Net/HTTPSClientSession.h>
|
|
|
|
#include <Poco/Net/InvalidCertificateHandler.h>
|
|
|
|
#include <Poco/Net/NetException.h>
|
|
|
|
#include <Poco/Net/PrivateKeyPassphraseHandler.h>
|
|
|
|
#include <Poco/Net/SSLManager.h>
|
|
|
|
#include <Poco/Net/Socket.h>
|
|
|
|
#include <Poco/Path.h>
|
|
|
|
#include <Poco/StreamCopier.h>
|
|
|
|
#include <Poco/StringTokenizer.h>
|
|
|
|
#include <Poco/Thread.h>
|
|
|
|
#include <Poco/URI.h>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
|
|
|
#include <Common.hpp>
|
|
|
|
#include <UserMessages.hpp>
|
|
|
|
#include <Util.hpp>
|
2016-11-24 08:56:06 -06:00
|
|
|
#include <Protocol.hpp>
|
2016-11-10 02:47:25 -06:00
|
|
|
#include <LOOLWebSocket.hpp>
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <helpers.hpp>
|
|
|
|
#include <countloolkits.hpp>
|
|
|
|
#include <test.hpp>
|
2016-04-28 21:47:09 -05:00
|
|
|
|
|
|
|
using namespace helpers;
|
2016-04-20 20:14:51 -05:00
|
|
|
|
|
|
|
/// Tests the HTTP WebSocket API of loolwsd. The server has to be started manually before running this test.
|
|
|
|
class HTTPCrashTest : public CPPUNIT_NS::TestFixture
|
|
|
|
{
|
|
|
|
const Poco::URI _uri;
|
|
|
|
Poco::Net::HTTPResponse _response;
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(HTTPCrashTest);
|
|
|
|
|
2016-04-24 11:35:29 -05:00
|
|
|
CPPUNIT_TEST(testBarren);
|
2017-04-16 23:39:56 -05:00
|
|
|
CPPUNIT_TEST(testCrashKit);
|
2017-03-20 20:33:59 -05:00
|
|
|
CPPUNIT_TEST(testRecoverAfterKitCrash);
|
2016-11-11 21:38:14 -06:00
|
|
|
CPPUNIT_TEST(testCrashForkit);
|
2016-04-20 20:14:51 -05:00
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
2016-04-24 11:35:29 -05:00
|
|
|
void testBarren();
|
2016-04-20 20:14:51 -05:00
|
|
|
void testCrashKit();
|
2017-03-20 20:33:59 -05:00
|
|
|
void testRecoverAfterKitCrash();
|
2016-11-11 21:38:14 -06:00
|
|
|
void testCrashForkit();
|
2016-04-20 20:14:51 -05:00
|
|
|
|
2016-04-24 11:31:01 -05:00
|
|
|
static
|
2017-09-19 15:16:44 -05:00
|
|
|
void killLoKitProcesses();
|
|
|
|
void killForkitProcess();
|
2016-04-24 11:31:01 -05:00
|
|
|
|
2016-04-20 20:14:51 -05:00
|
|
|
public:
|
|
|
|
HTTPCrashTest()
|
2016-05-03 02:40:25 -05:00
|
|
|
: _uri(helpers::getTestServerURI())
|
2016-04-20 20:14:51 -05:00
|
|
|
{
|
|
|
|
#if ENABLE_SSL
|
|
|
|
Poco::Net::initializeSSL();
|
|
|
|
// Just accept the certificate anyway for testing purposes
|
|
|
|
Poco::SharedPtr<Poco::Net::InvalidCertificateHandler> invalidCertHandler = new Poco::Net::AcceptCertificateHandler(false);
|
|
|
|
Poco::Net::Context::Params sslParams;
|
|
|
|
Poco::Net::Context::Ptr sslContext = new Poco::Net::Context(Poco::Net::Context::CLIENT_USE, sslParams);
|
2016-12-22 08:04:07 -06:00
|
|
|
Poco::Net::SSLManager::instance().initializeClient(nullptr, invalidCertHandler, sslContext);
|
2016-04-20 20:14:51 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLE_SSL
|
|
|
|
~HTTPCrashTest()
|
|
|
|
{
|
|
|
|
Poco::Net::uninitializeSSL();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void setUp()
|
|
|
|
{
|
2018-01-22 08:11:43 -06:00
|
|
|
resetTestStartTime();
|
2016-05-12 09:59:00 -05:00
|
|
|
testCountHowManyLoolkits();
|
2018-01-22 08:11:43 -06:00
|
|
|
resetTestStartTime();
|
2016-04-20 20:14:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void tearDown()
|
|
|
|
{
|
2018-01-22 08:11:43 -06:00
|
|
|
resetTestStartTime();
|
2016-05-12 09:59:00 -05:00
|
|
|
testNoExtraLoolKitsLeft();
|
2018-01-22 08:11:43 -06:00
|
|
|
resetTestStartTime();
|
2016-04-20 20:14:51 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-24 11:35:29 -05:00
|
|
|
void HTTPCrashTest::testBarren()
|
|
|
|
{
|
|
|
|
// Kill all kit processes and try loading a document.
|
2018-02-07 03:17:42 -06:00
|
|
|
const char* testname = "barren ";
|
2016-04-24 11:35:29 -05:00
|
|
|
try
|
|
|
|
{
|
2017-09-19 15:16:44 -05:00
|
|
|
killLoKitProcesses();
|
2016-11-14 07:05:12 -06:00
|
|
|
countLoolKitProcesses(0);
|
2016-04-24 11:35:29 -05:00
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Loading after kill.");
|
2016-05-12 09:59:00 -05:00
|
|
|
|
2016-04-24 11:35:29 -05:00
|
|
|
// Load a document and get its status.
|
2018-02-07 03:17:42 -06:00
|
|
|
std::shared_ptr<LOOLWebSocket> socket = loadDocAndGetSocket("hello.odt", _uri, testname);
|
2016-10-22 10:35:22 -05:00
|
|
|
|
|
|
|
sendTextFrame(socket, "status", testname);
|
|
|
|
assertResponseString(socket, "status:", testname);
|
2016-04-24 11:35:29 -05:00
|
|
|
}
|
|
|
|
catch (const Poco::Exception& exc)
|
|
|
|
{
|
|
|
|
CPPUNIT_FAIL(exc.displayText());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-20 20:14:51 -05:00
|
|
|
void HTTPCrashTest::testCrashKit()
|
|
|
|
{
|
2018-02-07 03:17:42 -06:00
|
|
|
const char* testname = "crashKit ";
|
2016-04-20 20:14:51 -05:00
|
|
|
try
|
|
|
|
{
|
2018-02-07 03:17:42 -06:00
|
|
|
std::shared_ptr<LOOLWebSocket> socket = loadDocAndGetSocket("empty.odt", _uri, testname);
|
2016-04-20 20:14:51 -05:00
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Killing loolkit instances.");
|
2017-02-28 21:31:36 -06:00
|
|
|
|
2017-09-19 15:16:44 -05:00
|
|
|
killLoKitProcesses();
|
2016-11-14 07:05:12 -06:00
|
|
|
countLoolKitProcesses(0);
|
2016-04-20 20:14:51 -05:00
|
|
|
|
2016-10-15 16:09:28 -05:00
|
|
|
// We expect the client connection to close.
|
|
|
|
// In the future we might restore the kit, but currently we don't.
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Reading after kill.");
|
2016-05-12 09:59:00 -05:00
|
|
|
|
2016-10-15 16:09:28 -05:00
|
|
|
// Drain the socket.
|
|
|
|
getResponseMessage(socket, "", testname, 1000);
|
|
|
|
|
2017-01-15 11:17:19 -06:00
|
|
|
std::string message;
|
2018-02-07 03:17:42 -06:00
|
|
|
const int statusCode = getErrorCode(socket, message, testname);
|
2017-01-15 11:17:19 -06:00
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<int>(Poco::Net::WebSocket::WS_ENDPOINT_GOING_AWAY), statusCode);
|
2016-04-20 20:14:51 -05:00
|
|
|
|
|
|
|
// respond close frame
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Shutting down socket.");
|
2016-11-10 02:47:25 -06:00
|
|
|
socket->shutdown();
|
2016-10-15 16:09:28 -05:00
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Reading after shutdown.");
|
2017-02-28 21:31:36 -06:00
|
|
|
|
2016-04-20 20:14:51 -05:00
|
|
|
// no more messages is received.
|
2017-01-15 11:17:19 -06:00
|
|
|
int flags;
|
|
|
|
char buffer[READ_BUFFER_SIZE];
|
|
|
|
const int bytes = socket->receiveFrame(buffer, sizeof(buffer), flags);
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG(testname << "Got " << LOOLProtocol::getAbbreviatedFrameDump(buffer, bytes, flags));
|
2017-01-01 16:20:35 -06:00
|
|
|
|
|
|
|
// While we expect no more messages after shutdown call, apparently
|
|
|
|
// sometimes we _do_ get data. Even when the receiveFrame in the loop
|
|
|
|
// returns a CLOSE frame (with 2 bytes) the one after shutdown sometimes
|
|
|
|
// returns a BINARY frame with the next payload sent by wsd.
|
|
|
|
// This is an oddity of Poco and is not something we need to validate here.
|
|
|
|
//CPPUNIT_ASSERT_MESSAGE("Expected no more data", bytes <= 2); // The 2-byte marker is ok.
|
|
|
|
//CPPUNIT_ASSERT_EQUAL(0x88, flags);
|
2016-04-20 20:14:51 -05:00
|
|
|
}
|
|
|
|
catch (const Poco::Exception& exc)
|
|
|
|
{
|
|
|
|
CPPUNIT_FAIL(exc.displayText());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-20 20:33:59 -05:00
|
|
|
void HTTPCrashTest::testRecoverAfterKitCrash()
|
|
|
|
{
|
2018-02-07 03:17:42 -06:00
|
|
|
const char* testname = "recoverAfterKitCrash ";
|
2017-03-20 20:33:59 -05:00
|
|
|
try
|
|
|
|
{
|
2018-02-07 03:17:42 -06:00
|
|
|
std::shared_ptr<LOOLWebSocket> socket = loadDocAndGetSocket("empty.odt", _uri, testname);
|
2017-03-20 20:33:59 -05:00
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Killing loolkit instances.");
|
2017-03-20 20:33:59 -05:00
|
|
|
|
2017-09-19 15:16:44 -05:00
|
|
|
killLoKitProcesses();
|
2017-03-20 20:33:59 -05:00
|
|
|
countLoolKitProcesses(0);
|
|
|
|
|
|
|
|
// We expect the client connection to close.
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Reconnect after kill.");
|
2017-03-20 20:33:59 -05:00
|
|
|
|
2018-02-07 03:17:42 -06:00
|
|
|
std::shared_ptr<LOOLWebSocket> socket2 = loadDocAndGetSocket("empty.odt", _uri, testname);
|
2017-03-20 20:33:59 -05:00
|
|
|
sendTextFrame(socket2, "status", testname);
|
|
|
|
assertResponseString(socket2, "status:", testname);
|
|
|
|
}
|
|
|
|
catch (const Poco::Exception& exc)
|
|
|
|
{
|
|
|
|
CPPUNIT_FAIL(exc.displayText());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 21:38:14 -06:00
|
|
|
void HTTPCrashTest::testCrashForkit()
|
|
|
|
{
|
2018-02-07 03:17:42 -06:00
|
|
|
const char* testname = "crashForkit ";
|
2016-11-11 21:38:14 -06:00
|
|
|
try
|
|
|
|
{
|
2018-02-07 03:17:42 -06:00
|
|
|
std::shared_ptr<LOOLWebSocket> socket = loadDocAndGetSocket("empty.odt", _uri, testname);
|
2016-11-11 21:38:14 -06:00
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Killing forkit.");
|
2017-09-19 15:16:44 -05:00
|
|
|
killForkitProcess();
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Communicating after kill.");
|
2016-11-11 21:38:14 -06:00
|
|
|
|
|
|
|
sendTextFrame(socket, "status", testname);
|
|
|
|
assertResponseString(socket, "status:", testname);
|
|
|
|
|
|
|
|
// respond close frame
|
|
|
|
socket->shutdown();
|
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Killing loolkit.");
|
2017-09-19 15:16:44 -05:00
|
|
|
killLoKitProcesses();
|
2016-11-14 07:05:12 -06:00
|
|
|
countLoolKitProcesses(0);
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("Communicating after kill.");
|
2016-11-11 21:38:14 -06:00
|
|
|
loadDocAndGetSocket("empty.odt", _uri, testname);
|
|
|
|
}
|
|
|
|
catch (const Poco::Exception& exc)
|
|
|
|
{
|
|
|
|
CPPUNIT_FAIL(exc.displayText());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 08:11:43 -06:00
|
|
|
static void killPids(const std::vector<int> &pids, const std::string& testname)
|
2016-04-24 11:31:01 -05:00
|
|
|
{
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG("kill pids " << pids.size());
|
2017-09-19 15:16:44 -05:00
|
|
|
// Now kill them
|
|
|
|
for (int pid : pids)
|
2016-04-24 11:31:01 -05:00
|
|
|
{
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG_BEGIN("Killing " << pid);
|
2017-09-19 15:16:44 -05:00
|
|
|
if (kill(pid, SIGKILL) == -1)
|
2018-01-22 08:11:43 -06:00
|
|
|
TST_LOG_APPEND("kill(" << pid << ", SIGKILL) failed: " << std::strerror(errno));
|
|
|
|
TST_LOG_END;
|
2016-04-24 11:31:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-19 15:16:44 -05:00
|
|
|
void HTTPCrashTest::killLoKitProcesses()
|
|
|
|
{
|
2018-01-22 08:11:43 -06:00
|
|
|
killPids(getKitPids(), "killLoKitProcesses ");
|
2017-09-19 15:16:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void HTTPCrashTest::killForkitProcess()
|
|
|
|
{
|
2018-01-22 08:11:43 -06:00
|
|
|
killPids(getForKitPids(), "killForkitProcess ");
|
2017-09-19 15:16:44 -05:00
|
|
|
}
|
|
|
|
|
2016-04-20 20:14:51 -05:00
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(HTTPCrashTest);
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|