Quelle ooxmllinks.cxx
Sprache: C
/* -*- 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 <swmodeltestbase.hxx>
#include <unotools/tempfile.hxx>
#include <tools/urlobj.hxx>
#include <officecfg/Office/Common.hxx>
#include <o3tl/string_view.hxx>
// This file contains tests to check relative/absolute hyperlinks handling
// decide if output link should be converted to absolute
#define USE_ABSOLUTE
true
#define USE_RELATIVE
false
class Test :
public SwModelTestBase
{
public :
Test()
: SwModelTestBase(u
"/sw/qa/extras/ooxmlexport/data/" _ustr, u
"Office Open XML Text" _ustr)
{
}
void SetAbsolute(bool bAbsolute)
{
auto xChanges = comphelper::ConfigurationChanges::create();
officecfg::Office::Common::Save::URL::FileSystem::set(!bAbsolute, xChanges);
xChanges->commit();
}
// link should be modified to be placed in temp dir - for testing relative links
void UseTempDir()
{
uno::Reference<text::XTextRange> xParagraph = getParagraph(1);
/* can be changed only after import */
uno::Reference<text::XTextRange> xText = getRun(xParagraph, 1);
/* Get original link */
OUString sOriginalFileName = getProperty<OUString>(xText, u"HyperLinkURL" _ustr);
INetURLObject aOriginalURL(sOriginalFileName);
CPPUNIT_ASSERT(!aOriginalURL.HasError());
OUString sFileName = aOriginalURL.GetLastName();
CPPUNIT_ASSERT(!sFileName.isEmpty());
/* Get temp path */
OUString sTempDir = utl::GetTempNameBaseDirectory();
/* Create & apply new URL */
OUString sOriginalFileInTempDir = sTempDir + sFileName;
uno::Reference<beans::XPropertySet> xPropertySet(xText, css::uno::UNO_QUERY);
xPropertySet->setPropertyValue(u"HyperLinkURL" _ustr, css::uno::Any(sOriginalFileInTempDir));
}
};
/* IMPORT */
CPPUNIT_TEST_FIXTURE(Test, testRelativeToRelativeImport)
{
SetAbsolute(USE_RELATIVE);
createSwDoc("relative-link.docx" );
uno::Reference<text::XTextRange> xParagraph = getParagraph(1);
uno::Reference<text::XTextRange> xText = getRun(xParagraph, 1);
OUString sTarget = getProperty<OUString>(xText, u"HyperLinkURL" _ustr);
CPPUNIT_ASSERT(sTarget.startsWith("file:///"));
CPPUNIT_ASSERT(sTarget.endsWith("relative.docx" ));
}
CPPUNIT_TEST_FIXTURE(Test, testRelativeToAbsoluteImport)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("relative-link.docx" );
uno::Reference<text::XTextRange> xParagraph = getParagraph(1);
uno::Reference<text::XTextRange> xText = getRun(xParagraph, 1);
OUString sTarget = getProperty<OUString>(xText, u"HyperLinkURL" _ustr);
CPPUNIT_ASSERT(sTarget.startsWith("file:///"));
CPPUNIT_ASSERT(sTarget.endsWith("relative.docx" ));
}
CPPUNIT_TEST_FIXTURE(Test, testAbsoluteToAbsoluteImport)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("absolute-link.docx" );
uno::Reference<text::XTextRange> xParagraph = getParagraph(1);
uno::Reference<text::XTextRange> xText = getRun(xParagraph, 1);
// # should be encoded
CPPUNIT_ASSERT_EQUAL(u"file:///B:/Users/user/Desktop/a%23b/test.docx"_ustr,
getProperty<OUString>(xText, u"HyperLinkURL" _ustr));
}
CPPUNIT_TEST_FIXTURE(Test, testAbsoluteToRelativeImport)
{
SetAbsolute(USE_RELATIVE);
createSwDoc("absolute-link.docx" );
uno::Reference<text::XTextRange> xParagraph = getParagraph(1);
uno::Reference<text::XTextRange> xText = getRun(xParagraph, 1);
// when target file (B:\\...) & document with link (temp dir) are placed on different partitions, absolute path will be loaded
CPPUNIT_ASSERT_EQUAL(u"file:///B:/Users/user/Desktop/a%23b/test.docx"_ustr,
getProperty<OUString>(xText, u"HyperLinkURL" _ustr));
}
CPPUNIT_TEST_FIXTURE(Test, testTdf123627_import)
{
SetAbsolute(USE_RELATIVE);
createSwDoc("tdf123627.docx" );
uno::Reference<text::XTextRange> xText = getRun(getParagraph(1), 1);
OUString sTarget = getProperty<OUString>(xText, u"HyperLinkURL" _ustr);
CPPUNIT_ASSERT(sTarget.startsWith("file:///"));
CPPUNIT_ASSERT(sTarget.endsWith("New/test.docx" ));
}
/* EXPORT */
CPPUNIT_TEST_FIXTURE(Test, testRelativeToRelativeExport)
{
SetAbsolute(USE_RELATIVE);
createSwDoc("relative-link.docx" );
UseTempDir();
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
assertXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[@TargetMode='External']" , "Target" ,
u"relative.docx" );
}
CPPUNIT_TEST_FIXTURE(Test, testRelativeToAbsoluteExport)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("relative-link.docx" );
// Don't modify link.
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
OUString sTarget = getXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[2]" , "Target" );
CPPUNIT_ASSERT(sTarget.startsWith("file:///"));
CPPUNIT_ASSERT(sTarget.endsWith("relative.docx" ));
}
CPPUNIT_TEST_FIXTURE(Test, testAbsoluteToRelativeExport)
{
SetAbsolute(USE_RELATIVE);
createSwDoc("absolute-link.docx" );
UseTempDir();
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
assertXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[2]" , "Target" , u"test.docx" );
}
CPPUNIT_TEST_FIXTURE(Test, testAbsoluteToAbsoluteExport)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("absolute-link.docx" );
// Don't modify link.
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
OUString sTarget = getXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[2]" , "Target" );
CPPUNIT_ASSERT(sTarget.startsWith("file:///"));
CPPUNIT_ASSERT(sTarget.endsWith("test.docx" ));
}
CPPUNIT_TEST_FIXTURE(Test, testTdf123627_export)
{
SetAbsolute(USE_RELATIVE);
createSwDoc("tdf123627.docx" );
UseTempDir();
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
assertXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[@TargetMode='External']" , "Target" ,
u"test.docx" );
}
CPPUNIT_TEST_FIXTURE(Test, testTdf126590_export)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("tdf126590.docx" );
// Don't modify link.
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
// in the original file: Target="file:///C:\TEMP\test.docx" => invalid file URI
assertXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[@TargetMode='External']" , "Target" ,
u"file:///C:/TEMP/test.docx");
}
CPPUNIT_TEST_FIXTURE(Test, testTdf126768_export)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("tdf126768.docx" );
// Don't modify link.
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
// in the original file: "file:///C:\\TEMP\\test.docx" => invalid file URI
assertXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[@TargetMode='External']" , "Target" ,
u"file:///C:/TEMP/test.docx");
}
CPPUNIT_TEST_FIXTURE(Test, testNon_ascii_link_export)
{
SetAbsolute(USE_ABSOLUTE);
createSwDoc("non_ascii_link.docx" );
// Don't modify link.
saveAndReload(mpFilter);
xmlDocUniquePtr pXmlDoc = parseExport(u"word/_rels/document.xml.rels" _ustr);
assertXPath(pXmlDoc, "/rels:Relationships/rels:Relationship[@TargetMode='External']" , "Target" ,
INetURLObject::decode(u"file:///C:/TEMP/%C3%A9kezet.docx",
INetURLObject::DecodeMechanism::ToIUri,
RTL_TEXTENCODING_UTF8));
}
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Messung V0.5 C=93 H=100 G=96
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
*© Formatika GbR, Deutschland
2026-04-07