From 8fce4133bd427351ac269c50e02e305d9eb34321 Mon Sep 17 00:00:00 2001 From: Grzegorz Araminowicz Date: Tue, 28 May 2019 13:36:59 +0200 Subject: SmartArt: sort shapes by Z order after layout algorithms so that they are laid out in correct order Change-Id: I82baa61311197880654d09f356decc666e6fa4c7 Reviewed-on: https://gerrit.libreoffice.org/73094 Tested-by: Jenkins Reviewed-by: Miklos Vajna Reviewed-on: https://gerrit.libreoffice.org/73255 --- .../data/pptx/smartart-vertical-block-list.pptx | Bin 0 -> 47533 bytes sd/qa/unit/import-tests-smartart.cxx | 41 +++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 sd/qa/unit/data/pptx/smartart-vertical-block-list.pptx (limited to 'sd/qa') diff --git a/sd/qa/unit/data/pptx/smartart-vertical-block-list.pptx b/sd/qa/unit/data/pptx/smartart-vertical-block-list.pptx new file mode 100644 index 000000000000..923f03c0ee23 Binary files /dev/null and b/sd/qa/unit/data/pptx/smartart-vertical-block-list.pptx differ diff --git a/sd/qa/unit/import-tests-smartart.cxx b/sd/qa/unit/import-tests-smartart.cxx index 624205c5380a..ea83eb74a782 100644 --- a/sd/qa/unit/import-tests-smartart.cxx +++ b/sd/qa/unit/import-tests-smartart.cxx @@ -74,6 +74,7 @@ public: void testBackground(); void testBackgroundDrawingmlFallback(); void testFontSize(); + void testVerticalBlockList(); CPPUNIT_TEST_SUITE(SdImportTestSmartArt); @@ -110,6 +111,7 @@ public: CPPUNIT_TEST(testBackground); CPPUNIT_TEST(testBackgroundDrawingmlFallback); CPPUNIT_TEST(testFontSize); + CPPUNIT_TEST(testVerticalBlockList); CPPUNIT_TEST_SUITE_END(); }; @@ -1031,6 +1033,45 @@ void SdImportTestSmartArt::testFontSize() xDocShRef->DoClose(); } +void SdImportTestSmartArt::testVerticalBlockList() +{ + sd::DrawDocShellRef xDocShRef = loadURL( + m_directories.getURLFromSrc("/sd/qa/unit/data/pptx/smartart-vertical-block-list.pptx"), PPTX); + uno::Reference xGroup(getShapeFromPage(0, 0, xDocShRef), uno::UNO_QUERY); + CPPUNIT_ASSERT(xGroup.is()); + + uno::Reference xGroup1(xGroup->getByIndex(1), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(static_cast(2), xGroup1->getCount()); + uno::Reference xShapeA(xGroup1->getByIndex(1), uno::UNO_QUERY); + uno::Reference xShapeBC(xGroup1->getByIndex(0), uno::UNO_QUERY); + uno::Reference xTextA(xShapeA, uno::UNO_QUERY); + uno::Reference xTextBC(xShapeBC, uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(OUString("a"), xTextA->getString()); + CPPUNIT_ASSERT_EQUAL(OUString("b\nc"), xTextBC->getString()); + + uno::Reference xPropSetBC(xShapeBC, uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(27000), xPropSetBC->getPropertyValue("RotateAngle").get()); + + // BC shape is rotated 90*, so width and height is swapped + CPPUNIT_ASSERT_GREATER(xShapeA->getSize().Width, xShapeBC->getSize().Height); + CPPUNIT_ASSERT_LESSEQUAL(xShapeA->getSize().Height, xShapeBC->getSize().Width); + CPPUNIT_ASSERT_GREATER(xShapeA->getPosition().X, xShapeBC->getPosition().X); + CPPUNIT_ASSERT_GREATEREQUAL(xShapeA->getPosition().Y, xShapeBC->getPosition().Y); + + uno::Reference xGroup3(xGroup->getByIndex(3), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(static_cast(1), xGroup3->getCount()); + uno::Reference xShapeEmpty(xGroup3->getByIndex(0), uno::UNO_QUERY); + uno::Reference xTextEmpty(xShapeEmpty, uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(OUString("empty"), xTextEmpty->getString()); + + CPPUNIT_ASSERT_EQUAL(xShapeA->getSize().Width, xShapeEmpty->getSize().Width); + CPPUNIT_ASSERT_EQUAL(xShapeA->getSize().Height, xShapeEmpty->getSize().Height); + CPPUNIT_ASSERT_EQUAL(xShapeA->getPosition().X, xShapeEmpty->getPosition().X); + CPPUNIT_ASSERT_GREATEREQUAL(xShapeA->getPosition().Y + 2*xShapeA->getSize().Height, xShapeEmpty->getPosition().Y); + + xDocShRef->DoClose(); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTestSmartArt); CPPUNIT_PLUGIN_IMPLEMENT(); -- cgit