/* -*- 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include typedef std::map > AllBordersMap; typedef std::pair > StringSequencePair; class Test : public SwModelTestBase { public: Test() : SwModelTestBase("/sw/qa/extras/odfimport/data/", "writer8") {} }; DECLARE_ODFIMPORT_TEST(testEmptySvgFamilyName, "empty-svg-family-name.odt") { // .odt import did crash on the empty font list (which I think is valid according SVG spec) } DECLARE_ODFIMPORT_TEST(testHideAllSections, "fdo53210.odt") { // This document has a section that is conditionally hidden, but has no empty paragraph after it. uno::Reference xTextFieldsSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xMasters = xTextFieldsSupplier->getTextFieldMasters(); // Set _CS_Allgemein to 0 uno::Reference xMaster(xMasters->getByName("com.sun.star.text.fieldmaster.User._CS_Allgemein"), uno::UNO_QUERY); xMaster->setPropertyValue("Content", uno::makeAny(OUString("0"))); // This used to crash uno::Reference(xTextFieldsSupplier->getTextFields(), uno::UNO_QUERY)->refresh(); } DECLARE_ODFIMPORT_TEST(testOdtBorders, "borders_ooo33.odt") { AllBordersMap map; uno::Sequence< table::BorderLine > tempSequence(4); tempSequence[0] = table::BorderLine(0, 2, 2, 35); // left tempSequence[1] = table::BorderLine(0, 2, 2, 35); // right tempSequence[2] = table::BorderLine(0, 2, 2, 35); // top tempSequence[3] = table::BorderLine(0, 2, 2, 35); // bottom map.insert(StringSequencePair(OUString("B2"), tempSequence)); tempSequence[0] = table::BorderLine(0, 0, 2, 0); tempSequence[1] = table::BorderLine(0, 0, 2, 0); tempSequence[2] = table::BorderLine(0, 0, 2, 0); tempSequence[3] = table::BorderLine(0, 0, 2, 0); map.insert(StringSequencePair(OUString("D2"), tempSequence)); tempSequence[0] = table::BorderLine(0, 2, 2, 88); tempSequence[1] = table::BorderLine(0, 2, 2, 88); tempSequence[2] = table::BorderLine(0, 2, 2, 88); tempSequence[3] = table::BorderLine(0, 2, 2, 88); map.insert(StringSequencePair(OUString("B4"), tempSequence)); tempSequence[0] = table::BorderLine(0, 0, 18, 0); tempSequence[1] = table::BorderLine(0, 0, 18, 0); tempSequence[2] = table::BorderLine(0, 0, 18, 0); tempSequence[3] = table::BorderLine(0, 0, 18, 0); map.insert(StringSequencePair(OUString("D4"), tempSequence)); tempSequence[0] = table::BorderLine(0, 35, 35, 35); tempSequence[1] = table::BorderLine(0, 35, 35, 35); tempSequence[2] = table::BorderLine(0, 35, 35, 35); tempSequence[3] = table::BorderLine(0, 35, 35, 35); map.insert(StringSequencePair(OUString("B6"), tempSequence)); tempSequence[0] = table::BorderLine(0, 0, 35, 0); tempSequence[1] = table::BorderLine(0, 0, 35, 0); tempSequence[2] = table::BorderLine(0, 0, 35, 0); tempSequence[3] = table::BorderLine(0, 0, 35, 0); map.insert(StringSequencePair(OUString("D6"), tempSequence)); tempSequence[0] = table::BorderLine(0, 88, 88, 88); tempSequence[1] = table::BorderLine(0, 88, 88, 88); tempSequence[2] = table::BorderLine(0, 88, 88, 88); tempSequence[3] = table::BorderLine(0, 88, 88, 88); map.insert(StringSequencePair(OUString("B8"), tempSequence)); tempSequence[0] = table::BorderLine(0, 0, 88, 0); tempSequence[1] = table::BorderLine(0, 0, 88, 0); tempSequence[2] = table::BorderLine(0, 0, 88, 0); tempSequence[3] = table::BorderLine(0, 0, 88, 0); map.insert(StringSequencePair(OUString("D8"), tempSequence)); tempSequence[0] = table::BorderLine(0, 2, 35, 88); tempSequence[1] = table::BorderLine(0, 2, 35, 88); tempSequence[2] = table::BorderLine(0, 2, 35, 88); tempSequence[3] = table::BorderLine(0, 2, 35, 88); map.insert(StringSequencePair(OUString("B10"), tempSequence)); tempSequence[0] = table::BorderLine(0, 0, 141, 0); tempSequence[1] = table::BorderLine(0, 0, 141, 0); tempSequence[2] = table::BorderLine(0, 0, 141, 0); tempSequence[3] = table::BorderLine(0, 0, 141, 0); map.insert(StringSequencePair(OUString("D10"), tempSequence)); tempSequence[0] = table::BorderLine(0, 2, 88, 88); tempSequence[1] = table::BorderLine(0, 2, 88, 88); tempSequence[2] = table::BorderLine(0, 2, 88, 88); tempSequence[3] = table::BorderLine(0, 2, 88, 88); map.insert(StringSequencePair(OUString("B12"), tempSequence)); tempSequence[0] = table::BorderLine(0, 0, 176, 0); tempSequence[1] = table::BorderLine(0, 0, 176, 0); tempSequence[2] = table::BorderLine(0, 0, 176, 0); tempSequence[3] = table::BorderLine(0, 0, 176, 0); map.insert(StringSequencePair(OUString("D12"), tempSequence)); tempSequence[0] = table::BorderLine(0, 2, 141, 88); tempSequence[1] = table::BorderLine(0, 2, 141, 88); tempSequence[2] = table::BorderLine(0, 2, 141, 88); tempSequence[3] = table::BorderLine(0, 2, 141, 88); map.insert(StringSequencePair(OUString("B14"), tempSequence)); tempSequence[0] = table::BorderLine(0, 35, 88, 88); tempSequence[1] = table::BorderLine(0, 35, 88, 88); tempSequence[2] = table::BorderLine(0, 35, 88, 88); tempSequence[3] = table::BorderLine(0, 35, 88, 88); map.insert(StringSequencePair(OUString("B16"), tempSequence)); tempSequence[0] = table::BorderLine(0, 88, 35, 35); tempSequence[1] = table::BorderLine(0, 88, 35, 35); tempSequence[2] = table::BorderLine(0, 88, 35, 35); tempSequence[3] = table::BorderLine(0, 88, 35, 35); map.insert(StringSequencePair(OUString("B18"), tempSequence)); tempSequence[0] = table::BorderLine(0, 88, 141, 88); tempSequence[1] = table::BorderLine(0, 88, 141, 88); tempSequence[2] = table::BorderLine(0, 88, 141, 88); tempSequence[3] = table::BorderLine(0, 88, 141, 88); map.insert(StringSequencePair(OUString("B20"), tempSequence)); tempSequence[0] = table::BorderLine(0, 141, 88, 88); tempSequence[1] = table::BorderLine(0, 141, 88, 88); tempSequence[2] = table::BorderLine(0, 141, 88, 88); tempSequence[3] = table::BorderLine(0, 141, 88, 88); map.insert(StringSequencePair(OUString("B22"), tempSequence)); uno::Reference textDocument(mxComponent, uno::UNO_QUERY); uno::Reference xParaEnumAccess(textDocument->getText(), uno::UNO_QUERY); // list of paragraphs uno::Reference xParaEnum = xParaEnumAccess->createEnumeration(); do { uno::Reference xServiceInfo; if (xParaEnum->nextElement() >>= xServiceInfo) { if (xServiceInfo->supportsService("com.sun.star.text.TextTable")) { uno::Reference const xTextTable(xServiceInfo, uno::UNO_QUERY_THROW); uno::Sequence const cells = xTextTable->getCellNames(); sal_Int32 nLength = cells.getLength(); AllBordersMap::iterator it; it = map.begin(); for (sal_Int32 i = 0; i < nLength; ++i) { if(i%10==6 || (i%10==8 && i<60)) // only B and D cells have borders, every 2 rows { uno::Reference xCell = xTextTable->getCellByName(cells[i]); uno::Reference< beans::XPropertySet > xPropSet(xCell, uno::UNO_QUERY_THROW); it = map.find(cells[i]); uno::Any aLeftBorder = xPropSet->getPropertyValue("LeftBorder"); table::BorderLine aLeftBorderLine; if (aLeftBorder >>= aLeftBorderLine) { sal_Int32 innerLineWidth = aLeftBorderLine.InnerLineWidth; sal_Int32 outerLineWidth = aLeftBorderLine.OuterLineWidth; sal_Int32 lineDistance = aLeftBorderLine.LineDistance; sal_Int32 perfectInner = it->second[0].InnerLineWidth; sal_Int32 perfectOuter = it->second[0].OuterLineWidth; sal_Int32 perfectDistance = it->second[0].LineDistance; CPPUNIT_ASSERT_EQUAL(perfectInner, innerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectOuter, outerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectDistance, lineDistance); } uno::Any aRightBorder = xPropSet->getPropertyValue("RightBorder"); table::BorderLine aRightBorderLine; if (aRightBorder >>= aRightBorderLine) { sal_Int32 innerLineWidth = aRightBorderLine.InnerLineWidth; sal_Int32 outerLineWidth = aRightBorderLine.OuterLineWidth; sal_Int32 lineDistance = aRightBorderLine.LineDistance; sal_Int32 perfectInner = it->second[1].InnerLineWidth; sal_Int32 perfectOuter = it->second[1].OuterLineWidth; sal_Int32 perfectDistance = it->second[1].LineDistance; CPPUNIT_ASSERT_EQUAL(perfectInner, innerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectOuter, outerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectDistance, lineDistance); } uno::Any aTopBorder = xPropSet->getPropertyValue("TopBorder"); table::BorderLine aTopBorderLine; if (aTopBorder >>= aTopBorderLine) { sal_Int32 innerLineWidth = aTopBorderLine.InnerLineWidth; sal_Int32 outerLineWidth = aTopBorderLine.OuterLineWidth; sal_Int32 lineDistance = aTopBorderLine.LineDistance; sal_Int32 perfectInner = it->second[2].InnerLineWidth; sal_Int32 perfectOuter = it->second[2].OuterLineWidth; sal_Int32 perfectDistance = it->second[2].LineDistance; CPPUNIT_ASSERT_EQUAL(perfectInner, innerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectOuter, outerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectDistance, lineDistance); } uno::Any aBottomBorder = xPropSet->getPropertyValue("BottomBorder"); table::BorderLine aBottomBorderLine; if (aBottomBorder >>= aBottomBorderLine) { sal_Int32 innerLineWidth = aBottomBorderLine.InnerLineWidth; sal_Int32 outerLineWidth = aBottomBorderLine.OuterLineWidth; sal_Int32 lineDistance = aBottomBorderLine.LineDistance; sal_Int32 perfectInner = it->second[3].InnerLineWidth; sal_Int32 perfectOuter = it->second[3].OuterLineWidth; sal_Int32 perfectDistance = it->second[3].LineDistance; CPPUNIT_ASSERT_EQUAL(perfectInner, innerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectOuter, outerLineWidth); CPPUNIT_ASSERT_EQUAL(perfectDistance, lineDistance); } } } //end of the 'for' loop } } } while(xParaEnum->hasMoreElements()); } DECLARE_ODFIMPORT_TEST(testTdf41542_borderlessPadding, "tdf41542_borderlessPadding.odt") { // the page style's borderless padding should force this to 3 pages, not 1 CPPUNIT_ASSERT_EQUAL( 3, getPages() ); } DECLARE_ODFIMPORT_TEST(testPageStyleLayoutDefault, "hello.odt") { uno::Reference xPropertySet(getStyles("PageStyles")->getByName("Default Style"), uno::UNO_QUERY); // This was style::PageStyleLayout_MIRRORED. CPPUNIT_ASSERT_EQUAL(style::PageStyleLayout_ALL, getProperty(xPropertySet, "PageStyleLayout")); } DECLARE_ODFIMPORT_TEST(testTdf64038, "space.odt") { // no space CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(4), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(4), 2)->getString()); // one space CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(6), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(6), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(7), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(7), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(7), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(8), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" b"), getRun(getParagraph(8), 2)->getString()); // two spaces CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(10), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(10), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(10), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(11), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(11), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(12), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(12), 2)->getString()); // three spaces CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(14), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(14), 2)->getString()); // no space CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(17), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(17), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(17), 3)->getString()); // one space CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(19), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(19), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(19), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(20), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(20), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(20), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(21), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(21), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(21), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(22), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(22), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" b"), getRun(getParagraph(22), 3)->getString()); // two spaces CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(24), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(24), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(24), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(25), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(25), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(25), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(26), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(26), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" b"), getRun(getParagraph(26), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(27), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(27), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(27), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(28), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(28), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" b"), getRun(getParagraph(28), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(29), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(29), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(29), 3)->getString()); // three spaces CPPUNIT_ASSERT_EQUAL(OUString("a"), getRun(getParagraph(31), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(31), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(31), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(32), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(32), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(32), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(33), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(33), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" b"), getRun(getParagraph(33), 3)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(34), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(34), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(34), 3)->getString()); // four spaces CPPUNIT_ASSERT_EQUAL(OUString("a "), getRun(getParagraph(36), 1)->getString()); CPPUNIT_ASSERT_EQUAL(OUString(" "), getRun(getParagraph(36), 2)->getString()); CPPUNIT_ASSERT_EQUAL(OUString("b"), getRun(getParagraph(36), 3)->getString()); } DECLARE_ODFIMPORT_TEST(testTdf74524, "tdf74524.odt") { uno::Reference xTextFieldsSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xFieldsAccess(xTextFieldsSupplier->getTextFields()); uno::Reference xFields(xFieldsAccess->createEnumeration()); uno::Any aField1 = xFields->nextElement(); uno::Reference xServiceInfo1(aField1, uno::UNO_QUERY); CPPUNIT_ASSERT(xServiceInfo1->supportsService("com.sun.star.text.textfield.PageNumber")); uno::Reference xPropertySet(aField1, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(uno::makeAny(sal_Int16(style::NumberingType::PAGE_DESCRIPTOR)), xPropertySet->getPropertyValue("NumberingType")); CPPUNIT_ASSERT_EQUAL(uno::makeAny(sal_Int16(0)), xPropertySet->getPropertyValue("Offset")); CPPUNIT_ASSERT_EQUAL(uno::makeAny(text::PageNumberType_CURRENT), xPropertySet->getPropertyValue("SubType")); uno::Reference xField1(aField1, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(OUString("1"), xField1->getAnchor()->getString()); uno::Any aField2 = xFields->nextElement(); uno::Reference xServiceInfo2(aField2, uno::UNO_QUERY); CPPUNIT_ASSERT(xServiceInfo2->supportsService("com.sun.star.text.textfield.Annotation")); uno::Reference xPropertySet2(aField2, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(uno::makeAny(OUString("Comment 1")), xPropertySet2->getPropertyValue("Content")); uno::Reference xField2(aField2, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(OUString("Hello 1World"), xField2->getAnchor()->getString()); CPPUNIT_ASSERT(!xFields->hasMoreElements()); } DECLARE_ODFIMPORT_TEST(testPageStyleLayoutRight, "hello.odt") { uno::Reference xPropertySet(getStyles("PageStyles")->getByName("Default Style"), uno::UNO_QUERY); // This caused a crash. xPropertySet->setPropertyValue("PageStyleLayout", uno::makeAny(style::PageStyleLayout_RIGHT)); } DECLARE_ODFIMPORT_TEST(testFdo61952, "hello.odt") { uno::Reference xPara(getParagraph(1), uno::UNO_QUERY); xPara->setPropertyValue("PageDescName", uno::makeAny(OUString("Left Page"))); xPara->setPropertyValue("PageDescName", uno::makeAny(OUString("Right Page"))); xPara->setPropertyValue("PageDescName", uno::makeAny(OUString("Left Page"))); xPara->setPropertyValue("PageDescName", uno::makeAny(OUString("Right Page"))); } DECLARE_ODFIMPORT_TEST(testFdo60842, "fdo60842.odt") { uno::Reference const xTable(getParagraphOrTable(1)); getCell(xTable, "A1", ""); getCell(xTable, "B1", "18/02/2012"); getCell(xTable, "C1", "USD"); // this is the cell with office:string-value getCell(xTable, "D1", ""); getCell(xTable, "E1", "01/04/2012"); } DECLARE_ODFIMPORT_TEST(testFdo79269, "fdo79269.odt") { uno::Reference xModel(mxComponent, uno::UNO_QUERY); uno::Reference xTextViewCursorSupplier(xModel->getCurrentController(), uno::UNO_QUERY); uno::Reference xCursor(xTextViewCursorSupplier->getViewCursor(), uno::UNO_QUERY); xCursor->jumpToLastPage(); CPPUNIT_ASSERT_EQUAL(sal_Int16(2), xCursor->getPage()); // The problem was that the first-footer was shared. uno::Reference xPropSet(getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(false, getProperty(xPropSet, "FirstIsShared")); uno::Reference xFooter1 = getProperty< uno::Reference >(xPropSet, "FooterTextFirst"); CPPUNIT_ASSERT_EQUAL(OUString("forst"), xFooter1->getString()); uno::Reference xFooter = getProperty< uno::Reference >(xPropSet, "FooterText"); CPPUNIT_ASSERT_EQUAL(OUString("second"), xFooter->getString()); } DECLARE_ODFIMPORT_TEST(testFdo79269_header, "fdo79269_header.odt") { uno::Reference xModel(mxComponent, uno::UNO_QUERY); uno::Reference xTextViewCursorSupplier(xModel->getCurrentController(), uno::UNO_QUERY); uno::Reference xCursor(xTextViewCursorSupplier->getViewCursor(), uno::UNO_QUERY); xCursor->jumpToLastPage(); CPPUNIT_ASSERT_EQUAL(sal_Int16(2), xCursor->getPage()); uno::Reference xPropSet(getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(false, getProperty(xPropSet, "FirstIsShared")); uno::Reference xFooter1 = getProperty< uno::Reference >(xPropSet, "HeaderTextFirst"); CPPUNIT_ASSERT_EQUAL(OUString("forst"), xFooter1->getString()); uno::Reference xFooter = getProperty< uno::Reference >(xPropSet, "HeaderText"); CPPUNIT_ASSERT_EQUAL(OUString("second"), xFooter->getString()); } DECLARE_ODFIMPORT_TEST(testPageBackground, "PageBackground.odt") { uno::Reference xPropertySet(getStyles("PageStyles")->getByName("Default Style"), uno::UNO_QUERY); // The background image was lost CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_BITMAP, getProperty(xPropertySet, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Sky"), getProperty(xPropertySet, "FillBitmapName")); CPPUNIT_ASSERT_EQUAL(drawing::BitmapMode_REPEAT, getProperty(xPropertySet, "FillBitmapMode")); uno::Reference xPropertySetOld(getStyles("PageStyles")->getByName("OldStandard"), uno::UNO_QUERY); // The background image was overridden by color CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_BITMAP, getProperty(xPropertySetOld, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Sky"), getProperty(xPropertySetOld, "FillBitmapName")); CPPUNIT_ASSERT_EQUAL(drawing::BitmapMode_REPEAT, getProperty(xPropertySetOld, "FillBitmapMode")); } DECLARE_ODFIMPORT_TEST(testFdo56272, "fdo56272.odt") { uno::Reference xShape = getShape(1); // Vertical position was incorrect. CPPUNIT_ASSERT_EQUAL(sal_Int32(422), xShape->getPosition().Y); // Was -2371 } DECLARE_ODFIMPORT_TEST(testCalcFootnoteContent, "ooo32780-1.odt") { //this was a CalcFootnoteContent crash } DECLARE_ODFIMPORT_TEST(testMoveSubTree, "ooo77837-1.odt") { //this was a MoveSubTree crash } DECLARE_ODFIMPORT_TEST(testFdo75872_ooo33, "fdo75872_ooo33.odt") { // graphics default style: line color and fill color changed uno::Reference xShape = getShape(1); CPPUNIT_ASSERT_EQUAL(sal_Int32(COL_BLACK), getProperty(xShape, "LineColor")); CPPUNIT_ASSERT_EQUAL(sal_Int32(Color(153, 204, 255)), getProperty(xShape, "FillColor")); } DECLARE_ODFIMPORT_TEST(testFdo75872_aoo40, "fdo75872_aoo40.odt") { // graphics default style: line color and fill color changed uno::Reference xShape = getShape(1); CPPUNIT_ASSERT_EQUAL(sal_Int32(Color(128, 128, 128)), getProperty(xShape, "LineColor")); CPPUNIT_ASSERT_EQUAL(sal_Int32(Color(0xCF, 0xE7, 0xF5)), getProperty(xShape, "FillColor")); } DECLARE_ODFIMPORT_TEST(testFdo55814, "fdo55814.odt") { uno::Reference xTextFieldsSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xFieldsAccess(xTextFieldsSupplier->getTextFields()); uno::Reference xFields(xFieldsAccess->createEnumeration()); uno::Reference xField(xFields->nextElement(), uno::UNO_QUERY); xField->setPropertyValue("Content", uno::makeAny(OUString("Yes"))); uno::Reference(xTextFieldsSupplier->getTextFields(), uno::UNO_QUERY)->refresh(); uno::Reference xTextSectionsSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xSections(xTextSectionsSupplier->getTextSections(), uno::UNO_QUERY); // This was "0". CPPUNIT_ASSERT_EQUAL(OUString("Hide==\"Yes\""), getProperty(xSections->getByIndex(0), "Condition")); } void lcl_CheckShape( uno::Reference const& xShape, OUString const& rExpected) { uno::Reference const xNamed(xShape, uno::UNO_QUERY); CPPUNIT_ASSERT(xNamed.is()); CPPUNIT_ASSERT_EQUAL(rExpected, xNamed->getName()); } DECLARE_ODFIMPORT_TEST(testFdo68839, "fdo68839.odt") { // check names lcl_CheckShape(getShape(1), "FrameXXX"); lcl_CheckShape(getShape(2), "ObjectXXX"); lcl_CheckShape(getShape(3), "FrameY"); lcl_CheckShape(getShape(4), "graphicsXXX"); try { uno::Reference xShape = getShape(5); CPPUNIT_FAIL("IndexOutOfBoundsException expected"); } catch (lang::IndexOutOfBoundsException const&) { } // check prev/next chain uno::Reference xFrame1(getShape(1), uno::UNO_QUERY); uno::Reference xFrame2(getShape(3), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(OUString(), getProperty(xFrame1, "ChainPrevName")); CPPUNIT_ASSERT_EQUAL(OUString("FrameY"), getProperty(xFrame1, "ChainNextName")); CPPUNIT_ASSERT_EQUAL(OUString("FrameXXX"), getProperty(xFrame2, "ChainPrevName")); CPPUNIT_ASSERT_EQUAL(OUString(), getProperty(xFrame2, "ChainNextName")); } DECLARE_ODFIMPORT_TEST(testFdo82165, "fdo82165.odt") { // there was a duplicate shape in the left header lcl_CheckShape(getShape(1), "Picture 9"); try { uno::Reference xShape = getShape(2); CPPUNIT_FAIL("IndexOutOfBoundsException expected"); } catch (lang::IndexOutOfBoundsException const&) { } } DECLARE_ODFIMPORT_TEST(testTdf89802, "tdf89802.fodt") { // the text frame was dropped during import uno::Reference const xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference const xIndexAccess(xTextFramesSupplier->getTextFrames(), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount()); uno::Reference const xFrame(xIndexAccess->getByIndex(0), uno::UNO_QUERY); sal_Int32 nValue(0); xFrame->getPropertyValue("BackColor") >>= nValue; CPPUNIT_ASSERT_EQUAL(sal_Int32(0x3f004586), nValue); } DECLARE_ODFIMPORT_TEST(testFdo37606, "fdo37606.odt") { SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell(); SwShellCursor* pShellCursor = pWrtShell->getShellCursor(false); { pWrtShell->SelAll(); // Selects A1. SwTextNode& rCellEnd = dynamic_cast(pShellCursor->End()->nNode.GetNode()); // fdo#72486 This was "Hello.", i.e. a single select-all selected the whole document, not just the cell only. CPPUNIT_ASSERT_EQUAL(OUString("A1"), rCellEnd.GetText()); pWrtShell->SelAll(); // Selects the whole table. pWrtShell->SelAll(); // Selects the whole document. SwTextNode& rStart = dynamic_cast(pShellCursor->Start()->nNode.GetNode()); CPPUNIT_ASSERT_EQUAL(OUString("A1"), rStart.GetText()); SwTextNode& rEnd = dynamic_cast(pShellCursor->End()->nNode.GetNode()); // This was "A1", i.e. Ctrl-A only selected the A1 cell of the table, not the whole document. CPPUNIT_ASSERT_EQUAL(OUString("Hello."), rEnd.GetText()); } { pWrtShell->SttEndDoc(false); // Go to the end of the doc. pWrtShell->SelAll(); // And now that we're outside of the table, try Ctrl-A again. SwTextNode& rStart = dynamic_cast(pShellCursor->Start()->nNode.GetNode()); // This was "Hello", i.e. Ctrl-A did not select the starting table. CPPUNIT_ASSERT_EQUAL(OUString("A1"), rStart.GetText()); SwTextNode& rEnd = dynamic_cast(pShellCursor->End()->nNode.GetNode()); CPPUNIT_ASSERT_EQUAL(OUString("Hello."), rEnd.GetText()); } { pWrtShell->Delete(); // Delete the selection // And make sure the table got deleted as well. SwNodes& rNodes = pWrtShell->GetDoc()->GetNodes(); SwNodeIndex nNode(rNodes.GetEndOfExtras()); SwContentNode* pContentNode = rNodes.GoNext(&nNode); // First content node was in a table -> table wasn't deleted. CPPUNIT_ASSERT(!pContentNode->FindTableNode()); } } #if !defined(_WIN32) DECLARE_ODFIMPORT_TEST(testFdo37606Copy, "fdo37606.odt") { SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell(); // Ctrl-A pWrtShell->SelAll(); // Selects A1. pWrtShell->SelAll(); // Selects the whole table. pWrtShell->SelAll(); // Selects the whole document. // Ctrl-C SwTransferable* pTransferable = new SwTransferable(*pWrtShell); uno::Reference xTransferable(pTransferable); pTransferable->Copy(); pWrtShell->SttEndDoc(false); // Go to the end of the doc. // Ctrl-V TransferableDataHelper aDataHelper(TransferableDataHelper::CreateFromSystemClipboard(&pWrtShell->GetView().GetEditWin())); SwTransferable::Paste( *pWrtShell, aDataHelper ); // Previously copy&paste failed to copy the table in case it was the document-starting one. uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xTables(xTablesSupplier->getTextTables(), uno::UNO_QUERY); #if !defined(MACOSX) && !defined(LIBO_HEADLESS) // FIXME CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xTables->getCount()); #endif } #endif //WNT DECLARE_ODFIMPORT_TEST(testFdo69862, "fdo69862.odt") { // The test doc is special in that it starts with a table and it also has a footnote. SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell(); SwShellCursor* pShellCursor = pWrtShell->getShellCursor(false); pWrtShell->SelAll(); // Selects A1. pWrtShell->SelAll(); // Selects the whole table. pWrtShell->SelAll(); // Selects the whole document. SwTextNode& rStart = dynamic_cast(pShellCursor->Start()->nNode.GetNode()); // This was "Footnote.", as Ctrl-A also selected footnotes, but it should not. CPPUNIT_ASSERT_EQUAL(OUString("A1"), rStart.GetText()); SwTextNode& rEnd = dynamic_cast(pShellCursor->End()->nNode.GetNode()); CPPUNIT_ASSERT_EQUAL(OUString("H" "\x01" "ello."), rEnd.GetText()); } DECLARE_ODFIMPORT_TEST(testFdo69979, "fdo69979.odt") { // The test doc is special in that it starts with a table and it also has a header. SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell(); SwShellCursor* pShellCursor = pWrtShell->getShellCursor(false); pWrtShell->SelAll(); // Selects A1. pWrtShell->SelAll(); // Selects the whole table. pWrtShell->SelAll(); // Selects the whole document. SwTextNode& rStart = dynamic_cast(pShellCursor->Start()->nNode.GetNode()); // This was "", as Ctrl-A also selected headers, but it should not. CPPUNIT_ASSERT_EQUAL(OUString("A1"), rStart.GetText()); SwTextNode& rEnd = dynamic_cast(pShellCursor->End()->nNode.GetNode()); CPPUNIT_ASSERT_EQUAL(OUString("Hello."), rEnd.GetText()); } DECLARE_ODFIMPORT_TEST(testSpellmenuRedline, "spellmenu-redline.odt") { SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell(); uno::Reference xAlt; SwSpellPopup aPopup(pWrtShell, xAlt, OUString()); Menu& rMenu = aPopup.GetMenu(); // Make sure that if we show the spellcheck popup menu (for the current // document, which contains redlines), then the last two entries will be // always 'go to next/previous change'. CPPUNIT_ASSERT_EQUAL(OString("next"), rMenu.GetItemIdent(rMenu.GetItemId(rMenu.GetItemCount() - 2))); CPPUNIT_ASSERT_EQUAL(OString("prev"), rMenu.GetItemIdent(rMenu.GetItemId(rMenu.GetItemCount() - 1))); } DECLARE_ODFIMPORT_TEST(testAnnotationFormatting, "annotation-formatting.odt") { uno::Reference xTextField = getProperty< uno::Reference >(getRun(getParagraph(1), 1), "TextField"); uno::Reference xText = getProperty< uno::Reference >(xTextField, "TextRange"); // Make sure we test the right annotation. uno::Reference xParagraph = getParagraphOfText(1, xText, "Looses: bold"); // Formatting was lost: the second text portion was NORMAL, not BOLD. CPPUNIT_ASSERT_EQUAL(awt::FontWeight::BOLD, getProperty(getRun(xParagraph, 2), "CharWeight")); } DECLARE_ODFIMPORT_TEST(fdo81223, "fdo81223.odt") { uno::Reference xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xIndexAccess(xTextFramesSupplier->getTextFrames(), uno::UNO_QUERY); uno::Reference xFrame(xIndexAccess->getByIndex(0), uno::UNO_QUERY); sal_Int32 nValue(0); xFrame->getPropertyValue("BackColor") >>= nValue; CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffffff), nValue); } DECLARE_ODFIMPORT_TEST(fdo90130_1, "fdo90130-1.odt") { uno::Reference xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xIndexAccess(xTextFramesSupplier->getTextFrames(), uno::UNO_QUERY); uno::Reference xFrame(xIndexAccess->getByIndex(0), uno::UNO_QUERY); sal_Int32 nValue(0); xFrame->getPropertyValue("BackColor") >>= nValue; CPPUNIT_ASSERT_EQUAL(sal_Int32(0x00ff3333), nValue); } DECLARE_ODFIMPORT_TEST(fdo90130_2, "fdo90130-2.odt") { uno::Reference xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xIndexAccess(xTextFramesSupplier->getTextFrames(), uno::UNO_QUERY); uno::Reference xFrame(xIndexAccess->getByIndex(0), uno::UNO_QUERY); sal_Int32 nValue(0); xFrame->getPropertyValue("BackColorTransparency") >>= nValue; CPPUNIT_ASSERT_EQUAL(sal_Int32(50), nValue); } DECLARE_ODFIMPORT_TEST(testBnc800714, "bnc800714.fodt") { // Document's second paragraph wants to be together with the third one, but: // - it's in a section with multiple columns // - contains a single as-char anchored frame // This was a layout loop. CPPUNIT_ASSERT(getProperty< uno::Reference >(getParagraph(2), "TextSection").is()); CPPUNIT_ASSERT(getProperty(getParagraph(2), "ParaKeepTogether")); } DECLARE_ODFIMPORT_TEST(testTdf103025, "tdf103025.odt") { CPPUNIT_ASSERT_EQUAL(OUString("2014-01"), parseDump("/root/page[1]/header/tab[2]/row[2]/cell[3]/txt/Special", "rText")); CPPUNIT_ASSERT_EQUAL(OUString("2014-01"), parseDump("/root/page[2]/header/tab[2]/row[2]/cell[3]/txt/Special", "rText")); CPPUNIT_ASSERT_EQUAL(OUString("2014-02"), parseDump("/root/page[3]/header/tab[2]/row[2]/cell[3]/txt/Special", "rText")); CPPUNIT_ASSERT_EQUAL(OUString("2014-03"), parseDump("/root/page[4]/header/tab[2]/row[2]/cell[3]/txt/Special", "rText")); CPPUNIT_ASSERT_EQUAL(OUString("2014-03"), parseDump("/root/page[5]/header/tab[2]/row[2]/cell[3]/txt/Special", "rText")); } DECLARE_ODFIMPORT_TEST(testTdf76322_columnBreakInHeader, "tdf76322_columnBreakInHeader.docx") { // column breaks were ignored. First line should start in column 2 CPPUNIT_ASSERT_EQUAL( OUString("Test1"), parseDump("/root/page[1]/header/section/column[2]/body/txt/text()") ); } DECLARE_ODFIMPORT_TEST(testTdf76349_1columnBreak, "tdf76349_1columnBreak.odt") { //single-column breaks should only be treated as page breaks for MS formats - should be only one page here. uno::Reference xModel(mxComponent, uno::UNO_QUERY); uno::Reference xTextViewCursorSupplier(xModel->getCurrentController(), uno::UNO_QUERY); uno::Reference xCursor(xTextViewCursorSupplier->getViewCursor(), uno::UNO_QUERY); xCursor->jumpToLastPage(); CPPUNIT_ASSERT_EQUAL(sal_Int16(1), xCursor->getPage()); } DECLARE_ODFIMPORT_TEST(testTdf96113, "tdf96113.odt") { // Background of the formula frame was white (0xffffff), not green. CPPUNIT_ASSERT_EQUAL(sal_Int32(0x00ff00), getProperty(getShape(1), "BackColor")); } DECLARE_ODFIMPORT_TEST(testFdo47267, "fdo47267-3.odt") { // This was a Style Families getByName() crash } DECLARE_ODFIMPORT_TEST(testTdf75221, "tdf75221.odt") { // When "Don't add space between paragraphs of the same style" setting set, // spacing between same-style paragraphs must be equal to their line spacing. // It used to be 0. OUString top = parseDump("/root/page/body/txt[2]/infos/prtBounds", "top"); CPPUNIT_ASSERT(top.toInt32() > 0); } DECLARE_ODFIMPORT_TEST(testTdf101729, "tdf101729.odt") { sal_Int32 l = parseDump("/root/page/body/tab/row/cell[1]/infos/bounds", "left").toInt32(); sal_Int32 w = parseDump("/root/page/body/tab/row/cell[1]/infos/bounds", "width").toInt32(); sal_Int32 x = parseDump("/root/page/body/tab/row/cell[1]/txt/infos/bounds", "left").toInt32(); // Make sure the text does not go outside and verify it is centered roughly CPPUNIT_ASSERT( l + w / 4 < x ); CPPUNIT_ASSERT( x < l + 3 * w / 4); } DECLARE_ODFIMPORT_TEST(testTdf107392, "tdf107392.odt") { // Shapes from bottom to top were Frame, SVG, Bitmap, i.e. in the order as // they appeared in the document, not according to their requested z-index, // as sorting failed. // So instead of 0, 1, 2 these were 2, 0, 1. CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(getShapeByName("Bitmap"), "ZOrder")); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), getProperty(getShapeByName("Frame"), "ZOrder")); CPPUNIT_ASSERT_EQUAL(sal_Int32(2), getProperty(getShapeByName("SVG"), "ZOrder")); } DECLARE_ODFIMPORT_TEST(testTdf100033_1, "tdf100033_1.odt") { // Test document have three duplicated frames with the same name and position/size -> import one frame uno::Reference xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xIndexAccess(xTextFramesSupplier->getTextFrames(), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount()); } DECLARE_ODFIMPORT_TEST(testWordAsCharShape, "Word2010AsCharShape.odt") { // As-char shape had VertOrient "from-top"/NONE default from GetVOrient() uno::Reference const xShape(getShape(1)); CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AS_CHARACTER, getProperty(xShape, "AnchorType")); CPPUNIT_ASSERT_EQUAL(text::VertOrientation::TOP, getProperty(xShape, "VertOrient")); // also, the paragraph default fo:bottom-margin was wrongly applied to // the shape CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xShape, "BottomMargin")); } DECLARE_ODFIMPORT_TEST(testTdf100033_2, "tdf100033_2.odt") { // Test document have three different frames anchored to different paragraphs -> import all frames uno::Reference xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xIndexAccess(xTextFramesSupplier->getTextFrames(), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(sal_Int32(3), xIndexAccess->getCount()); } DECLARE_ODFIMPORT_TEST(testI61225, "i61225.sxw") { // Part of ooo61225-1.sxw from crashtesting. // This never returned. calcLayout(); } DECLARE_ODFIMPORT_TEST(testTdf109080_loext_ns, "tdf109080_loext_ns.odt") { // Test we can import and CPPUNIT_ASSERT_EQUAL(OUString("This is the first page header"), parseDump("/root/page[1]/header/txt/text()")); CPPUNIT_ASSERT_EQUAL(OUString("This is the non-first-page header"), parseDump("/root/page[2]/header/txt/text()")); CPPUNIT_ASSERT_EQUAL(OUString("This is the first page footer"), parseDump("/root/page[1]/footer/txt/text()")); CPPUNIT_ASSERT_EQUAL(OUString("This is the non-first-page footer"), parseDump("/root/page[2]/footer/txt/text()")); } DECLARE_ODFIMPORT_TEST(testTdf109080_style_ns, "tdf109080_style_ns.odt") { // Test we can import and // (produced by LibreOffice 4.0 - 5.x) CPPUNIT_ASSERT_EQUAL(OUString("This is the first page header"), parseDump("/root/page[1]/header/txt/text()")); CPPUNIT_ASSERT_EQUAL(OUString("This is the non-first-page header"), parseDump("/root/page[2]/header/txt/text()")); CPPUNIT_ASSERT_EQUAL(OUString("This is the first page footer"), parseDump("/root/page[1]/footer/txt/text()")); CPPUNIT_ASSERT_EQUAL(OUString("This is the non-first-page footer"), parseDump("/root/page[2]/footer/txt/text()")); } DECLARE_ODFIMPORT_TEST(testTdf109228, "tdf109228.odt") { // Embedded object with no frame name was imported incorrectly, it was anchored 'to character' instead of 'as character' CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AS_CHARACTER, getProperty(getShape(1), "AnchorType")); } DECLARE_ODFIMPORT_TEST(testTdf94882, "tdf94882.odt") { // Get the header of the page containing our content // (done this way to skip past any blank page inserted before it // due to the page number being even) OUString headertext = parseDump( "/root/page[starts-with(body/txt/text(),'The paragraph style on this')]" "/header/txt/text()" ); // This header should be the first page header CPPUNIT_ASSERT_EQUAL(OUString("This is the first page header"), headertext); } DECLARE_ODFIMPORT_TEST(testBlankBeforeFirstPage, "tdf94882.odt") { // This document starts on page 50, which is even, so it should have a // blank page inserted before it to make it a left page CPPUNIT_ASSERT_EQUAL_MESSAGE("There should be 2 pages output", OUString("2"), parseDump("count(/root/page)") ); CPPUNIT_ASSERT_EQUAL_MESSAGE("The first page should be blank", OUString("0"), parseDump("count(/root/page[1]/body)") ); } DECLARE_ODFIMPORT_TEST(testTdf115079, "tdf115079.odt") { // This document caused segfault when layouting } DECLARE_ODFIMPORT_TEST(testTdf108482, "tdf108482.odt") { CPPUNIT_ASSERT_EQUAL_MESSAGE("The table on second page must have two rows", OUString("2"), parseDump("count(/root/page[2]/body/tab/row)") ); CPPUNIT_ASSERT_EQUAL_MESSAGE("The second page table's first row must be the repeated headline", OUString("Header"), parseDump("/root/page[2]/body/tab/row[1]/cell/txt") ); // The first (repeated headline) row with vertical text orientation must have non-zero height // (in my tests, it was 1135) CPPUNIT_ASSERT_GREATER( sal_Int32(1000), parseDump("/root/page[2]/body/tab/row[1]/infos/bounds", "height").toInt32() ); } DECLARE_ODFIMPORT_TEST(testTdf116195, "tdf116195.odt") { // The image was set to zero height due to a regression CPPUNIT_ASSERT_EQUAL( sal_Int32(12960), parseDump("/root/page/anchored/fly/notxt/infos/bounds", "height").toInt32() ); } DECLARE_ODFIMPORT_TEST(testTdf120677, "tdf120677.fodt") { // The document used to hang the layout, consuming memory until OOM } DECLARE_ODFIMPORT_TEST(testTdf123829, "tdf123829.odt") { SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); SwDoc* pDoc = pTextDoc->GetDocShell()->GetDoc(); CPPUNIT_ASSERT_EQUAL_MESSAGE( "Compatibility: collapse cell paras should not be set", false, pDoc->getIDocumentSettingAccess().get(DocumentSettingId::COLLAPSE_EMPTY_CELL_PARA)); } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */