sw/CppunitTest_sw_apitests.mk |    1 
 sw/qa/api/SwXFootnoteText.cxx |  118 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 119 insertions(+)

New commits:
commit 50e154fe5cea061a1b820ab2135d4d60b7bc1bc9
Author:     anfanite396 <dipamt1...@gmail.com>
AuthorDate: Mon Jun 26 19:50:13 2023 +0530
Commit:     Tomaž Vajngerl <qui...@gmail.com>
CommitDate: Wed Jun 28 11:13:20 2023 +0200

    Move SwXFootnoteText Java tests to C++
    
    Change-Id: I7f3477799f532f52993cd0add51185bfd15c7446
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153631
    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 f3c0c76bc91a..9960dcffff51 100644
--- a/sw/CppunitTest_sw_apitests.mk
+++ b/sw/CppunitTest_sw_apitests.mk
@@ -21,6 +21,7 @@ $(eval $(call 
gb_CppunitTest_add_exception_objects,sw_apitests, \
     sw/qa/api/SwXDocumentSettings \
     sw/qa/api/SwXFootnoteProperties \
     sw/qa/api/SwXTextFrame \
+    sw/qa/api/SwXFootnoteText \
     sw/qa/api/SwXTextField \
     sw/qa/api/SwXTextTable \
 ))
diff --git a/sw/qa/api/SwXFootnoteText.cxx b/sw/qa/api/SwXFootnoteText.cxx
new file mode 100644
index 000000000000..9e8bab00c544
--- /dev/null
+++ b/sw/qa/api/SwXFootnoteText.cxx
@@ -0,0 +1,118 @@
+/* -*- 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/text/xsimpletext.hxx>
+#include <test/text/xtextrange.hxx>
+#include <test/text/xtext.hxx>
+#include <test/container/xenumerationaccess.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/XSimpleText.hpp>
+
+#include <comphelper/processfactory.hxx>
+
+using namespace css;
+using namespace css::uno;
+
+namespace
+{
+/**
+ * Initial tests for SwXFootnoteText.
+ */
+class SwXFootnoteText final : public test::BootstrapFixture,
+                              public unotest::MacrosTest,
+                              public apitest::XElementAccess,
+                              public apitest::XSimpleText,
+                              public apitest::XTextRange,
+                              public apitest::XText,
+                              public apitest::XEnumerationAccess
+{
+public:
+    SwXFootnoteText();
+    virtual void setUp() override;
+    void tearDown() override;
+
+    Reference<XInterface> init() override;
+    Reference<text::XTextContent> getTextContent() override { return 
mxTextContent; };
+
+    CPPUNIT_TEST_SUITE(SwXFootnoteText);
+    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_SUITE_END();
+
+private:
+    Reference<lang::XComponent> component_;
+    Reference<text::XTextContent> mxTextContent;
+};
+
+SwXFootnoteText::SwXFootnoteText()
+    : XElementAccess(cppu::UnoType<text::XTextRange>::get())
+{
+}
+
+void SwXFootnoteText::setUp()
+{
+    test::BootstrapFixture::setUp();
+    mxDesktop.set(
+        
frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory())));
+}
+
+void SwXFootnoteText::tearDown()
+{
+    if (component_.is())
+        component_->dispose();
+
+    test::BootstrapFixture::tearDown();
+}
+
+Reference<XInterface> SwXFootnoteText::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::XSimpleText> xFootText(xFootnote, UNO_QUERY_THROW);
+    xFootText->setString("SwXFootnoteText");
+    mxTextContent = Reference<text::XTextContent>(
+        xMSF->createInstance("com.sun.star.text.Footnote"), UNO_QUERY_THROW);
+
+    return Reference<XInterface>(xFootText->getText(), UNO_QUERY_THROW);
+}
+
+CPPUNIT_TEST_SUITE_REGISTRATION(SwXFootnoteText);
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Reply via email to