libreoffice-online/test/UnitRenderShape.cpp
Ashod Nakashian 82560d9657 wsd: test assertion macros
Because the new-style tests are intrustive,
the exception that CppUnit throws on assertion
failures is caught and processed with the
application logic, which is far from ideal,
because it's very difficult to find the
cause of failure.

What we'd like is a way to control what happens
when an test assertion fails, such that we can
properly log/print the failure, and even break
in the debugger.

The new macros allow us to control the behavior
at compile-time and have added flexibility.
For now, they log an assertion failure before
invoking the CPPUNIT macro, and support a
compile-time directive to assert, which is
useful for breaking in the debugger.

Change-Id: If464ba246e3ec747f31496a4215cb73ef735dfaf
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/87625
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
2020-03-14 15:45:00 +01:00

172 lines
5.4 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 <memory>
#include <string>
#include <Poco/URI.h>
#include <test/lokassert.hpp>
#include <Unit.hpp>
#include <Util.hpp>
#include <helpers.hpp>
class LOOLWebSocket;
namespace
{
/**
* Strips <desc>...</desc> strings from an SVG, some of which are only in debug builds, so breaks
* comparison with a fixed reference.
*/
void stripDescriptions(std::vector<char>& svg)
{
static const std::string startDesc("<desc>");
static const std::string endDesc("</desc>");
static const std::string selfClose("/>");
while (true)
{
const auto itStart
= std::search(svg.begin(), svg.end(), startDesc.begin(), startDesc.end());
if (itStart == svg.end())
return;
const auto itClose
= std::search(itStart + 1, svg.end(), selfClose.begin(), selfClose.end());
const auto itEnd = std::search(itStart + 1, svg.end(), endDesc.begin(), endDesc.end());
if (itEnd != svg.end() && itClose != svg.end())
{
if (itEnd < itClose)
svg.erase(itStart, itEnd + endDesc.size());
else
svg.erase(itStart, itClose + selfClose.size());
}
else if (itEnd != svg.end())
{
svg.erase(itStart, itEnd + endDesc.size());
}
else if (itClose != svg.end())
{
svg.erase(itStart, itClose + selfClose.size());
}
else
{
// No more closing tags; possibly broken, as we found an opening tag.
return;
}
}
}
}
/// Render shape testcase.
class UnitRenderShape : public UnitWSD
{
TestResult testRenderShapeSelectionImpress();
TestResult testRenderShapeSelectionWriterImage();
public:
void invokeTest() override;
};
UnitBase::TestResult UnitRenderShape::testRenderShapeSelectionImpress()
{
const char* testname = "testRenderShapeSelectionImpress ";
try
{
std::string documentPath, documentURL;
helpers::getDocumentPathAndURL("shapes.odp", documentPath, documentURL, testname);
std::shared_ptr<LOOLWebSocket> socket = helpers::loadDocAndGetSocket(
Poco::URI(helpers::getTestServerURI()), documentURL, testname);
int major = 0;
int minor = 0;
helpers::getServerVersion(socket, major, minor, testname);
if (major != 6 || minor != 0)
{
TST_LOG("Skipping test on incompatible client [" << major << '.' << minor
<< "], expected [6.0].");
return TestResult::Ok;
}
helpers::selectAll(socket, testname);
std::this_thread::sleep_for(std::chrono::milliseconds(250));
helpers::sendTextFrame(socket, "rendershapeselection mimetype=image/svg+xml", testname);
std::vector<char> responseSVG
= helpers::getResponseMessage(socket, "shapeselectioncontent:", testname);
LOK_ASSERT(!responseSVG.empty());
auto it = std::find(responseSVG.begin(), responseSVG.end(), '\n');
if (it != responseSVG.end())
responseSVG.erase(responseSVG.begin(), ++it);
stripDescriptions(responseSVG);
LOK_ASSERT(helpers::svgMatch(testname, responseSVG, "shapes_impress.svg"));
}
catch (const Poco::Exception& exc)
{
LOK_ASSERT_FAIL(exc.displayText());
}
return TestResult::Ok;
}
UnitBase::TestResult UnitRenderShape::testRenderShapeSelectionWriterImage()
{
const char* testname = "testRenderShapeSelectionWriterImage ";
try
{
std::string documentPath, documentURL;
helpers::getDocumentPathAndURL("non-shape-image.odt", documentPath, documentURL, testname);
std::shared_ptr<LOOLWebSocket> socket = helpers::loadDocAndGetSocket(
Poco::URI(helpers::getTestServerURI()), documentURL, testname);
// Select the shape with SHIFT + F4
helpers::sendKeyPress(socket, 0, 771 | helpers::SpecialKey::skShift, testname);
std::this_thread::sleep_for(std::chrono::milliseconds(250));
helpers::sendTextFrame(socket, "rendershapeselection mimetype=image/svg+xml", testname);
std::vector<char> responseSVG
= helpers::getResponseMessage(socket, "shapeselectioncontent:", testname);
LOK_ASSERT(!responseSVG.empty());
auto it = std::find(responseSVG.begin(), responseSVG.end(), '\n');
if (it != responseSVG.end())
responseSVG.erase(responseSVG.begin(), ++it);
stripDescriptions(responseSVG);
LOK_ASSERT(helpers::svgMatch(testname, responseSVG, "non_shape_writer_image.svg"));
}
catch (const Poco::Exception& exc)
{
LOK_ASSERT_FAIL(exc.displayText());
}
return TestResult::Ok;
}
void UnitRenderShape::invokeTest()
{
UnitBase::TestResult result = testRenderShapeSelectionImpress();
if (result != TestResult::Ok)
exitTest(result);
result = testRenderShapeSelectionWriterImage();
if (result != TestResult::Ok)
exitTest(result);
exitTest(TestResult::Ok);
}
UnitBase* unit_create_wsd(void) { return new UnitRenderShape(); }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */