diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
commit | 267c6f2ac71f92999e969232431ba04678e7437e (patch) | |
tree | 358c9467650e1d0a1d7227a21dac2e3d08b622b2 /sw/qa/api/SwXBodyText.cxx | |
parent | Initial commit. (diff) | |
download | libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.tar.xz libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.zip |
Adding upstream version 4:24.2.0.upstream/4%24.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sw/qa/api/SwXBodyText.cxx')
-rw-r--r-- | sw/qa/api/SwXBodyText.cxx | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/sw/qa/api/SwXBodyText.cxx b/sw/qa/api/SwXBodyText.cxx new file mode 100644 index 0000000000..69fb22a959 --- /dev/null +++ b/sw/qa/api/SwXBodyText.cxx @@ -0,0 +1,104 @@ +/* -*- 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/bootstrapfixture.hxx> +#include <test/text/xsimpletext.hxx> +#include <test/container/xelementaccess.hxx> +#include <test/text/xtextrange.hxx> +#include <test/container/xenumerationaccess.hxx> +#include <test/text/xtextrangecompare.hxx> +#include <unotest/macros_test.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 <comphelper/processfactory.hxx> + +using namespace css; +using namespace css::uno; + +namespace +{ +/** + * Initial tests for SwXBodyText. + */ +class SwXBodyText final : public test::BootstrapFixture, + public unotest::MacrosTest, + public apitest::XElementAccess, + public apitest::XTextRange, + public apitest::XSimpleText, + public apitest::XEnumerationAccess, + public apitest::XTextRangeCompare +{ +public: + SwXBodyText(); + virtual void setUp() override; + void tearDown() override; + + Reference<XInterface> init() override; + + CPPUNIT_TEST_SUITE(SwXBodyText); + CPPUNIT_TEST(testCreateTextCursor); + CPPUNIT_TEST(testCreateTextCursorByRange); + CPPUNIT_TEST(testInsertString); + CPPUNIT_TEST(testInsertControlCharacter); + CPPUNIT_TEST(testGetElementType); + CPPUNIT_TEST(testHasElements); + CPPUNIT_TEST(testGetText); + CPPUNIT_TEST(testGetStart); + CPPUNIT_TEST(testGetEnd); + CPPUNIT_TEST(testGetSetString); + CPPUNIT_TEST(testCreateEnumeration); + CPPUNIT_TEST(testCompareRegionStarts); + CPPUNIT_TEST(testCompareRegionEnds); + CPPUNIT_TEST_SUITE_END(); + +private: + uno::Reference<lang::XComponent> component_; +}; + +SwXBodyText::SwXBodyText() + : XElementAccess(cppu::UnoType<text::XTextRange>::get()) +{ +} + +void SwXBodyText::setUp() +{ + test::BootstrapFixture::setUp(); + mxDesktop.set( + frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory()))); +} + +void SwXBodyText::tearDown() +{ + if (component_.is()) + component_->dispose(); + + test::BootstrapFixture::tearDown(); +} + +Reference<XInterface> SwXBodyText::init() +{ + component_ = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); + Reference<text::XTextDocument> xTextDocument(component_, UNO_QUERY_THROW); + Reference<lang::XMultiServiceFactory> xMSF(component_, UNO_QUERY_THROW); + + Reference<text::XText> xText = xTextDocument->getText(); + + return Reference<XInterface>(xText, UNO_QUERY_THROW); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(SwXBodyText); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |