/* -*- 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 class Test : public SwModelTestBase { public: Test() : SwModelTestBase("/sw/qa/extras/ooxmlexport/data/", "Office Open XML Text") {} protected: /** * Blacklist handling */ bool mustTestImportOf(const char* filename) const override { // If the testcase is stored in some other format, it's pointless to test. return OString(filename).endsWith(".docx"); } }; DECLARE_OOXMLEXPORT_TEST(testTdf92524_autoColor, "tdf92524_autoColor.doc") { CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, getProperty(getParagraph(1), "FillStyle")); CPPUNIT_ASSERT_EQUAL(COL_AUTO, Color(getProperty(getParagraph(1), "ParaBackColor"))); } DECLARE_OOXMLEXPORT_TEST(testTdf46938_clearTabStop, "tdf46938_clearTabStop.docx") { // Number of tabstops should be zero, overriding the one in the style CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty< uno::Sequence >(getParagraph(1), "ParaTabStops").getLength()); } DECLARE_OOXMLEXPORT_TEST(testTdf82065_Ind_start_strict, "tdf82065_Ind_start_strict.docx") { uno::Reference xPropertySet(getStyles("NumberingStyles")->getByName("WWNum1"), uno::UNO_QUERY); uno::Reference xLevels(xPropertySet->getPropertyValue("NumberingRules"), uno::UNO_QUERY); uno::Sequence aProps; xLevels->getByIndex(0) >>= aProps; // 1st level bool bFoundIndentAt = false; for (int i = 0; i < aProps.getLength(); ++i) { const beans::PropertyValue& rProp = aProps[i]; if (rProp.Name == "IndentAt") { CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("IndentAt", double(6001), rProp.Value.get(), 10 ); bFoundIndentAt = true; } } CPPUNIT_ASSERT_EQUAL_MESSAGE("IndentAt defined", true, bFoundIndentAt); } DECLARE_OOXMLEXPORT_TEST(testTdf112694, "tdf112694.docx") { uno::Any aPageStyle = getStyles("PageStyles")->getByName("Standard"); // Header was on when header for file was for explicit first pages only // (marked via ). CPPUNIT_ASSERT(!getProperty(aPageStyle, "HeaderIsOn")); } DECLARE_OOXMLEXPORT_TEST(testTdf118361_RTLfootnoteSeparator, "tdf118361_RTLfootnoteSeparator.docx") { uno::Any aPageStyle = getStyles("PageStyles")->getByName("Standard"); CPPUNIT_ASSERT_EQUAL_MESSAGE("Footnote separator RTL", sal_Int16(2), getProperty(aPageStyle, "FootnoteLineAdjust")); } DECLARE_OOXMLEXPORT_TEST(testTdf115861, "tdf115861.docx") { // Second item in the paragraph enumeration was a table, 2nd paragraph was // lost. CPPUNIT_ASSERT_EQUAL(OUString("(k)"), getParagraph(2)->getString()); } DECLARE_OOXMLEXPORT_TEST(testTdf67207_MERGEFIELD, "mailmerge.docx") { uno::Reference xTextField = getProperty< uno::Reference >(getRun(getParagraph(1), 2), "TextField"); CPPUNIT_ASSERT(xTextField.is()); uno::Reference xServiceInfo(xTextField, uno::UNO_QUERY_THROW); uno::Reference xDependent(xTextField, uno::UNO_QUERY_THROW); CPPUNIT_ASSERT(xServiceInfo->supportsService("com.sun.star.text.TextField.Database")); OUString sValue; xTextField->getPropertyValue("Content") >>= sValue; CPPUNIT_ASSERT_EQUAL(OUString::fromUtf8(u8"«Name»"), sValue); uno::Reference xFiledMaster = xDependent->getTextFieldMaster(); uno::Reference xFiledMasterServiceInfo(xFiledMaster, uno::UNO_QUERY_THROW); CPPUNIT_ASSERT(xFiledMasterServiceInfo->supportsService("com.sun.star.text.fieldmaster.Database")); // Defined properties: DataBaseName, Name, DataTableName, DataColumnName, DependentTextFields, DataCommandType, InstanceName, DataBaseURL CPPUNIT_ASSERT(xFiledMaster->getPropertyValue("Name") >>= sValue); CPPUNIT_ASSERT_EQUAL(OUString("Name"), sValue); CPPUNIT_ASSERT(xFiledMaster->getPropertyValue("DataColumnName") >>= sValue); CPPUNIT_ASSERT_EQUAL(OUString("Name"), sValue); CPPUNIT_ASSERT(xFiledMaster->getPropertyValue("InstanceName") >>= sValue); CPPUNIT_ASSERT_EQUAL(OUString("com.sun.star.text.fieldmaster.DataBase.Name"), sValue); } DECLARE_OOXMLEXPORT_TEST(testTdf115719, "tdf115719.docx") { // This was a single page, instead of pushing the textboxes to the second // page. CPPUNIT_ASSERT_EQUAL(2, getPages()); } DECLARE_OOXMLEXPORT_TEST(testTdf116410, "tdf116410.docx") { // Opposite of the above, was 2 pages, should be 1 page. CPPUNIT_ASSERT_EQUAL(1, getPages()); } DECLARE_OOXMLEXPORT_TEST(testParagraphSplitOnSectionBorder, "parasplit-on-section-border.odt") { xmlDocPtr pXmlDoc = parseExport("word/document.xml"); if(!pXmlDoc) return; // Test document has only two paragraphs. After splitting, it should contain // three of them. assertXPath(pXmlDoc, "//w:sectPr", 2); assertXPath(pXmlDoc, "//w:p", 3); } DECLARE_OOXMLEXPORT_TEST(testTdf44832_testSectionWithDifferentHeader, "tdf44832_section_new_header.odt") { xmlDocPtr pXmlDoc = parseExport("word/document.xml"); if(!pXmlDoc) return; assertXPath(pXmlDoc, "/w:document/w:body/w:sectPr/w:headerReference", 1); } DECLARE_OOXMLEXPORT_TEST(testSignatureLineShape, "signature-line-all-props-set.docx") { uno::Reference xSignatureLineShape = getShape(1); uno::Reference xPropSet(xSignatureLineShape, uno::UNO_QUERY); bool bIsSignatureLine; xPropSet->getPropertyValue("IsSignatureLine") >>= bIsSignatureLine; CPPUNIT_ASSERT_EQUAL(true, bIsSignatureLine); bool bShowSignDate; xPropSet->getPropertyValue("SignatureLineShowSignDate") >>= bShowSignDate; CPPUNIT_ASSERT_EQUAL(true, bShowSignDate); bool bCanAddComment; xPropSet->getPropertyValue("SignatureLineCanAddComment") >>= bCanAddComment; CPPUNIT_ASSERT_EQUAL(true, bCanAddComment); OUString aSignatureLineId; xPropSet->getPropertyValue("SignatureLineId") >>= aSignatureLineId; CPPUNIT_ASSERT_EQUAL(OUString("{0EBE47D5-A1BD-4C9E-A52E-6256E5C345E9}"), aSignatureLineId); OUString aSuggestedSignerName; xPropSet->getPropertyValue("SignatureLineSuggestedSignerName") >>= aSuggestedSignerName; CPPUNIT_ASSERT_EQUAL(OUString("John Doe"), aSuggestedSignerName); OUString aSuggestedSignerTitle; xPropSet->getPropertyValue("SignatureLineSuggestedSignerTitle") >>= aSuggestedSignerTitle; CPPUNIT_ASSERT_EQUAL(OUString("Farmer"), aSuggestedSignerTitle); OUString aSuggestedSignerEmail; xPropSet->getPropertyValue("SignatureLineSuggestedSignerEmail") >>= aSuggestedSignerEmail; CPPUNIT_ASSERT_EQUAL(OUString("john@thefarmers.com"), aSuggestedSignerEmail); OUString aSigningInstructions; xPropSet->getPropertyValue("SignatureLineSigningInstructions") >>= aSigningInstructions; CPPUNIT_ASSERT_EQUAL(OUString("Check the machines!"), aSigningInstructions); } DECLARE_OOXMLEXPORT_TEST(testTdf117805, "tdf117805.odt") { if (!mbExported) return; uno::Reference xNameAccess = packages::zip::ZipFileAccess::createWithURL(comphelper::getComponentContext(m_xSFactory), maTempFile.GetURL()); // This failed, the header was lost. It's still referenced at an incorrect // location in document.xml, though. CPPUNIT_ASSERT(xNameAccess->hasByName("word/header1.xml")); } DECLARE_OOXMLEXPORT_TEST(testTdf113183, "tdf113183.docx") { // The horizontal positioning of the star shape affected the positioning of // the triangle one, so the triangle was outside the page frame. xmlDocPtr pXmlDoc = parseLayoutDump(); sal_Int32 nPageLeft = getXPath(pXmlDoc, "/root/page[1]/infos/bounds", "left").toInt32(); sal_Int32 nPageWidth = getXPath(pXmlDoc, "/root/page[1]/infos/bounds", "width").toInt32(); sal_Int32 nShapeLeft = getXPath(pXmlDoc, "/root/page/body/txt/anchored/SwAnchoredDrawObject[2]/bounds", "left") .toInt32(); sal_Int32 nShapeWidth = getXPath(pXmlDoc, "/root/page/body/txt/anchored/SwAnchoredDrawObject[2]/bounds", "width") .toInt32(); // Make sure the second triangle shape is within the page bounds (with ~1px tolerance). CPPUNIT_ASSERT_GREATEREQUAL(nShapeLeft + nShapeWidth, nPageLeft + nPageWidth + 21); } DECLARE_OOXMLEXPORT_TEST(testGraphicObjectFliph, "graphic-object-fliph.docx") { CPPUNIT_ASSERT(getProperty(getShape(1), "HoriMirroredOnEvenPages")); CPPUNIT_ASSERT(getProperty(getShape(1), "HoriMirroredOnOddPages")); } DECLARE_OOXMLEXPORT_TEST(testTdf113547, "tdf113547.docx") { uno::Reference xPropertySet( getStyles("NumberingStyles")->getByName("WWNum1"), uno::UNO_QUERY); uno::Reference xLevels( xPropertySet->getPropertyValue("NumberingRules"), uno::UNO_QUERY); comphelper::SequenceAsHashMap aProps(xLevels->getByIndex(0)); // 1st level // This was 0, first-line left margin of the numbering was lost. CPPUNIT_ASSERT_EQUAL(static_cast(-635), aProps["FirstLineIndent"].get()); } DECLARE_OOXMLEXPORT_TEST(testTdf113399, "tdf113399.doc") { // 0 padding was not preserved // In LO 0 is the default, but in OOXML format the default is 254 / 127 uno::Reference xPropSet(getShape(1), uno::UNO_QUERY); sal_Int32 nPaddingValue; xPropSet->getPropertyValue("TextLeftDistance") >>= nPaddingValue; CPPUNIT_ASSERT_EQUAL(static_cast(0), nPaddingValue); xPropSet->getPropertyValue("TextRightDistance") >>= nPaddingValue; CPPUNIT_ASSERT_EQUAL(static_cast(0), nPaddingValue); xPropSet->getPropertyValue("TextUpperDistance") >>= nPaddingValue; CPPUNIT_ASSERT_EQUAL(static_cast(0), nPaddingValue); xPropSet->getPropertyValue("TextLowerDistance") >>= nPaddingValue; CPPUNIT_ASSERT_EQUAL(static_cast(0), nPaddingValue); } DECLARE_OOXMLEXPORT_TEST(testTdf114882, "tdf114882.docx") { // fastserializer must not fail assertion because of mismatching elements } DECLARE_OOXMLEXPORT_TEST(testTdf49073, "tdf49073.docx") { // test case for Asisan phontic guide ( ruby text.) sal_Unicode aRuby[3] = {0x304D,0x3082,0x3093}; OUString sRuby = OUString(aRuby, SAL_N_ELEMENTS(aRuby)); CPPUNIT_ASSERT_EQUAL(sRuby,getProperty(getParagraph(1)->getStart(), "RubyText")); OUString sStyle = getProperty( getParagraph(1)->getStart(), "RubyCharStyleName"); uno::Reference xPropertySet(getStyles("CharacterStyles")->getByName(sStyle), uno::UNO_QUERY ); CPPUNIT_ASSERT_EQUAL(5.f, getProperty(xPropertySet, "CharHeight")); CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_CENTER) ,getProperty(getParagraph(2)->getStart(),"RubyAdjust")); CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_BLOCK) ,getProperty(getParagraph(3)->getStart(),"RubyAdjust")); CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_INDENT_BLOCK),getProperty(getParagraph(4)->getStart(),"RubyAdjust")); CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_LEFT) ,getProperty(getParagraph(5)->getStart(),"RubyAdjust")); CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_RIGHT) ,getProperty(getParagraph(6)->getStart(),"RubyAdjust")); CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyPosition::INTER_CHARACTER) ,getProperty(getParagraph(7)->getStart(),"RubyPosition")); } DECLARE_OOXMLEXPORT_TEST(testTdf114703, "tdf114703.docx") { uno::Reference xRules = getProperty>( getStyles("NumberingStyles")->getByName("WWNum1"), "NumberingRules"); // This was 0, level override "default" replaced the non-default value from // the abstract level. CPPUNIT_ASSERT_EQUAL( static_cast(-1000), comphelper::SequenceAsHashMap(xRules->getByIndex(0))["FirstLineIndent"].get()); } DECLARE_OOXMLEXPORT_TEST(testTdf113258, "tdf113258.docx") { uno::Reference xShape(getShape(1), uno::UNO_QUERY); // This was 494, i.e. automatic spacing resulted in non-zero paragraph top // margin for the first paragraph in a shape. CPPUNIT_ASSERT_EQUAL(static_cast(0), getProperty(xShape->getStart(), "ParaTopMargin")); } DECLARE_OOXMLEXPORT_TEST(testTdf104354, "tdf104354.docx") { uno::Reference xShape(getShape(1), uno::UNO_QUERY); // This was 494, i.e. automatic spacing resulted in non-zero paragraph top // margin for the first paragraph in a text frame. CPPUNIT_ASSERT_EQUAL(static_cast(0), getProperty(xShape->getStart(), "ParaTopMargin")); } DECLARE_OOXMLEXPORT_TEST(testTdf107035, "tdf107035.docx") { // Select the second run containing the page number field auto xPgNumRun = getRun(getParagraph(1), 2, "1"); // Check that the page number field colour is set to "automatic". sal_Int32 nPgNumColour = getProperty(xPgNumRun, "CharColor"); CPPUNIT_ASSERT_EQUAL(sal_Int32(COL_AUTO), nPgNumColour); } DECLARE_OOXMLEXPORT_TEST(testTdf112118_DOCX, "tdf112118.docx") { // The resulting left margin width (2081) differs from its DOC counterpart from ww8export2.cxx, // because DOCX import does two conversions between mm/100 and twips on the route, losing one // twip on the road and arriving with a value that is 2 mm/100 less. I don't see an obvious way // to avoid that. struct { const char* styleName; struct { const char* sideName; sal_Int32 nMargin; sal_Int32 nBorderDistance; sal_Int32 nBorderWidth; } sideParams[4]; } styleParams[] = { // Margin (MS-style), border distance, border width { "Standard", { { "Top", 496, 847, 159 }, // 851 twip, 24 pt (from text), 4.5 pt { "Left", 2081, 706, 212 }, // 1701 twip, 20 pt (from text), 6.0 pt { "Bottom", 1401, 564, 35 }, // 1134 twip, 16 pt (from text), 1.0 pt { "Right", 3471, 423, 106 } // 2268 twip, 12 pt (from text), 3.0 pt } }, { "Converted1", { { "Top", 847, 496, 159 }, // 851 twip, 24 pt (from edge), 4.5 pt { "Left", 706, 2081, 212 }, // 1701 twip, 20 pt (from edge), 6.0 pt { "Bottom", 564, 1401, 35 }, // 1134 twip, 16 pt (from edge), 1.0 pt { "Right", 423, 3471, 106 } // 2268 twip, 12 pt (from edge), 3.0 pt } } }; auto xStyles = getStyles("PageStyles"); for (const auto& style : styleParams) { const OUString sName = OUString::createFromAscii(style.styleName); uno::Reference xStyle(xStyles->getByName(sName), uno::UNO_QUERY_THROW); for (const auto& side : style.sideParams) { const OUString sSide = OUString::createFromAscii(side.sideName); const OString sStage = OString(style.styleName) + " " + side.sideName; sal_Int32 nMargin = getProperty(xStyle, sSide + "Margin"); CPPUNIT_ASSERT_EQUAL_MESSAGE(OString(sStage + " margin width").getStr(), side.nMargin, nMargin); sal_Int32 nBorderDistance = getProperty(xStyle, sSide + "BorderDistance"); CPPUNIT_ASSERT_EQUAL_MESSAGE(OString(sStage + " border distance").getStr(), side.nBorderDistance, nBorderDistance); table::BorderLine aBorder = getProperty(xStyle, sSide + "Border"); CPPUNIT_ASSERT_EQUAL_MESSAGE(OString(sStage + " border width").getStr(), side.nBorderWidth, sal_Int32(aBorder.OuterLineWidth + aBorder.InnerLineWidth + aBorder.LineDistance)); // tdf#116472: check that AUTO border color is imported as black CPPUNIT_ASSERT_EQUAL_MESSAGE(OString(sStage + " border color").getStr(), sal_Int32(COL_BLACK), aBorder.Color); } } } DECLARE_OOXMLEXPORT_TEST(testTdf116976, "tdf116976.docx") { // This was 0, relative size of shape after bitmap was ignored. CPPUNIT_ASSERT_EQUAL(static_cast(40), getProperty(getShape(1), "RelativeWidth")); } DECLARE_OOXMLEXPORT_TEST(testTdf116985, "tdf116985.docx") { // Body frame width is 10800, 40% is the requested relative width, with 144 // spacing to text on the left/right side. So ideal width would be 4032, // was 3431. Allow one pixel tolerance, though. sal_Int32 nWidth = parseDump("/root/page[1]/body/txt[1]/anchored/fly/infos/bounds", "width").toInt32(); CPPUNIT_ASSERT(nWidth > 4000); } DECLARE_OOXMLEXPORT_TEST(testTdf116801, "tdf116801.docx") { uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY); uno::Reference xTables(xTablesSupplier->getTextTables(), uno::UNO_QUERY); // This raised a lang::IndexOutOfBoundsException, table was missing from // the import result. uno::Reference xTable(xTables->getByIndex(0), uno::UNO_QUERY); uno::Reference xCell(xTable->getCellByName("D1"), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(OUString("D1"), xCell->getString()); } DECLARE_OOXMLEXPORT_TEST(testTdf107969, "tdf107969.docx") { // A VML object in a footnote's tracked changes caused write past end of document.xml at export to docx. // After that, importing after export failed with // SAXParseException: '[word/document.xml line 2]: Extra content at the end of the document', Stream 'word/document.xml'. } DECLARE_OOXMLEXPORT_TEST(testOpenDocumentAsReadOnly, "open-as-read-only.docx") { SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); CPPUNIT_ASSERT(pTextDoc->GetDocShell()->IsSecurityOptOpenReadOnly()); } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */