/* -*- 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 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 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 mxTextContent; }; SwXHeadFootText::SwXHeadFootText() : UnoApiTest(u""_ustr) , XElementAccess(cppu::UnoType::get()) { } Reference SwXHeadFootText::init() { loadFromURL(u"private:factory/swriter"_ustr); Reference xTextDocument(mxComponent, UNO_QUERY_THROW); Reference xMSF(mxComponent, UNO_QUERY_THROW); Reference xStyleFam(xTextDocument, UNO_QUERY_THROW); Reference xStyleFamNames = xStyleFam->getStyleFamilies(); Reference xPageStyles(xStyleFamNames->getByName(u"PageStyles"_ustr), UNO_QUERY_THROW); Reference xStyle(xPageStyles->getByName(u"Standard"_ustr), UNO_QUERY_THROW); Reference xPropSet(xStyle, UNO_QUERY_THROW); xPropSet->setPropertyValue(u"HeaderIsOn"_ustr, uno::Any(true)); xPropSet->setPropertyValue(u"FooterIsOn"_ustr, uno::Any(true)); Reference xText(xPropSet->getPropertyValue(u"HeaderText"_ustr), UNO_QUERY_THROW); return Reference(xText, UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE_REGISTRATION(SwXHeadFootText); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */