From 67c5fb957f585772e23678fdcc6e24734b9fbc48 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Tue, 2 Apr 2019 08:06:53 +0200 Subject: Improve sc shape test Actually test anchoring the shape to a cell and to a page again Change-Id: I2d625b9a4f04aaf61dd8c1e8d10c639cbb4f0da5 Reviewed-on: https://gerrit.libreoffice.org/70110 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt --- test/source/sheet/shape.cxx | 59 ++++++++++++++++++--------------------------- 1 file changed, 24 insertions(+), 35 deletions(-) (limited to 'test/source/sheet/shape.cxx') diff --git a/test/source/sheet/shape.cxx b/test/source/sheet/shape.cxx index ffa7d8ab112b..e9d26af4a2a0 100644 --- a/test/source/sheet/shape.cxx +++ b/test/source/sheet/shape.cxx @@ -10,8 +10,8 @@ #include #include -#include #include +#include #include #include #include @@ -28,65 +28,54 @@ namespace apitest void Shape::testShapeProperties() { uno::Reference xShape(init(), UNO_QUERY_THROW); - OUString propName; uno::Any aNewValue; - propName = "Anchor"; uno::Reference xDoc(getXSheetDocument(), UNO_QUERY_THROW); uno::Reference xSheets(xDoc->getSheets(), UNO_QUERY_THROW); uno::Sequence sheetNames = xSheets->getElementNames(); uno::Reference xSheet(xSheets->getByName(sheetNames[0]), UNO_QUERY_THROW); uno::Reference xCell(xSheet->getCellByPosition(0, 0), UNO_QUERY_THROW); + // Shape should be anchored to sheet by default uno::Reference xSheetGet; - uno::Reference xCellGet; + CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue Anchor (XSpreadsheet)", + xShape->getPropertyValue("Anchor") >>= xSheetGet); - if (xShape->getPropertyValue(propName) >>= xSheetGet) - { - uno::Reference xSheetSet; - CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue Anchor (XSpreadsheet)", - xShape->getPropertyValue(propName) >>= xSheetGet); - - aNewValue <<= xSheet; - xShape->setPropertyValue(propName, aNewValue); - CPPUNIT_ASSERT(xShape->getPropertyValue(propName) >>= xSheetSet); - // TODO: Find a way to compare sheet::XSpreadsheet objects - //CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set PropertyValue Anchor (XSpreadsheet)", - //xSheet.get(), xSheetSet.get()); - } - else if (xShape->getPropertyValue(propName) >>= xCellGet) - { - uno::Reference xCellSet; - CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue Anchor (XCell)", - xShape->getPropertyValue(propName) >>= xCellGet); + // Anchor the shape to a cell + aNewValue <<= xCell; + xShape->setPropertyValue("Anchor", aNewValue); + uno::Reference xCellGet; + CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue Anchor (XCell)", + xShape->getPropertyValue("Anchor") >>= xCellGet); - aNewValue <<= xCell; - xShape->setPropertyValue(propName, aNewValue); - CPPUNIT_ASSERT(xShape->getPropertyValue(propName) >>= xCellSet); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set PropertyValue Anchor (XCell)", xCell, xCellSet); - } + // Now anchor to sheet again + aNewValue <<= xSheet; + xShape->setPropertyValue("Anchor", aNewValue); + xShape->getPropertyValue("Anchor") >>= xSheetGet; + CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue Anchor (XSpreadsheet)", + xShape->getPropertyValue("Anchor") >>= xSheetGet); - propName = "HoriOrientPosition"; sal_Int32 nHoriOrientPositionGet = 0; sal_Int32 nHoriOrientPositionSet = 0; CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue HoriOrientPosition", - xShape->getPropertyValue(propName) >>= nHoriOrientPositionGet); + xShape->getPropertyValue("HoriOrientPosition") + >>= nHoriOrientPositionGet); aNewValue <<= nHoriOrientPositionGet + 42; - xShape->setPropertyValue(propName, aNewValue); - CPPUNIT_ASSERT(xShape->getPropertyValue(propName) >>= nHoriOrientPositionSet); + xShape->setPropertyValue("HoriOrientPosition", aNewValue); + CPPUNIT_ASSERT(xShape->getPropertyValue("HoriOrientPosition") >>= nHoriOrientPositionSet); CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set PropertyValue HoriOrientPosition", nHoriOrientPositionGet + 42, nHoriOrientPositionSet); - propName = "VertOrientPosition"; sal_Int32 nVertOrientPositionGet = 0; sal_Int32 nVertOrientPositionSet = 0; CPPUNIT_ASSERT_MESSAGE("Unable to get PropertyValue VertOrientPosition", - xShape->getPropertyValue(propName) >>= nVertOrientPositionGet); + xShape->getPropertyValue("VertOrientPosition") + >>= nVertOrientPositionGet); aNewValue <<= nVertOrientPositionGet + 42; - xShape->setPropertyValue(propName, aNewValue); - CPPUNIT_ASSERT(xShape->getPropertyValue(propName) >>= nVertOrientPositionSet); + xShape->setPropertyValue("VertOrientPosition", aNewValue); + CPPUNIT_ASSERT(xShape->getPropertyValue("VertOrientPosition") >>= nVertOrientPositionSet); CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set PropertyValue VertOrientPosition", nVertOrientPositionGet + 42, nVertOrientPositionSet); } -- cgit v1.2.3