From 267c6f2ac71f92999e969232431ba04678e7437e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:54:39 +0200 Subject: Adding upstream version 4:24.2.0. Signed-off-by: Daniel Baumann --- sw/qa/api/SwXHeadFootText.cxx | 124 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 sw/qa/api/SwXHeadFootText.cxx (limited to 'sw/qa/api/SwXHeadFootText.cxx') diff --git a/sw/qa/api/SwXHeadFootText.cxx b/sw/qa/api/SwXHeadFootText.cxx new file mode 100644 index 0000000000..b3769ccc58 --- /dev/null +++ b/sw/qa/api/SwXHeadFootText.cxx @@ -0,0 +1,124 @@ +/* -*- 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 +#include +#include +#include +#include +#include +#include +#include + +#include + +#include + +#include +#include +#include +#include +#include +#include + +#include + +using namespace css; +using namespace css::uno; + +namespace +{ +/** + * Initial tests for SwXHeadFootText. + */ +class SwXHeadFootText final : public test::BootstrapFixture, + public unotest::MacrosTest, + public apitest::XElementAccess, + public apitest::XSimpleText, + public apitest::XTextRange, + public apitest::XText, + public apitest::XEnumerationAccess, + public apitest::XTextRangeCompare +{ +public: + SwXHeadFootText(); + virtual void setUp() override; + void tearDown() override; + + Reference init() override; + Reference 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 component_; + Reference mxTextContent; +}; + +SwXHeadFootText::SwXHeadFootText() + : XElementAccess(cppu::UnoType::get()) +{ +} + +void SwXHeadFootText::setUp() +{ + test::BootstrapFixture::setUp(); + mxDesktop.set( + frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory()))); +} + +void SwXHeadFootText::tearDown() +{ + if (component_.is()) + component_->dispose(); + + test::BootstrapFixture::tearDown(); +} + +Reference SwXHeadFootText::init() +{ + component_ = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); + Reference xTextDocument(component_, UNO_QUERY_THROW); + Reference xMSF(component_, UNO_QUERY_THROW); + + Reference xStyleFam(xTextDocument, UNO_QUERY_THROW); + Reference xStyleFamNames = xStyleFam->getStyleFamilies(); + + Reference xPageStyles(xStyleFamNames->getByName("PageStyles"), + UNO_QUERY_THROW); + Reference xStyle(xPageStyles->getByName("Standard"), UNO_QUERY_THROW); + + Reference xPropSet(xStyle, UNO_QUERY_THROW); + + xPropSet->setPropertyValue("HeaderIsOn", uno::Any(true)); + xPropSet->setPropertyValue("FooterIsOn", uno::Any(true)); + Reference xText(xPropSet->getPropertyValue("HeaderText"), UNO_QUERY_THROW); + + return Reference(xText, UNO_QUERY_THROW); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(SwXHeadFootText); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3