libreoffice-online/test/UnitMinSocketBufferSize.cpp

86 lines
2.9 KiB
C++

/* -*- 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 "config.h"
#include "Log.hpp"
#include "Protocol.hpp"
#include "Unit.hpp"
#include "UnitHTTP.hpp"
#include "helpers.hpp"
using namespace helpers;
class UnitMinSocketBufferSize: public UnitWSD
{
enum class Phase {
Load, // load the document
Request, // Request tiles etc.
CheckResponse // Check if we got correct response
} _phase;
std::string _docURL, _docPath;
std::unique_ptr<UnitWebSocket> _ws;
public:
UnitMinSocketBufferSize() :
_phase(Phase::Load)
{
}
virtual void invokeTest()
{
switch (_phase)
{
case Phase::Load:
{
getDocumentPathAndURL("Example.odt", _docPath, _docURL, "unitMinSocketBufferSize ");
_ws = std::unique_ptr<UnitWebSocket>(new UnitWebSocket(_docURL));
assert(_ws.get());
_phase = Phase::Request;
LOG_DBG("Document loaded successfully.");
break;
}
case Phase::Request:
{
const std::string loadMsg = "load url=" + _docURL;
const std::string tilecombineMsg = "tilecombine part=0 width=256 height=256 tileposx=0,3840,7680,11520,0,3840,7680,11520,0,3840,7680,11520,0,3840,7680,11520,0,3840,7680,11520 tileposy=0,0,0,0,3840,3840,3840,3840,7680,7680,7680,7680,11520,11520,11520,11520,15360,15360,15360,15360 tilewidth=3840 tileheight=3840";
_ws->getLOOLWebSocket()->sendFrame(loadMsg.data(), loadMsg.size());
_ws->getLOOLWebSocket()->sendFrame(tilecombineMsg.data(), tilecombineMsg.size());
LOG_DBG("Tilecombine request sent");
_phase = Phase::CheckResponse;
break;
}
case Phase::CheckResponse:
LOG_DBG("Checking if get back all the tiles");
int nTiles = 20;
bool success = true;
while (nTiles--)
{
const auto tile = getResponseMessage(*_ws->getLOOLWebSocket(), "tile: part=0 width=256 height=256", "Waiting for tiles ...");
const auto firstLine = LOOLProtocol::getFirstLine(tile);
LOG_DBG("Tile received " << firstLine);
if (!LOOLProtocol::matchPrefix("tile:", firstLine))
{
success = false;
}
}
exitTest(success ? TestResult::Ok : TestResult::Failed);
break;
}
}
};
UnitBase *unit_create_wsd(void)
{
return new UnitMinSocketBufferSize();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */