sw/CppunitTest_sw_apitests.mk       |    3 -
 sw/qa/api/SwXFootnoteProperties.cxx |   96 ++++++++++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+), 1 deletion(-)

New commits:
commit dab294beb861b651e02ff8598aa5b30fd852f5d3
Author:     anfanite396 <dipamt1...@gmail.com>
AuthorDate: Mon Jun 26 17:16:30 2023 +0530
Commit:     Tomaž Vajngerl <qui...@gmail.com>
CommitDate: Tue Jun 27 14:47:10 2023 +0200

    Move SwXFootnotesSupplier Java tests to C++
    
    Change-Id: Ib6b33d33dc813400526b0d641faefbfdeea9fc0d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153610
    Tested-by: Jenkins
    Reviewed-by: Tomaž Vajngerl <qui...@gmail.com>

diff --git a/sw/CppunitTest_sw_apitests.mk b/sw/CppunitTest_sw_apitests.mk
index e71270e4d4db..f3c0c76bc91a 100644
--- a/sw/CppunitTest_sw_apitests.mk
+++ b/sw/CppunitTest_sw_apitests.mk
@@ -19,7 +19,8 @@ $(eval $(call 
gb_CppunitTest_add_exception_objects,sw_apitests, \
     sw/qa/api/SwXBodyText \
     sw/qa/api/SwXDocumentIndex \
     sw/qa/api/SwXDocumentSettings \
-       sw/qa/api/SwXTextFrame \
+    sw/qa/api/SwXFootnoteProperties \
+    sw/qa/api/SwXTextFrame \
     sw/qa/api/SwXTextField \
     sw/qa/api/SwXTextTable \
 ))
diff --git a/sw/qa/api/SwXFootnoteProperties.cxx 
b/sw/qa/api/SwXFootnoteProperties.cxx
new file mode 100644
index 000000000000..e716181a5594
--- /dev/null
+++ b/sw/qa/api/SwXFootnoteProperties.cxx
@@ -0,0 +1,96 @@
+/* -*- 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/container/xelementaccess.hxx>
+#include <test/container/xindexaccess.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 <com/sun/star/text/XFootnote.hpp>
+#include <com/sun/star/text/XFootnotesSupplier.hpp>
+
+#include <comphelper/processfactory.hxx>
+
+using namespace css;
+using namespace css::uno;
+
+namespace
+{
+/**
+ * Initial tests for SwXFootnoteProperties.
+ */
+class SwXFootnoteProperties final : public test::BootstrapFixture,
+                                    public unotest::MacrosTest,
+                                    public apitest::XElementAccess,
+                                    public apitest::XIndexAccess
+{
+public:
+    SwXFootnoteProperties();
+    virtual void setUp() override;
+    void tearDown() override;
+
+    Reference<XInterface> init() override;
+
+    CPPUNIT_TEST_SUITE(SwXFootnoteProperties);
+    CPPUNIT_TEST_SUITE_END();
+
+private:
+    uno::Reference<lang::XComponent> component_;
+};
+
+SwXFootnoteProperties::SwXFootnoteProperties()
+    : XElementAccess(cppu::UnoType<text::XFootnote>::get())
+    , XIndexAccess(3)
+{
+}
+
+void SwXFootnoteProperties::setUp()
+{
+    test::BootstrapFixture::setUp();
+    mxDesktop.set(
+        
frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory())));
+}
+
+void SwXFootnoteProperties::tearDown()
+{
+    if (component_.is())
+        component_->dispose();
+
+    test::BootstrapFixture::tearDown();
+}
+
+Reference<XInterface> SwXFootnoteProperties::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::XFootnote> 
xFootnote(xMSF->createInstance("com.sun.star.text.Footnote"),
+                                         UNO_QUERY_THROW);
+
+    Reference<text::XText> xText = xTextDocument->getText();
+    Reference<text::XTextCursor> xCursor = xText->createTextCursor();
+
+    xText->insertTextContent(xCursor, xFootnote, false);
+
+    Reference<text::XFootnotesSupplier> xFootnotesSupplier(xTextDocument, 
UNO_QUERY_THROW);
+
+    return Reference<XInterface>(xFootnotesSupplier->getFootnoteSettings(), 
UNO_QUERY_THROW);
+}
+
+CPPUNIT_TEST_SUITE_REGISTRATION(SwXFootnoteProperties);
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Reply via email to