sw/CppunitTest_sw_apitests.mk | 2 sw/qa/api/SwXAutoTextContainer.cxx | 75 ++++++++++++++++++++++++++++++++ sw/qa/api/SwXBookmarks.cxx | 85 +++++++++++++++++++++++++++++++++++++ 3 files changed, 162 insertions(+)
New commits: commit bcbfdd2fe4d61ea619689a9754e018c691bf6ef7 Author: anfanite396 <[email protected]> AuthorDate: Sun Jul 9 21:35:33 2023 +0530 Commit: Tomaž Vajngerl <[email protected]> CommitDate: Mon Jul 10 14:33:08 2023 +0200 Move SwXBookmarks Java tests to C++ Change-Id: Ia640c59c97889c27f1c7b3ecf3b2630ac1d5e1f4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154231 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <[email protected]> diff --git a/sw/CppunitTest_sw_apitests.mk b/sw/CppunitTest_sw_apitests.mk index b750e3d81d56..4ef0a90bae61 100644 --- a/sw/CppunitTest_sw_apitests.mk +++ b/sw/CppunitTest_sw_apitests.mk @@ -19,6 +19,7 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sw_apitests, \ sw/qa/api/SwXAutoTextContainer \ sw/qa/api/SwXBodyText \ sw/qa/api/SwXBookmark \ + sw/qa/api/SwXBookmarks \ sw/qa/api/SwXDocumentIndex \ sw/qa/api/SwXDocumentSettings \ sw/qa/api/SwXFootnote \ diff --git a/sw/qa/api/SwXBookmarks.cxx b/sw/qa/api/SwXBookmarks.cxx new file mode 100644 index 000000000000..34babbbd3ce8 --- /dev/null +++ b/sw/qa/api/SwXBookmarks.cxx @@ -0,0 +1,85 @@ +/* -*- 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/xnameaccess.hxx> +#include <test/container/xindexaccess.hxx> +#include <test/container/xelementaccess.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/text/XBookmarksSupplier.hpp> + +using namespace css; +using namespace css::uno; + +namespace +{ +/** + * Initial tests for SwXBookmarks. + */ +class SwXBookmarks final : public UnoApiTest, + public apitest::XElementAccess, + public apitest::XIndexAccess, + public apitest::XNameAccess +{ +public: + SwXBookmarks() + : UnoApiTest("") + , XElementAccess(cppu::UnoType<text::XTextContent>::get()) + , XIndexAccess(1) + , XNameAccess("Bookmark") + { + } + + virtual void setUp() override + { + UnoApiTest::setUp(); + mxDesktop.set(frame::Desktop::create(mxComponentContext)); + mxComponent = loadFromDesktop("private:factory/swriter"); + CPPUNIT_ASSERT(mxComponent.is()); + } + + Reference<XInterface> init() override + { + Reference<text::XTextDocument> xTextDocument(mxComponent, UNO_QUERY_THROW); + Reference<lang::XMultiServiceFactory> xMSF(mxComponent, UNO_QUERY_THROW); + + Reference<text::XText> xText = xTextDocument->getText(); + Reference<text::XTextCursor> xCursor = xText->createTextCursor(); + + Reference<text::XTextContent> xBookmark(xMSF->createInstance("com.sun.star.text.Bookmark"), + UNO_QUERY_THROW); + xText->insertTextContent(xCursor, xBookmark, false); + + Reference<text::XBookmarksSupplier> xSupplier(xTextDocument, UNO_QUERY_THROW); + Reference<container::XNameAccess> xNameAccess = xSupplier->getBookmarks(); + + return Reference<XInterface>(xNameAccess, UNO_QUERY_THROW); + } + + CPPUNIT_TEST_SUITE(SwXBookmarks); + CPPUNIT_TEST(testGetByName); + CPPUNIT_TEST(testGetElementNames); + CPPUNIT_TEST(testHasByName); + CPPUNIT_TEST(testGetCount); + CPPUNIT_TEST(testGetByIndex); + CPPUNIT_TEST(testGetElementType); + CPPUNIT_TEST(testHasElements); + CPPUNIT_TEST_SUITE_END(); +}; + +CPPUNIT_TEST_SUITE_REGISTRATION(SwXBookmarks); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ commit 74d286e269b727ae6731b426ec4d12dbfbc0212e Author: anfanite396 <[email protected]> AuthorDate: Sun Jul 9 12:53:46 2023 +0530 Commit: Tomaž Vajngerl <[email protected]> CommitDate: Mon Jul 10 14:32:55 2023 +0200 Move SwXAutoTextContainer Java tests to C++ Change-Id: Ib785d9c1d143f0f51247ae73f01d9ee6d3806947 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154230 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <[email protected]> diff --git a/sw/CppunitTest_sw_apitests.mk b/sw/CppunitTest_sw_apitests.mk index b37b8cf0af7d..b750e3d81d56 100644 --- a/sw/CppunitTest_sw_apitests.mk +++ b/sw/CppunitTest_sw_apitests.mk @@ -16,6 +16,7 @@ $(eval $(call gb_CppunitTest_use_external,sw_apitests,boost_headers)) $(eval $(call gb_CppunitTest_use_common_precompiled_header,sw_apitests)) $(eval $(call gb_CppunitTest_add_exception_objects,sw_apitests, \ + sw/qa/api/SwXAutoTextContainer \ sw/qa/api/SwXBodyText \ sw/qa/api/SwXBookmark \ sw/qa/api/SwXDocumentIndex \ diff --git a/sw/qa/api/SwXAutoTextContainer.cxx b/sw/qa/api/SwXAutoTextContainer.cxx new file mode 100644 index 000000000000..838aa5e2adbe --- /dev/null +++ b/sw/qa/api/SwXAutoTextContainer.cxx @@ -0,0 +1,75 @@ +/* -*- 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/xnameaccess.hxx> +#include <test/container/xindexaccess.hxx> +#include <test/container/xelementaccess.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/XAutoTextContainer.hpp> +#include <com/sun/star/text/AutoTextContainer.hpp> + +#include <comphelper/processfactory.hxx> + +using namespace css; +using namespace css::uno; + +namespace +{ +/** + * Initial tests for SwXAutoTextContainer. + */ +class SwXAutoTextContainer final : public UnoApiTest, + public apitest::XElementAccess, + public apitest::XIndexAccess, + public apitest::XNameAccess +{ +public: + SwXAutoTextContainer() + : UnoApiTest("") + , XElementAccess(cppu::UnoType<text::XAutoTextGroup>::get()) + , XIndexAccess(3) + , XNameAccess("standard") + { + } + + virtual void setUp() override + { + UnoApiTest::setUp(); + mxDesktop.set(frame::Desktop::create(mxComponentContext)); + } + + Reference<XInterface> init() override + { + Reference<text::XAutoTextContainer> xAutoTextContainer + = text::AutoTextContainer::create(comphelper::getProcessComponentContext()); + + return Reference<XInterface>(xAutoTextContainer, UNO_QUERY_THROW); + } + + CPPUNIT_TEST_SUITE(SwXAutoTextContainer); + CPPUNIT_TEST(testGetByName); + CPPUNIT_TEST(testGetElementNames); + CPPUNIT_TEST(testHasByName); + CPPUNIT_TEST(testGetCount); + CPPUNIT_TEST(testGetByIndex); + CPPUNIT_TEST(testGetElementType); + CPPUNIT_TEST(testHasElements); + CPPUNIT_TEST_SUITE_END(); +}; + +CPPUNIT_TEST_SUITE_REGISTRATION(SwXAutoTextContainer); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
