office-gobmx/sw/qa/api/SwXHeadFootText.cxx
Xisco Fauli a38a22c7e5 UnoApiTest: rename load to loadFromURL and use it everywhere
Change-Id: Ie67eebec74f783fa0c29acfb23bb83bc582812b2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175724
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Tested-by: Jenkins
2024-10-29 09:11:37 +01:00

105 lines
3.6 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 <test/unoapi_test.hxx>
#include <test/container/xelementaccess.hxx>
#include <test/text/xsimpletext.hxx>
#include <test/text/xtextrange.hxx>
#include <test/text/xtext.hxx>
#include <test/container/xenumerationaccess.hxx>
#include <test/text/xtextrangecompare.hxx>
#include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/text/XTextDocument.hpp>
#include <com/sun/star/text/XText.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/container/XNameAccess.hpp>
#include <com/sun/star/style/XStyle.hpp>
#include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
#include <comphelper/processfactory.hxx>
using namespace css;
using namespace css::uno;
namespace
{
/**
* Initial tests for SwXHeadFootText.
*/
class SwXHeadFootText final : public UnoApiTest,
public apitest::XElementAccess,
public apitest::XSimpleText,
public apitest::XTextRange,
public apitest::XText,
public apitest::XEnumerationAccess,
public apitest::XTextRangeCompare
{
public:
SwXHeadFootText();
Reference<XInterface> init() override;
Reference<text::XTextContent> getTextContent() override { return mxTextContent; };
CPPUNIT_TEST_SUITE(SwXHeadFootText);
CPPUNIT_TEST(testGetElementType);
CPPUNIT_TEST(testHasElements);
CPPUNIT_TEST(testCreateTextCursor);
CPPUNIT_TEST(testCreateTextCursorByRange);
CPPUNIT_TEST(testInsertString);
CPPUNIT_TEST(testInsertControlCharacter);
CPPUNIT_TEST(testGetEnd);
CPPUNIT_TEST(testGetSetString);
CPPUNIT_TEST(testGetStart);
CPPUNIT_TEST(testGetText);
// CPPUNIT_TEST(testInsertRemoveTextContent);
CPPUNIT_TEST(testCreateEnumeration);
CPPUNIT_TEST(testCompareRegionStarts);
CPPUNIT_TEST(testCompareRegionEnds);
CPPUNIT_TEST_SUITE_END();
private:
Reference<text::XTextContent> mxTextContent;
};
SwXHeadFootText::SwXHeadFootText()
: UnoApiTest(u""_ustr)
, XElementAccess(cppu::UnoType<text::XTextRange>::get())
{
}
Reference<XInterface> SwXHeadFootText::init()
{
loadFromURL(u"private:factory/swriter"_ustr);
Reference<text::XTextDocument> xTextDocument(mxComponent, UNO_QUERY_THROW);
Reference<lang::XMultiServiceFactory> xMSF(mxComponent, UNO_QUERY_THROW);
Reference<style::XStyleFamiliesSupplier> xStyleFam(xTextDocument, UNO_QUERY_THROW);
Reference<container::XNameAccess> xStyleFamNames = xStyleFam->getStyleFamilies();
Reference<container::XNameAccess> xPageStyles(xStyleFamNames->getByName(u"PageStyles"_ustr),
UNO_QUERY_THROW);
Reference<style::XStyle> xStyle(xPageStyles->getByName(u"Standard"_ustr), UNO_QUERY_THROW);
Reference<beans::XPropertySet> xPropSet(xStyle, UNO_QUERY_THROW);
xPropSet->setPropertyValue(u"HeaderIsOn"_ustr, uno::Any(true));
xPropSet->setPropertyValue(u"FooterIsOn"_ustr, uno::Any(true));
Reference<text::XText> xText(xPropSet->getPropertyValue(u"HeaderText"_ustr), UNO_QUERY_THROW);
return Reference<XInterface>(xText, UNO_QUERY_THROW);
}
CPPUNIT_TEST_SUITE_REGISTRATION(SwXHeadFootText);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */