office-gobmx/test/source/text/baseindex.cxx
Gabor Kelemen 7ac769c1a9 tdf#42949 Fix IWYU warnings in test/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.

Change-Id: Id1ee9b6d44315443d023bdfbf9ae8e5aa2158ab2
Reviewed-on: https://gerrit.libreoffice.org/85171
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2019-12-19 10:20:04 +01:00

151 lines
5.4 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/.
*/
#include <cppunit/TestAssert.h>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/graphic/XGraphic.hpp>
#include <com/sun/star/text/XTextColumns.hpp>
#include <com/sun/star/text/XTextSection.hpp>
#include <vcl/BitmapTools.hxx>
#include <vcl/pngwrite.hxx>
#include <unotools/tempfile.hxx>
#include <tools/stream.hxx>
#include <test/unoapi_property_testers.hxx>
#include <test/text/baseindex.hxx>
namespace
{
BitmapEx createExampleBitmap()
{
vcl::bitmap::RawBitmap aRawBitmap(Size(4, 4), 24);
aRawBitmap.SetPixel(0, 0, COL_LIGHTBLUE);
aRawBitmap.SetPixel(0, 1, COL_LIGHTGREEN);
aRawBitmap.SetPixel(1, 0, COL_LIGHTRED);
aRawBitmap.SetPixel(1, 1, COL_LIGHTMAGENTA);
return vcl::bitmap::CreateFromData(std::move(aRawBitmap));
}
void writerFileWithBitmap(OUString const& rURL)
{
BitmapEx aBitmapEx = createExampleBitmap();
SvFileStream aFileStream(rURL, StreamMode::READ | StreamMode::WRITE);
vcl::PNGWriter aWriter(aBitmapEx);
aWriter.Write(aFileStream);
aFileStream.Seek(STREAM_SEEK_TO_BEGIN);
aFileStream.Close();
}
}
namespace apitest
{
BaseIndex::~BaseIndex() {}
void BaseIndex::testBaseIndexProperties()
{
css::uno::Reference<css::beans::XPropertySet> xBaseIndex(init(), css::uno::UNO_QUERY_THROW);
testStringProperty(xBaseIndex, "Title", "Value");
testBooleanProperty(xBaseIndex, "IsProtected");
testStringProperty(xBaseIndex, "ParaStyleHeading", "Value");
testStringProperty(xBaseIndex, "ParaStyleLevel1", "Value");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel2");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel3");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel4");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel5");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel6");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel7");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel8");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel9");
testStringOptionalProperty(xBaseIndex, "ParaStyleLevel10");
testStringOptionalProperty(xBaseIndex, "ParaStyleSeparator");
// [property] XTextColumns TextColumns;
{
OUString name = "TextColumns";
css::uno::Reference<css::text::XTextColumns> xGetTextColumns;
CPPUNIT_ASSERT(xBaseIndex->getPropertyValue(name) >>= xGetTextColumns);
xGetTextColumns->setColumnCount(xGetTextColumns->getColumnCount() + 1);
xBaseIndex->setPropertyValue(name, css::uno::makeAny(xGetTextColumns));
css::uno::Reference<css::text::XTextColumns> xSetTextColumns;
CPPUNIT_ASSERT(xBaseIndex->getPropertyValue(name) >>= xSetTextColumns);
//CPPUNIT_ASSERT_EQUAL(xGetTextColumns->getColumnCount(), xSetTextColumns->getColumnCount());
}
// [property] com::sun::star::graphic::XGraphic BackGraphic;
// [property] string BackGraphicURL;
{
OUString name = "BackGraphicURL";
bool bOK = false;
try
{
xBaseIndex->getPropertyValue(name);
}
catch (css::uno::RuntimeException const& /*ex*/)
{
bOK = true;
}
// BackGraphicURL is "set-only" attribute
CPPUNIT_ASSERT_MESSAGE("Expected RuntimeException wasn't thrown", bOK);
utl::TempFile aTempFile;
aTempFile.EnableKillingFile();
writerFileWithBitmap(aTempFile.GetURL());
css::uno::Reference<css::graphic::XGraphic> xGraphic;
CPPUNIT_ASSERT(xBaseIndex->getPropertyValue("BackGraphic") >>= xGraphic);
CPPUNIT_ASSERT(!xGraphic.is());
xBaseIndex->setPropertyValue(name, css::uno::makeAny(aTempFile.GetURL()));
CPPUNIT_ASSERT(xBaseIndex->getPropertyValue("BackGraphic") >>= xGraphic);
CPPUNIT_ASSERT(xGraphic.is());
}
testStringProperty(xBaseIndex, "BackGraphicFilter", "Value");
// [property] com::sun::star::style::GraphicLocation BackGraphicLocation;
testColorProperty(xBaseIndex, "BackColor");
testBooleanProperty(xBaseIndex, "BackTransparent");
// [optional, property] com::sun::star::container::XIndexReplace LevelFormat;
testBooleanOptionalProperty(xBaseIndex, "CreateFromChapter");
// [property] com::sun::star::text::XTextSection ContentSection;
{
OUString name = "ContentSection";
css::uno::Reference<css::text::XTextSection> xGetTextSection;
CPPUNIT_ASSERT_MESSAGE(name.toUtf8().getStr(),
xBaseIndex->getPropertyValue(name) >>= xGetTextSection);
CPPUNIT_ASSERT_EQUAL_MESSAGE(name.toUtf8().getStr(), OUString(""),
xGetTextSection->getAnchor()->getString());
}
// [property] com::sun::star::text::XTextSection HeaderSection;
{
OUString name = "HeaderSection";
css::uno::Reference<css::text::XTextSection> xGetTextSection;
if (xBaseIndex->getPropertyValue(name).hasValue())
CPPUNIT_ASSERT_MESSAGE(name.toUtf8().getStr(),
xBaseIndex->getPropertyValue(name) >>= xGetTextSection);
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */