sw/qa/extras/uiwriter/data/tdf135061.odt |binary
 sw/qa/extras/uiwriter/uiwriter3.cxx      |   36 +++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

New commits:
commit 22f3f806abc0ef3ef02cd6733bdb3f950085dd17
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Wed Dec 22 16:15:20 2021 +0100
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Wed Dec 22 19:22:21 2021 +0100

    tdf#135061: sw_uiwriter3: Add unittest
    
    Change-Id: Ied2ae576810a9f66e51883375959d372af59abe4
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127326
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>

diff --git a/sw/qa/extras/uiwriter/data/tdf135061.odt 
b/sw/qa/extras/uiwriter/data/tdf135061.odt
new file mode 100644
index 000000000000..19b3afa31e47
Binary files /dev/null and b/sw/qa/extras/uiwriter/data/tdf135061.odt differ
diff --git a/sw/qa/extras/uiwriter/uiwriter3.cxx 
b/sw/qa/extras/uiwriter/uiwriter3.cxx
index 3589d4d9f23c..df0bfbf617f8 100644
--- a/sw/qa/extras/uiwriter/uiwriter3.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter3.cxx
@@ -216,6 +216,42 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf138482)
     CPPUNIT_ASSERT_EQUAL(2, getShapes());
 }
 
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf135061)
+{
+    createSwDoc(DATA_DIRECTORY, "tdf135061.odt");
+
+    uno::Reference<text::XTextTablesSupplier> xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+    uno::Reference<container::XIndexAccess> 
xIndexAccess(xTextTablesSupplier->getTextTables(),
+                                                         uno::UNO_QUERY);
+    CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
+    CPPUNIT_ASSERT_EQUAL(4, getShapes());
+
+    dispatchCommand(mxComponent, ".uno:SelectAll", {});
+    Scheduler::ProcessEventsToIdle();
+
+    dispatchCommand(mxComponent, ".uno:Copy", {});
+    Scheduler::ProcessEventsToIdle();
+
+    for (sal_Int32 i = 0; i < 5; ++i)
+    {
+        dispatchCommand(mxComponent, ".uno:Paste", {});
+        Scheduler::ProcessEventsToIdle();
+    }
+
+    CPPUNIT_ASSERT_EQUAL(sal_Int32(6), xIndexAccess->getCount());
+    CPPUNIT_ASSERT_EQUAL(20, getShapes());
+
+    for (sal_Int32 i = 0; i < 5; ++i)
+    {
+        // Without the fix in place, this test would have crashed here
+        dispatchCommand(mxComponent, ".uno:Undo", {});
+        Scheduler::ProcessEventsToIdle();
+    }
+
+    CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
+    CPPUNIT_ASSERT_EQUAL(4, getShapes());
+}
+
 CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf132911)
 {
     SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "tdf132911.odt");

Reply via email to