/* -*- 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 #include #include using namespace css; class Test : public SwModelTestBase { public: Test() : SwModelTestBase("/sw/qa/extras/rtfexport/data/", "Rich Text Format") { } }; DECLARE_RTFEXPORT_TEST(testTdf100961_fixedDateTime, "tdf100961_fixedDateTime.rtf") { // This should be a fixed date/time field, not the current time. getParagraph(1, "05.01.19 04:06:08"); uno::Reference xTFS(mxComponent, uno::UNO_QUERY); uno::Reference xFields(xTFS->getTextFields()->createEnumeration()); CPPUNIT_ASSERT_MESSAGE("constant time", getProperty(xFields->nextElement(), "IsFixed")); } DECLARE_RTFEXPORT_TEST(testTdf108949, "tdf108949_footnoteCharFormat.odt") { CPPUNIT_ASSERT_EQUAL(1, getPages()); CPPUNIT_ASSERT_EQUAL_MESSAGE("Paragraph Numbering style", OUString(), getProperty(getParagraph(2), "NumberingStyleName")); uno::Reference xFootnotesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xFootnotes = xFootnotesSupplier->getFootnotes(); uno::Reference xFootnoteText; xFootnotes->getByIndex(0) >>= xFootnoteText; // This was green (0x00A800), the character property of the footnote character, not the footnote text CPPUNIT_ASSERT_EQUAL_MESSAGE( "Footnote Text color", COL_AUTO, getProperty(getRun(getParagraphOfText(1, xFootnoteText), 1), "CharColor")); } DECLARE_RTFEXPORT_TEST(testTdf141964_numId0, "tdf141964_numId0.rtf") { // Unit test added where numId is zero - which is only possible in RTF. uno::Reference xPara(getParagraph(3, "Geschichte"), uno::UNO_QUERY); // Pre-emptive test: ensure that paragraph 3 remains numbered and numId0 doesn't mean no numbering. CPPUNIT_ASSERT(!getProperty(xPara, "NumberingStyleName").isEmpty()); } DECLARE_RTFEXPORT_TEST(testTdf108949_footnote, "tdf108949_footnote.rtf") { CPPUNIT_ASSERT_EQUAL_MESSAGE("Paragraph Numbering style", OUString(), getProperty(getParagraph(2), "NumberingStyleName")); uno::Reference xFootnotesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xFootnotes = xFootnotesSupplier->getFootnotes(); uno::Reference xFootnote; xFootnotes->getByIndex(0) >>= xFootnote; // The color of the footnote anchor was black (0x000000) CPPUNIT_ASSERT_EQUAL_MESSAGE("Footnote Character color", Color(0xFF0000), getProperty(xFootnote->getAnchor(), "CharColor")); } DECLARE_RTFEXPORT_TEST(testTdf130817, "tdf130817.rtf") { uno::Reference xEndnotesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xEndnotes = xEndnotesSupplier->getEndnotes(); uno::Reference xEndnote1; xEndnotes->getByIndex(0) >>= xEndnote1; uno::Reference xEndnoteText1; xEndnotes->getByIndex(0) >>= xEndnoteText1; CPPUNIT_ASSERT_EQUAL(OUString("Titolo 1"), xEndnoteText1->getString().trim()); CPPUNIT_ASSERT_EQUAL(OUString("$"), xEndnote1->getAnchor()->getString()); uno::Reference xEndnote2; xEndnotes->getByIndex(1) >>= xEndnote2; uno::Reference xEndnoteText2; xEndnotes->getByIndex(1) >>= xEndnoteText2; CPPUNIT_ASSERT_EQUAL(OUString("Titolo 2"), xEndnoteText2->getString().trim()); CPPUNIT_ASSERT_EQUAL(OUString("$"), xEndnote1->getAnchor()->getString()); } DECLARE_RTFEXPORT_TEST(testTdf154129_transparentFrame, "tdf154129_transparentFrame.rtf") { // Without the fix, this was zero, and the text frame with "Visible" just looks white. CPPUNIT_ASSERT_EQUAL(sal_Int16(100), getProperty(getShape(1), "FillTransparence")); } DECLARE_RTFEXPORT_TEST(testTdf137683_charHighlightNone, "tdf137683_charHighlightNone.rtf") { uno::Reference xRun(getRun(getParagraph(1), 1), uno::UNO_QUERY_THROW); // This test was failing with a brown charHighlight of 8421376 (0x808000), instead of COL_TRANSPARENT (0xFFFFFFFF) CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xRun, "CharHighlight")); } DECLARE_RTFEXPORT_TEST(testTdf116436_tableBackground, "tdf116436_tableBackground.odt") { CPPUNIT_ASSERT_EQUAL(1, getPages()); uno::Reference xTextTablesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xTables(xTextTablesSupplier->getTextTables(), uno::UNO_QUERY); uno::Reference xTable(xTables->getByIndex(0), uno::UNO_QUERY); uno::Reference xCell = xTable->getCellByName("A1"); if (isExported()) CPPUNIT_ASSERT_EQUAL(Color(0xF8DF7C), getProperty(xCell, "BackColor")); xCell.set(xTable->getCellByName("A6")); CPPUNIT_ASSERT_EQUAL(Color(0x81D41A), getProperty(xCell, "BackColor")); xCell.set(xTable->getCellByName("B6")); if (isExported()) CPPUNIT_ASSERT_EQUAL(Color(0xFFFBCC), getProperty(xCell, "BackColor")); } DECLARE_RTFEXPORT_TEST(testTdf122589_firstSection, "tdf122589_firstSection.odt") { CPPUNIT_ASSERT_EQUAL(1, getPages()); uno::Reference xPageStyle(getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY); uno::Reference xHeaderText = getProperty>(xPageStyle, "HeaderText"); CPPUNIT_ASSERT_EQUAL(OUString("My header"), xHeaderText->getString()); CPPUNIT_ASSERT_EQUAL_MESSAGE("# of paragraphs", 2, getParagraphs()); } DECLARE_RTFEXPORT_TEST(testTdf104035, "tdf104035.rtf") { auto aTabStops = getProperty>(getParagraph(1), "ParaTabStops"); CPPUNIT_ASSERT(aTabStops.hasElements()); // This was 3330 twips instead, as tabs were assumed to be relative. CPPUNIT_ASSERT_EQUAL(static_cast(convertTwipToMm100(450)), aTabStops[0].Position); } DECLARE_RTFEXPORT_TEST(testGraphicObjectFliph, "graphic-object-fliph.rtf") { CPPUNIT_ASSERT(getProperty(getShape(1), "HoriMirroredOnEvenPages")); CPPUNIT_ASSERT(getProperty(getShape(1), "HoriMirroredOnOddPages")); } DECLARE_RTFEXPORT_TEST(testTdf114333, "tdf114333.rtf") { uno::Reference xTextTablesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xTables(xTextTablesSupplier->getTextTables(), uno::UNO_QUERY); uno::Reference xTable(xTables->getByIndex(0), uno::UNO_QUERY); // Check the distance from left CPPUNIT_ASSERT_EQUAL(sal_Int32(8502), getProperty(xTable, "LeftMargin")); // This was 17000 = 8502 + 8498 on import, 15240 on export and following import CPPUNIT_ASSERT_EQUAL(sal_Int32(8498), getProperty(xTable, "Width")); } DECLARE_RTFEXPORT_TEST(testTdf115180, "tdf115180.docx") { // On export to RTF, column separator positions were written without taking base width // into account and then arrived huge, ~64000, which resulted in wrong table and cell widths sal_Int32 rowWidth = parseDump("/root/page/body/tab/row/infos/bounds"_ostr, "width"_ostr).toInt32(); CPPUNIT_ASSERT_EQUAL_MESSAGE("Row width", sal_Int32(9360), rowWidth); sal_Int32 cell1Width = parseDump("/root/page/body/tab/row/cell[1]/infos/bounds"_ostr, "width"_ostr).toInt32(); CPPUNIT_ASSERT_MESSAGE("First cell width", cell1Width >= 9140); CPPUNIT_ASSERT_MESSAGE("First cell width", cell1Width <= 9142); sal_Int32 cell2Width = parseDump("/root/page/body/tab/row/cell[2]/infos/bounds"_ostr, "width"_ostr).toInt32(); CPPUNIT_ASSERT_MESSAGE("Second cell width", cell2Width >= 218); CPPUNIT_ASSERT_MESSAGE("Second cell width", cell2Width <= 220); } DECLARE_ODFEXPORT_TEST(testArabicZeroNumbering, "arabic-zero-numbering.rtf") { auto xNumberingRules = getProperty>(getParagraph(1), "NumberingRules"); comphelper::SequenceAsHashMap aMap(xNumberingRules->getByIndex(0)); // Without the accompanying fix in place, this test would have failed with: // - Expected: 64 // - Actual : 4 // i.e. numbering type was ARABIC, not ARABIC_ZERO. CPPUNIT_ASSERT_EQUAL(o3tl::narrowing(style::NumberingType::ARABIC_ZERO), aMap["NumberingType"].get()); } DECLARE_RTFEXPORT_TEST(testTdf116841, "tdf116841.rtf") { // This was 0, left margin was ignored as we assumed the default is already // fine for us. CPPUNIT_ASSERT_EQUAL(static_cast(1270), getProperty(getParagraph(1), "ParaLeftMargin")); } DECLARE_RTFEXPORT_TEST(testTdf117268, "tdf117268.rtf") { // Here we check that we correctly mimic Word's treatment of erroneous \itap0 inside tables. // Previously, the first table was import as text, and second top-level one only imported // last row with nested table (first row was also imported as text). uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY_THROW); uno::Reference xTables(xTablesSupplier->getTextTables(), uno::UNO_QUERY_THROW); // First (simple) table uno::Reference xTable(xTables->getByIndex(0), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getRows()->getCount()); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getColumns()->getCount()); uno::Reference xCell(xTable->getCellByName("A1"), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(OUString("Text 1"), xCell->getString()); // Nested table xTable.set(xTables->getByIndex(1), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getRows()->getCount()); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getColumns()->getCount()); xCell.set(xTable->getCellByName("A1"), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(OUString("Text 3"), xCell->getString()); uno::Reference xNestedAnchor(xTable->getAnchor(), uno::UNO_QUERY_THROW); uno::Reference xAnchorCell(xNestedAnchor->getPropertyValue("Cell"), uno::UNO_QUERY_THROW); // Outer table xTable.set(xTables->getByIndex(2), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xTable->getRows()->getCount()); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getColumns()->getCount()); xCell.set(xTable->getCellByName("A1"), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(OUString("Text 2"), xCell->getString()); xCell.set(xTable->getCellByName("A2"), uno::UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(xCell, xAnchorCell); } CPPUNIT_TEST_FIXTURE(Test, testTdf117505) { createSwDoc("tdf117505.odt"); { CPPUNIT_ASSERT_EQUAL(1, getShapes()); CPPUNIT_ASSERT_EQUAL(1, getPages()); uno::Reference xPageStyles(getStyles("PageStyles")); uno::Reference xFirstPage(xPageStyles->getByName("First Page"), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(static_cast(1499), getProperty(xFirstPage, "HeaderHeight")); } // When saving to rtf: saveAndReload("Rich Text Format"); { CPPUNIT_ASSERT_EQUAL(1, getShapes()); CPPUNIT_ASSERT_EQUAL(1, getPages()); uno::Reference xPageStyles(getStyles("PageStyles")); uno::Reference xFirstPage(xPageStyles->getByName("Standard"), uno::UNO_QUERY); // This was 499, small header height resulted in visible whitespace from // remaining top margin -> header content moved down. CPPUNIT_ASSERT_EQUAL(static_cast(1499), getProperty(xFirstPage, "HeaderHeight")); } } DECLARE_RTFEXPORT_TEST(testTdf112520, "tdf112520.docx") { if (!isExported()) return; // Assert that the white shape is on top of the yellow one. CPPUNIT_ASSERT_EQUAL(Color(0xffff00), getProperty(getShape(2), "FillColor")); CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AT_CHARACTER, getProperty(getShape(2), "AnchorType")); CPPUNIT_ASSERT_EQUAL(COL_WHITE, getProperty(getShape(3), "FillColor")); // Without the accompanying fix in place, this test would have failed with // 'expected: 4, actual: 2'. // This means the draw page was 0/at-char/white, 1/at-char/yellow, 2/at-page/white, // instead of the good 0/at-page/white, 1/at-char/yellow, 2/at-char/white. CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AT_CHARACTER, getProperty(getShape(3), "AnchorType")); } CPPUNIT_TEST_FIXTURE(Test, testNestedHyperlink) { // Given a hyperlink contains a footnote which contains a hyperlink: { createSwDoc(); uno::Reference xFactory(mxComponent, uno::UNO_QUERY); uno::Reference xFootnote( xFactory->createInstance("com.sun.star.text.Footnote"), uno::UNO_QUERY); uno::Reference xTextDocument(mxComponent, uno::UNO_QUERY); uno::Reference xText = xTextDocument->getText(); uno::Reference xCursor = xText->createTextCursor(); xText->insertString(xCursor, "a", /*bAbsorb=*/false); xText->insertTextContent(xCursor, xFootnote, /*bAbsorb=*/false); xText->insertString(xCursor, "b", /*bAbsorb=*/false); xCursor->gotoStart(/*bExpand=*/false); xCursor->gotoEnd(/*bExpand=*/true); uno::Reference xCursorProps(xCursor, uno::UNO_QUERY); xCursorProps->setPropertyValue("HyperLinkURL", uno::Any(OUString("http://body.com/"))); uno::Reference xFootnoteText(xFootnote, uno::UNO_QUERY); xCursor = xFootnoteText->createTextCursor(); xFootnoteText->insertString(xCursor, "x", /*bAbsorb=*/false); xCursor->gotoStart(/*bExpand=*/false); xCursor->gotoEnd(/*bExpand=*/true); xCursorProps.set(xCursor, uno::UNO_QUERY); xCursorProps->setPropertyValue("HyperLinkURL", uno::Any(OUString("http://footnote.com/"))); } // When exporting to RTF: // Without the accompanying fix in place, this test would have failed with: // assertion failed // - Expression: xComponent.is() // i.e. the RTF output was not well-formed, loading failed. saveAndReload("Rich Text Format"); // Then make sure both hyperlinks are have the correct URLs. uno::Reference xParagraph = getParagraph(1); uno::Reference xPortion = getRun(xParagraph, 1); CPPUNIT_ASSERT_EQUAL(OUString("http://body.com/"), getProperty(xPortion, "HyperLinkURL")); auto xFootnote = getProperty>(getRun(xParagraph, 2), "Footnote"); uno::Reference xFootnotePortion = getRun(getParagraphOfText(1, xFootnote), 1); CPPUNIT_ASSERT_EQUAL(OUString("http://footnote.com/"), getProperty(xFootnotePortion, "HyperLinkURL")); } DECLARE_RTFEXPORT_TEST(testTdf121623, "tdf121623.rtf") { // This was 2, multicolumn section was ignored at the table. CPPUNIT_ASSERT_EQUAL(1, getPages()); } DECLARE_RTFEXPORT_TEST(testTdf66543, "tdf66543.rtf") { // Without the accompanying fix in place, this test would have failed with // 'Expected: 2; Actual : 3' after import (off-by-one), then with // 'Expected: 2; Actual : 0' (export not implemented). CPPUNIT_ASSERT_EQUAL(sal_Int32(2), getProperty(getParagraph(1), "ParaLineNumberStartValue")); } DECLARE_RTFEXPORT_TEST(testUlw, "ulw.rtf") { // Test underlying in individual words mode. CPPUNIT_ASSERT(getProperty(getRun(getParagraph(1), 1), "CharWordMode")); } DECLARE_RTFEXPORT_TEST(testTdf122455, "tdf122455.rtf") { // Without the accompanying fix in place, this test would have failed with // 'Expected: 16; Actual : 32', the font size from a list definition // leaked into the first run's character properties. CPPUNIT_ASSERT_EQUAL(16.0, getProperty(getRun(getParagraph(1), 1), "CharHeight")); } DECLARE_RTFEXPORT_TEST(testTdf125719_case_1, "tdf125719_case_1.rtf") { CPPUNIT_ASSERT_EQUAL(awt::FontWeight::NORMAL, getProperty(getRun(getParagraph(1), 1), "CharWeight")); CPPUNIT_ASSERT_EQUAL(awt::FontWeight::NORMAL, getProperty(getRun(getParagraph(3), 1), "CharWeight")); } DECLARE_RTFEXPORT_TEST(testTdf125719_case_2, "tdf125719_case_2.rtf") { CPPUNIT_ASSERT_EQUAL(awt::FontWeight::BOLD, getProperty(getRun(getParagraph(1), 1), "CharWeight")); CPPUNIT_ASSERT_EQUAL(awt::FontWeight::BOLD, getProperty(getRun(getParagraph(3), 1), "CharWeight")); CPPUNIT_ASSERT_EQUAL(awt::FontWeight::NORMAL, getProperty(getRun(getParagraph(5), 1), "CharWeight")); } DECLARE_RTFEXPORT_TEST(testTabs, "tabs.rtf") { // Test tab alignment in decimal mode. auto aTabStops = getProperty>(getParagraph(1), "ParaTabStops"); CPPUNIT_ASSERT_EQUAL(static_cast(1), aTabStops.getLength()); const style::TabStop& rTabStop = aTabStops[0]; CPPUNIT_ASSERT_EQUAL(style::TabAlign_DECIMAL, rTabStop.Alignment); } DECLARE_RTFEXPORT_TEST(testTdf123703, "tdf123703.rtf") { #if !defined(MACOSX) // This was 1, because of normal space character width in consecutive spaces CPPUNIT_ASSERT_EQUAL(2, getPages()); #else // still 1 here CPPUNIT_ASSERT_EQUAL(1, getPages()); #endif } DECLARE_RTFEXPORT_TEST(testTdf123703_stshfdbch, "tdf123703_stshfdbch.rtf") { // still 1 here CPPUNIT_ASSERT_EQUAL(1, getPages()); } DECLARE_RTFEXPORT_TEST(testTdf123703_compatible, "tdf123703_compatible.rtf") { #if !defined(MACOSX) // in the case of compatibility font id 31505 CPPUNIT_ASSERT_EQUAL(2, getPages()); #else // still 1 here CPPUNIT_ASSERT_EQUAL(1, getPages()); #endif } DECLARE_RTFEXPORT_TEST(testTdf128428_monospaced, "tdf128428_monospaced.rtf") { // still 1 here CPPUNIT_ASSERT_EQUAL(1, getPages()); } DECLARE_RTFEXPORT_TEST(testTdf128428_compatible_monospaced, "tdf128428_compatible_monospaced.rtf") { // still 1 here CPPUNIT_ASSERT_EQUAL(1, getPages()); } DECLARE_RTFEXPORT_TEST(testTdf128428_dntblnsbdb, "tdf128428_dntblnsbdb.rtf") { // still 1 here CPPUNIT_ASSERT_EQUAL(1, getPages()); } CPPUNIT_TEST_FIXTURE(Test, testDontBreakWrappedTables) { // Given a document with no DO_NOT_BREAK_WRAPPED_TABLES compat mode enabled: createSwDoc(); { SwDoc* pDoc = getSwDoc(); IDocumentSettingAccess& rIDSA = pDoc->getIDocumentSettingAccess(); rIDSA.set(DocumentSettingId::DO_NOT_BREAK_WRAPPED_TABLES, true); } // When saving to rtf: saveAndReload("Rich Text Format"); // Then make sure \nobrkwrptbl is not written: SwDoc* pDoc = getSwDoc(); IDocumentSettingAccess& rIDSA = pDoc->getIDocumentSettingAccess(); bool bDontBreakWrappedTables = rIDSA.get(DocumentSettingId::DO_NOT_BREAK_WRAPPED_TABLES); // Without the accompanying fix in place, this test would have failed, the compat flag was not // set. CPPUNIT_ASSERT(bDontBreakWrappedTables); } CPPUNIT_TEST_FIXTURE(Test, testRtlGutter) { auto verify = [this]() { uno::Reference xStandard( getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY); CPPUNIT_ASSERT(getProperty(xStandard, "RtlGutter")); }; // Given a document with RTL gutter, when loading it: createSwDoc("rtl-gutter.rtf"); // Then make sure the section's gutter is still RTL: // Without the accompanying fix in place, this test would have failed as \rtlgutter was missing. verify(); saveAndReload("Rich Text Format"); verify(); } CPPUNIT_TEST_FIXTURE(Test, testNegativePageBorder) { { // Given a document with a top margin and a border which has more spacing than the margin on // its 2nd page: createSwDoc(); SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); SwDocShell* pDocShell = pTextDoc->GetDocShell(); SwWrtShell* pWrtShell = pDocShell->GetWrtShell(); pWrtShell->Insert("first"); pWrtShell->SplitNode(); pWrtShell->Insert("second"); SwPageDesc* pDesc = pWrtShell->FindPageDescByName("Left Page", true); SwPaM aPaM(*pWrtShell->GetCursor()->GetPoint()); SwFormatPageDesc aFormatPageDesc(pDesc); pDocShell->GetDoc()->getIDocumentContentOperations().InsertPoolItem(aPaM, aFormatPageDesc); uno::Reference xPageStyle( getStyles("PageStyles")->getByName("Left Page"), uno::UNO_QUERY); xPageStyle->setPropertyValue("TopMargin", uno::Any(static_cast(501))); table::BorderLine2 aBorder; aBorder.LineWidth = 159; aBorder.OuterLineWidth = 159; xPageStyle->setPropertyValue("TopBorder", uno::Any(aBorder)); sal_Int32 nTopBorderDistance = -646; xPageStyle->setPropertyValue("TopBorderDistance", uno::Any(nTopBorderDistance)); } // When saving that document to RTF: saveAndReload("Rich Text Format"); // Then make sure that the border distance is negative, so the first line of body text appears // on top of the page border: SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); SwDocShell* pDocShell = pTextDoc->GetDocShell(); SwWrtShell* pWrtShell = pDocShell->GetWrtShell(); pWrtShell->Down(/*bSelect=*/false); OUString aPageStyle = pWrtShell->GetCurPageStyle(); uno::Reference xPageStyle(getStyles("PageStyles")->getByName(aPageStyle), uno::UNO_QUERY); auto nTopMargin = xPageStyle->getPropertyValue("TopMargin").get(); CPPUNIT_ASSERT_EQUAL(static_cast(501), nTopMargin); auto aTopBorder = xPageStyle->getPropertyValue("TopBorder").get(); CPPUNIT_ASSERT_EQUAL(static_cast(159), aTopBorder.LineWidth); auto nTopBorderDistance = xPageStyle->getPropertyValue("TopBorderDistance").get(); // Without the accompanying fix in place, this test would have failed with: // - Expected: -646 // - Actual : 0 // i.e. the border negative distance was lost. CPPUNIT_ASSERT_EQUAL(static_cast(-646), nTopBorderDistance); } CPPUNIT_TEST_FIXTURE(Test, testTdf127806) { createSwDoc("tdf127806.rtf"); CPPUNIT_ASSERT_EQUAL(2, getShapes()); CPPUNIT_ASSERT_EQUAL(OUString("com.sun.star.drawing.GroupShape"), getShape(1)->getShapeType()); auto xImage = getShape(2); CPPUNIT_ASSERT_EQUAL(OUString("FrameShape"), xImage->getShapeType()); awt::Size aSize(xImage->getSize()); CPPUNIT_ASSERT_EQUAL(static_cast(600), aSize.Height); CPPUNIT_ASSERT_EQUAL(static_cast(635), aSize.Width); saveAndReload("Rich Text Format"); CPPUNIT_ASSERT_EQUAL(1, getShapes()); // FIXME: We lost one shape on export, that's sucks xImage = getShape(1); CPPUNIT_ASSERT_EQUAL(OUString("FrameShape"), xImage->getShapeType()); aSize = xImage->getSize(); CPPUNIT_ASSERT_EQUAL(static_cast(600), aSize.Height); CPPUNIT_ASSERT_EQUAL(static_cast(635), aSize.Width); } DECLARE_RTFEXPORT_TEST(testTdf148578, "tdf148578.rtf") { // \trgaph567 should affect only table cell margins (~1cm), // but do not shift table, since \trleft is not provided uno::Reference xTable(getParagraphOrTable(1), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(static_cast(0), getProperty(xTable, "LeftMargin")); uno::Reference xCell(xTable->getCellByName("A1"), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(static_cast(1000), getProperty(xCell, "LeftBorderDistance")); CPPUNIT_ASSERT_EQUAL(static_cast(1000), getProperty(xCell, "RightBorderDistance")); xCell.set(xTable->getCellByName("B1"), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(static_cast(1000), getProperty(xCell, "LeftBorderDistance")); CPPUNIT_ASSERT_EQUAL(static_cast(1000), getProperty(xCell, "RightBorderDistance")); } DECLARE_RTFEXPORT_TEST(testInvalidParagraphStyle, "invalidParagraphStyle.rtf") { // Given test has character style #30, but referred as paragraph style #30 // This was causing exception in finishParagraph(), so numbering and other // properties were not applied. Ensure numbering is still here sal_Int16 numFormat = getNumberingTypeOfParagraph(1); CPPUNIT_ASSERT_EQUAL(style::NumberingType::ARABIC, numFormat); } DECLARE_RTFEXPORT_TEST(testTdf152784_1, "tdf152784_1.rtf") { // Ensure that paragraph having style with numbering does not have numbering // since it is not explicitly defined in paragraph properties uno::Reference xPara(getParagraph(1, "Here should be no numbering!"), uno::UNO_QUERY); CPPUNIT_ASSERT(getProperty(xPara, "NumberingStyleName").isEmpty()); } CPPUNIT_TEST_FIXTURE(Test, testFloatingTableExport) { // Given a document with a floating table: mxComponent = loadFromDesktop("private:factory/swriter"); // Insert a table: uno::Sequence aArgs = { comphelper::makePropertyValue("Rows", static_cast(1)), comphelper::makePropertyValue("Columns", static_cast(1)), }; dispatchCommand(mxComponent, ".uno:InsertTable", aArgs); // Select it: dispatchCommand(mxComponent, ".uno:SelectAll", {}); // Wrap in a fly: aArgs = { comphelper::makePropertyValue("AnchorType", static_cast(0)), }; dispatchCommand(mxComponent, ".uno:InsertFrame", aArgs); // Mark it as a floating table: uno::Reference xTextFramesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xFrame( xTextFramesSupplier->getTextFrames()->getByName("Frame1"), uno::UNO_QUERY); xFrame->setPropertyValue("IsSplitAllowed", uno::Any(true)); // Originally 10, 30 & 40 twips. xFrame->setPropertyValue("VertOrientPosition", uno::Any(static_cast(18))); xFrame->setPropertyValue("LeftMargin", uno::Any(static_cast(53))); xFrame->setPropertyValue("RightMargin", uno::Any(static_cast(71))); // When saving to RTF: saveAndReload("Rich Text Format"); // Then make sure the floating table is there & has the expected properties: uno::Reference xDrawPageSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xDrawPage = xDrawPageSupplier->getDrawPage(); xFrame.set(xDrawPage->getByIndex(0), uno::UNO_QUERY); bool bIsSplitAllowed{}; xFrame->getPropertyValue("IsSplitAllowed") >>= bIsSplitAllowed; // Without the accompanying fix in place, this test would have failed, the table was not // multi-page. CPPUNIT_ASSERT(bIsSplitAllowed); sal_Int16 nVertOrientRelation{}; xFrame->getPropertyValue("VertOrientRelation") >>= nVertOrientRelation; CPPUNIT_ASSERT_EQUAL(text::RelOrientation::FRAME, nVertOrientRelation); sal_Int16 nHoriOrientRelation{}; xFrame->getPropertyValue("HoriOrientRelation") >>= nHoriOrientRelation; CPPUNIT_ASSERT_EQUAL(text::RelOrientation::FRAME, nHoriOrientRelation); sal_Int32 nVertOrientPosition{}; xFrame->getPropertyValue("VertOrientPosition") >>= nVertOrientPosition; sal_Int32 nExpected = 18; CPPUNIT_ASSERT_EQUAL(nExpected, nVertOrientPosition); sal_Int32 nLeftMargin{}; xFrame->getPropertyValue("LeftMargin") >>= nLeftMargin; nExpected = 53; CPPUNIT_ASSERT_EQUAL(nExpected, nLeftMargin); sal_Int32 nRightMargin{}; xFrame->getPropertyValue("RightMargin") >>= nRightMargin; nExpected = 71; CPPUNIT_ASSERT_EQUAL(nExpected, nRightMargin); } CPPUNIT_TEST_FIXTURE(Test, testFloattableOverlapNeverRTFExport) { // Given a document with a floating table, overlap is not allowed: { createSwDoc(); SwDoc* pDoc = getSwDoc(); SwWrtShell* pWrtShell = getSwDocShell()->GetWrtShell(); pWrtShell->Insert2("before table"); // Insert a table: SwInsertTableOptions aTableOptions(SwInsertTableFlags::DefaultBorder, 0); pWrtShell->InsertTable(aTableOptions, /*nRows=*/1, /*nCols=*/1); pWrtShell->MoveTable(GotoPrevTable, fnTableStart); // Select table: pWrtShell->SelAll(); // Wrap the table in a text frame: SwFlyFrameAttrMgr aMgr(true, pWrtShell, Frmmgr_Type::TEXT, nullptr); pWrtShell->StartAllAction(); aMgr.InsertFlyFrame(RndStdIds::FLY_AT_PARA, aMgr.GetPos(), aMgr.GetSize()); pWrtShell->EndAllAction(); // Allow the text frame to split: pWrtShell->StartAllAction(); sw::FrameFormats* pFlys = pDoc->GetSpzFrameFormats(); sw::SpzFrameFormat* pFly = (*pFlys)[0]; SwAttrSet aSet(pFly->GetAttrSet()); aSet.Put(SwFormatFlySplit(true)); // Don't allow overlap: SwFormatWrapInfluenceOnObjPos aInfluence; aInfluence.SetAllowOverlap(false); aSet.Put(aInfluence); pDoc->SetAttr(aSet, *pFly); pWrtShell->EndAllAction(); } // When saving to RTF: saveAndReload("Rich Text Format"); // Then make sure that the overlap=never markup is written: SwDoc* pDoc = getSwDoc(); sw::FrameFormats* pFlys = pDoc->GetSpzFrameFormats(); sw::SpzFrameFormat* pFly = (*pFlys)[0]; // Without the accompanying fix in place, this test would have failed, i.e. \tabsnoovrlp was not // written. CPPUNIT_ASSERT(!pFly->GetAttrSet().GetWrapInfluenceOnObjPos().GetAllowOverlap()); } DECLARE_RTFEXPORT_TEST(testTdf158409, "tdf158409.rtf") { uno::Reference xRun = getRun(getParagraph(1), 1, "DocTitle"); CPPUNIT_ASSERT_EQUAL(8.0, getProperty(xRun, "CharHeight")); xRun = getRun(getParagraph(2), 1, "DocTitle"); CPPUNIT_ASSERT_EQUAL(8.0, getProperty(xRun, "CharHeight")); } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */