9ff4fd5ccc
so use that instead Change-Id: I0a627fdd2f2657a3f23d47f014ff7019cab544f2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162330 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
120 lines
4.7 KiB
C++
120 lines
4.7 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* 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/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_TEST_UNOAPI_TEST_HXX
|
|
#define INCLUDED_TEST_UNOAPI_TEST_HXX
|
|
|
|
#include <sal/config.h>
|
|
|
|
#include <string_view>
|
|
|
|
#include <rtl/ref.hxx>
|
|
#include <test/bootstrapfixture.hxx>
|
|
#include <test/testinteractionhandler.hxx>
|
|
#include <unotest/macros_test.hxx>
|
|
#include <com/sun/star/lang/XComponent.hpp>
|
|
#include <osl/file.hxx>
|
|
#include <unotools/tempfile.hxx>
|
|
#include <vcl/filter/PDFiumLibrary.hxx>
|
|
|
|
// basic uno api test class
|
|
|
|
class OOO_DLLPUBLIC_TEST UnoApiTest : public test::BootstrapFixture, public unotest::MacrosTest
|
|
{
|
|
public:
|
|
UnoApiTest(OUString path);
|
|
|
|
virtual void setUp() override;
|
|
virtual void tearDown() override;
|
|
|
|
OUString createFileURL(std::u16string_view aFileBase);
|
|
OUString createFilePath(std::u16string_view aFileBase);
|
|
void load(const OUString& rURL, const char* pPassword = nullptr);
|
|
void loadWithParams(const OUString& rURL,
|
|
const css::uno::Sequence<css::beans::PropertyValue>& rParams);
|
|
OUString loadFromFile(std::u16string_view aFileBase, const char* pPassword = nullptr);
|
|
|
|
css::uno::Any executeMacro(const OUString& rScriptURL,
|
|
const css::uno::Sequence<css::uno::Any>& rParams = {});
|
|
|
|
void save(const OUString& rFilter, const char* pPassword = nullptr);
|
|
void saveWithParams(const css::uno::Sequence<css::beans::PropertyValue>& rParams);
|
|
void saveAndReload(const OUString& rFilter, const char* pPassword = nullptr);
|
|
|
|
std::unique_ptr<vcl::pdf::PDFiumDocument> parsePDFExport(const OString& rPassword = OString());
|
|
|
|
void createTempCopy(std::u16string_view fileName);
|
|
|
|
void skipValidation() { mbSkipValidation = true; }
|
|
void setFilterOptions(const OUString& rFilterOptions) { maFilterOptions = rFilterOptions; }
|
|
|
|
void setImportFilterOptions(const OUString& rFilterOptions)
|
|
{
|
|
maImportFilterOptions = rFilterOptions;
|
|
}
|
|
|
|
void setImportFilterName(const OUString& rFilterName) { maImportFilterName = rFilterName; }
|
|
|
|
protected:
|
|
// reference to document component that we are testing
|
|
css::uno::Reference<css::lang::XComponent> mxComponent;
|
|
|
|
// In case the test needs to work with two documents at the same time
|
|
css::uno::Reference<css::lang::XComponent> mxComponent2;
|
|
|
|
utl::TempFileNamed maTempFile;
|
|
|
|
SvMemoryStream maMemory; // Underlying memory for parsed PDF files.
|
|
|
|
rtl::Reference<TestInteractionHandler> xInteractionHandler;
|
|
|
|
private:
|
|
void
|
|
setTestInteractionHandler(const char* pPassword,
|
|
std::vector<com::sun::star::beans::PropertyValue>& rFilterOptions);
|
|
|
|
bool mbSkipValidation;
|
|
OUString m_aBaseString;
|
|
OUString maFilterOptions;
|
|
|
|
OUString maImportFilterOptions;
|
|
OUString maImportFilterName;
|
|
};
|
|
|
|
inline void assertRectangleEqual(const tools::Rectangle& rExpected, const tools::Rectangle& rActual,
|
|
const sal_Int32 nTolerance, const CppUnit::SourceLine& rSourceLine)
|
|
{
|
|
CPPUNIT_NS::assertDoubleEquals(rExpected.Top(), rActual.Top(), nTolerance, rSourceLine,
|
|
"different Top");
|
|
CPPUNIT_NS::assertDoubleEquals(rExpected.Left(), rActual.Left(), nTolerance, rSourceLine,
|
|
"different Left");
|
|
CPPUNIT_NS::assertDoubleEquals(rExpected.GetWidth(), rActual.GetWidth(), nTolerance,
|
|
rSourceLine, "different Width");
|
|
CPPUNIT_NS::assertDoubleEquals(rExpected.GetHeight(), rActual.GetHeight(), nTolerance,
|
|
rSourceLine, "different Height");
|
|
}
|
|
|
|
#define CPPUNIT_ASSERT_RECTANGLE_EQUAL_WITH_TOLERANCE(aExpected, aActual, aTolerance) \
|
|
assertRectangleEqual(aExpected, aActual, aTolerance, CPPUNIT_SOURCELINE())
|
|
|
|
inline void assertPointEqual(const Point& rExpected, const Point& rActual,
|
|
const sal_Int32 nTolerance, const CppUnit::SourceLine& rSourceLine)
|
|
{
|
|
CPPUNIT_NS::assertDoubleEquals(rExpected.X(), rActual.X(), nTolerance, rSourceLine,
|
|
"different X");
|
|
CPPUNIT_NS::assertDoubleEquals(rExpected.Y(), rActual.Y(), nTolerance, rSourceLine,
|
|
"different Y");
|
|
}
|
|
|
|
#define CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(aExpected, aActual, aTolerance) \
|
|
assertPointEqual(aExpected, aActual, aTolerance, CPPUNIT_SOURCELINE())
|
|
|
|
#endif // INCLUDED_TEST_UNOAPI_TEST_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|