summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authoranfanite396 <dipamt1729@gmail.com>2023-07-06 10:47:22 +0530
committerTomaž Vajngerl <quikee@gmail.com>2023-07-19 03:03:08 +0200
commit08a322995cd54038c9d210f5016f57b1fe9e738a (patch)
tree9dc9b981644a8eccaa4cc050dadbfe5f1f35cc5a /sw
parent2b15ffce29fb72785a357695a152df50e2a7db71 (diff)
Move SwXParagraphEnumeration Java tests to C++
Change-Id: I8315d52e75ddbe3b4f844fcb645f857da3d12acb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154084 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/CppunitTest_sw_apitests.mk1
-rw-r--r--sw/qa/api/SwXParagraphEnumeration.cxx96
2 files changed, 97 insertions, 0 deletions
diff --git a/sw/CppunitTest_sw_apitests.mk b/sw/CppunitTest_sw_apitests.mk
index 659b582b49c0..0e3f265b1d19 100644
--- a/sw/CppunitTest_sw_apitests.mk
+++ b/sw/CppunitTest_sw_apitests.mk
@@ -33,6 +33,7 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sw_apitests, \
sw/qa/api/SwXFootnotes \
sw/qa/api/SwXHeadFootText \
sw/qa/api/SwXNumberingRules \
+ sw/qa/api/SwXParagraphEnumeration \
sw/qa/api/SwXStyleFamilies \
sw/qa/api/SwXTextFrame \
sw/qa/api/SwXTextField \
diff --git a/sw/qa/api/SwXParagraphEnumeration.cxx b/sw/qa/api/SwXParagraphEnumeration.cxx
new file mode 100644
index 000000000000..7e7ddd6d188a
--- /dev/null
+++ b/sw/qa/api/SwXParagraphEnumeration.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/unoapi_test.hxx>
+#include <test/container/xenumeration.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/container/XEnumeration.hpp>
+#include <com/sun/star/container/XEnumerationAccess.hpp>
+#include <com/sun/star/text/ControlCharacter.hpp>
+#include <com/sun/star/lang/IllegalArgumentException.hpp>
+
+#include <comphelper/processfactory.hxx>
+
+using namespace css;
+using namespace css::uno;
+
+namespace
+{
+/**
+ * Initial tests for SwXParagraphEnumeration.
+ */
+class SwXParagraphEnumeration final : public UnoApiTest, public apitest::XEnumeration
+{
+public:
+ SwXParagraphEnumeration()
+ : UnoApiTest("")
+ {
+ }
+
+ 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();
+
+ for (int i = 0; i < 5; i++)
+ {
+ try
+ {
+ xText->insertString(xCursor, "The quick brown fox jumps over the lazy dog", false);
+ xText->insertControlCharacter(xCursor, text::ControlCharacter::LINE_BREAK, false);
+ xText->insertString(xCursor, "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG", false);
+ xText->insertControlCharacter(xCursor, text::ControlCharacter::LINE_BREAK, false);
+ }
+ catch (lang::IllegalArgumentException&)
+ {
+ }
+
+ try
+ {
+ xText->insertControlCharacter(xCursor, text::ControlCharacter::PARAGRAPH_BREAK,
+ false);
+ }
+ catch (lang::IllegalArgumentException&)
+ {
+ }
+ }
+
+ Reference<container::XEnumerationAccess> xEnumAccess(xText, UNO_QUERY_THROW);
+ Reference<container::XEnumeration> xEnum = xEnumAccess->createEnumeration();
+
+ return Reference<XInterface>(xEnum, UNO_QUERY_THROW);
+ }
+
+ CPPUNIT_TEST_SUITE(SwXParagraphEnumeration);
+ CPPUNIT_TEST(testHasMoreElements);
+ CPPUNIT_TEST(testNextElement);
+ CPPUNIT_TEST_SUITE_END();
+};
+
+CPPUNIT_TEST_SUITE_REGISTRATION(SwXParagraphEnumeration);
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */