2015-10-28 04:34:20 -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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Poco/Net/HTTPClientSession.h>
|
|
|
|
#include <Poco/Net/HTTPRequest.h>
|
|
|
|
#include <Poco/Net/HTTPResponse.h>
|
|
|
|
#include <Poco/Net/WebSocket.h>
|
2016-01-05 14:32:53 -06:00
|
|
|
#include <Poco/Path.h>
|
2015-11-19 04:01:34 -06:00
|
|
|
#include <Poco/StringTokenizer.h>
|
2015-10-28 04:34:20 -05:00
|
|
|
#include <Poco/URI.h>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
|
|
|
#include <LOOLProtocol.hpp>
|
2016-01-05 14:32:53 -06:00
|
|
|
#include <Common.hpp>
|
2016-01-06 12:47:03 -06:00
|
|
|
#include <ChildProcessSession.hpp>
|
2015-10-28 04:34:20 -05:00
|
|
|
|
|
|
|
/// Tests the HTTP WebSocket API of loolwsd. The server has to be started manually before running this test.
|
|
|
|
class HTTPWSTest : public CPPUNIT_NS::TestFixture
|
|
|
|
{
|
2015-11-19 04:11:47 -06:00
|
|
|
Poco::URI _uri;
|
|
|
|
Poco::Net::HTTPClientSession _session;
|
|
|
|
Poco::Net::HTTPRequest _request;
|
|
|
|
Poco::Net::HTTPResponse _response;
|
|
|
|
Poco::Net::WebSocket _socket;
|
|
|
|
|
2015-10-28 04:34:20 -05:00
|
|
|
CPPUNIT_TEST_SUITE(HTTPWSTest);
|
|
|
|
CPPUNIT_TEST(testPaste);
|
2016-01-18 04:44:35 -06:00
|
|
|
CPPUNIT_TEST(testLargePaste);
|
2015-11-19 04:01:34 -06:00
|
|
|
CPPUNIT_TEST(testRenderingOptions);
|
2015-10-28 04:34:20 -05:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
void testPaste();
|
2016-01-18 04:44:35 -06:00
|
|
|
void testLargePaste();
|
2015-11-19 04:01:34 -06:00
|
|
|
void testRenderingOptions();
|
2015-10-28 04:34:20 -05:00
|
|
|
|
|
|
|
void sendTextFrame(Poco::Net::WebSocket& socket, const std::string& string);
|
2015-11-19 04:11:47 -06:00
|
|
|
public:
|
|
|
|
HTTPWSTest()
|
2016-01-05 14:32:53 -06:00
|
|
|
: _uri("http://127.0.0.1:" + std::to_string(ClientPortNumber)),
|
2015-11-24 02:41:59 -06:00
|
|
|
_session(_uri.getHost(), _uri.getPort()),
|
|
|
|
_request(Poco::Net::HTTPRequest::HTTP_POST, "/ws"),
|
|
|
|
_socket(_session, _request, _response)
|
2015-11-19 04:11:47 -06:00
|
|
|
{
|
|
|
|
}
|
2015-10-28 04:34:20 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
void HTTPWSTest::testPaste()
|
|
|
|
{
|
|
|
|
// Load a document and make it empty.
|
|
|
|
std::string documentPath = TDOC "/hello.odt";
|
|
|
|
std::string documentURL = "file://" + Poco::Path(documentPath).makeAbsolute().toString();
|
2015-11-19 04:11:47 -06:00
|
|
|
sendTextFrame(_socket, "load url=" + documentURL);
|
|
|
|
sendTextFrame(_socket, "uno .uno:SelectAll");
|
|
|
|
sendTextFrame(_socket, "uno .uno:Delete");
|
2015-10-28 04:34:20 -05:00
|
|
|
|
|
|
|
// Paste some text into it.
|
2016-01-15 07:42:02 -06:00
|
|
|
sendTextFrame(_socket, "paste mimetype=text/plain;charset=utf-8\naaa bbb ccc");
|
2015-10-28 04:34:20 -05:00
|
|
|
|
|
|
|
// Check if the document contains the pasted text.
|
2015-11-19 04:11:47 -06:00
|
|
|
sendTextFrame(_socket, "uno .uno:SelectAll");
|
|
|
|
sendTextFrame(_socket, "gettextselection mimetype=text/plain;charset=utf-8");
|
2015-10-28 04:34:20 -05:00
|
|
|
std::string selection;
|
|
|
|
int flags;
|
|
|
|
int n;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
char buffer[100000];
|
2015-11-19 04:11:47 -06:00
|
|
|
n = _socket.receiveFrame(buffer, sizeof(buffer), flags);
|
2015-10-28 04:34:20 -05:00
|
|
|
if (n > 0 && (flags & Poco::Net::WebSocket::FRAME_OP_BITMASK) != Poco::Net::WebSocket::FRAME_OP_CLOSE)
|
|
|
|
{
|
2015-10-28 04:55:03 -05:00
|
|
|
std::string line = LOOLProtocol::getFirstLine(buffer, n);
|
2015-10-28 04:34:20 -05:00
|
|
|
std::string prefix = "textselectioncontent: ";
|
2015-10-28 04:55:03 -05:00
|
|
|
if (line.find(prefix) == 0)
|
2015-10-28 04:34:20 -05:00
|
|
|
{
|
2015-10-28 04:55:03 -05:00
|
|
|
selection = line.substr(prefix.length());
|
2015-10-28 04:34:20 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (n > 0 && (flags & Poco::Net::WebSocket::FRAME_OP_BITMASK) != Poco::Net::WebSocket::FRAME_OP_CLOSE);
|
2015-11-19 04:11:47 -06:00
|
|
|
_socket.shutdown();
|
2015-10-28 04:34:20 -05:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aaa bbb ccc"), selection);
|
|
|
|
}
|
|
|
|
|
2016-01-18 04:44:35 -06:00
|
|
|
void HTTPWSTest::testLargePaste()
|
|
|
|
{
|
|
|
|
// Load a document and make it empty.
|
|
|
|
std::string documentPath = TDOC "/hello.odt";
|
|
|
|
std::string documentURL = "file://" + Poco::Path(documentPath).makeAbsolute().toString();
|
|
|
|
sendTextFrame(_socket, "load url=" + documentURL);
|
|
|
|
sendTextFrame(_socket, "uno .uno:SelectAll");
|
|
|
|
sendTextFrame(_socket, "uno .uno:Delete");
|
|
|
|
|
|
|
|
// Paste some text into it.
|
|
|
|
std::ifstream documentStream(documentPath);
|
|
|
|
std::string documentContents((std::istreambuf_iterator<char>(documentStream)), std::istreambuf_iterator<char>());
|
|
|
|
sendTextFrame(_socket, "paste mimetype=text/html\n" + documentContents);
|
|
|
|
|
|
|
|
// Check if the server is still alive.
|
|
|
|
// This resulted first in a hang, as respose for the message never arrived, then a bit later in a Poco::TimeoutException.
|
|
|
|
sendTextFrame(_socket, "gettextselection mimetype=text/plain;charset=utf-8");
|
|
|
|
std::string selection;
|
|
|
|
int flags;
|
|
|
|
int n;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
char buffer[100000];
|
|
|
|
n = _socket.receiveFrame(buffer, sizeof(buffer), flags);
|
|
|
|
if (n > 0 && (flags & Poco::Net::WebSocket::FRAME_OP_BITMASK) != Poco::Net::WebSocket::FRAME_OP_CLOSE)
|
|
|
|
{
|
|
|
|
std::string line = LOOLProtocol::getFirstLine(buffer, n);
|
|
|
|
std::string prefix = "textselectioncontent: ";
|
|
|
|
if (line.find(prefix) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (n > 0 && (flags & Poco::Net::WebSocket::FRAME_OP_BITMASK) != Poco::Net::WebSocket::FRAME_OP_CLOSE);
|
|
|
|
_socket.shutdown();
|
|
|
|
}
|
|
|
|
|
2015-11-19 04:01:34 -06:00
|
|
|
void HTTPWSTest::testRenderingOptions()
|
|
|
|
{
|
|
|
|
// Load a document and get its size.
|
|
|
|
std::string documentPath = TDOC "/hide-whitespace.odt";
|
|
|
|
std::string documentURL = "file://" + Poco::Path(documentPath).makeAbsolute().toString();
|
|
|
|
std::string options = "{\"rendering\":{\".uno:HideWhitespace\":{\"type\":\"boolean\",\"value\":\"true\"}}}";
|
2015-11-19 04:11:47 -06:00
|
|
|
sendTextFrame(_socket, "load url=" + documentURL + " options=" + options);
|
|
|
|
sendTextFrame(_socket, "status");
|
2015-11-19 04:01:34 -06:00
|
|
|
|
|
|
|
std::string status;
|
|
|
|
int flags;
|
|
|
|
int n;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
char buffer[100000];
|
2015-11-19 04:11:47 -06:00
|
|
|
n = _socket.receiveFrame(buffer, sizeof(buffer), flags);
|
2015-11-19 04:01:34 -06:00
|
|
|
if (n > 0 && (flags & Poco::Net::WebSocket::FRAME_OP_BITMASK) != Poco::Net::WebSocket::FRAME_OP_CLOSE)
|
|
|
|
{
|
|
|
|
std::string line = LOOLProtocol::getFirstLine(buffer, n);
|
|
|
|
std::string prefix = "status: ";
|
|
|
|
if (line.find(prefix) == 0)
|
|
|
|
{
|
|
|
|
status = line.substr(prefix.length());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (n > 0 && (flags & Poco::Net::WebSocket::FRAME_OP_BITMASK) != Poco::Net::WebSocket::FRAME_OP_CLOSE);
|
2015-11-19 04:11:47 -06:00
|
|
|
_socket.shutdown();
|
2015-11-19 04:01:34 -06:00
|
|
|
// Expected format is something like 'type=text parts=2 current=0 width=12808 height=1142'.
|
|
|
|
Poco::StringTokenizer tokens(status, " ", Poco::StringTokenizer::TOK_IGNORE_EMPTY | Poco::StringTokenizer::TOK_TRIM);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(5), tokens.count());
|
|
|
|
std::string token = tokens[4];
|
|
|
|
std::string prefix = "height=";
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(0), token.find(prefix));
|
|
|
|
int height = std::stoi(token.substr(prefix.size()));
|
2016-01-11 04:24:20 -06:00
|
|
|
// HideWhitespace was ignored, this was 32532, should be around 16706.
|
|
|
|
CPPUNIT_ASSERT(height < 20000);
|
2015-11-19 04:01:34 -06:00
|
|
|
}
|
|
|
|
|
2015-10-28 04:34:20 -05:00
|
|
|
void HTTPWSTest::sendTextFrame(Poco::Net::WebSocket& socket, const std::string& string)
|
|
|
|
{
|
|
|
|
socket.sendFrame(string.data(), string.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(HTTPWSTest);
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|