From 6dfbfe58ca6d0ebc3de6e57a44baacfef6e43c07 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Wed, 22 Dec 2021 16:15:20 +0100 Subject: 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 (cherry picked from commit 22f3f806abc0ef3ef02cd6733bdb3f950085dd17) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127264 --- sw/qa/extras/uiwriter/data/tdf135061.odt | Bin 0 -> 10767 bytes sw/qa/extras/uiwriter/uiwriter3.cxx | 36 +++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 sw/qa/extras/uiwriter/data/tdf135061.odt 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 b536692fc5a6..4830a91ed8f0 100644 --- a/sw/qa/extras/uiwriter/uiwriter3.cxx +++ b/sw/qa/extras/uiwriter/uiwriter3.cxx @@ -188,6 +188,42 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf138482) CPPUNIT_ASSERT_EQUAL(2, getShapes()); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf135061) +{ + createSwDoc(DATA_DIRECTORY, "tdf135061.odt"); + + uno::Reference xTextTablesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference 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"); -- cgit