summaryrefslogtreecommitdiff
path: root/sw/qa/extras/fodfexport
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-11-30 10:28:33 +0100
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-12-01 09:54:43 +0100
commitbb1fd2c9819d1ee5ba26c181d8fea8272b89b673 (patch)
treefccd033b7f2c8274c348698070a7aa7ec553bd87 /sw/qa/extras/fodfexport
parent2b0ff1adeb13efbf7fb0f46939738e3f895d7caf (diff)
Unit test for tdf#113696
Change-Id: I566cd5d38cf86547b664f0ae9a1c2f8c37edc0ca Reviewed-on: https://gerrit.libreoffice.org/45560 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'sw/qa/extras/fodfexport')
-rw-r--r--sw/qa/extras/fodfexport/data/tdf113696.odtbin0 -> 10731 bytes
-rw-r--r--sw/qa/extras/fodfexport/fodfexport.cxx44
2 files changed, 44 insertions, 0 deletions
diff --git a/sw/qa/extras/fodfexport/data/tdf113696.odt b/sw/qa/extras/fodfexport/data/tdf113696.odt
new file mode 100644
index 000000000000..03e0612a3d14
--- /dev/null
+++ b/sw/qa/extras/fodfexport/data/tdf113696.odt
Binary files differ
diff --git a/sw/qa/extras/fodfexport/fodfexport.cxx b/sw/qa/extras/fodfexport/fodfexport.cxx
new file mode 100644
index 000000000000..6cd00b49ba47
--- /dev/null
+++ b/sw/qa/extras/fodfexport/fodfexport.cxx
@@ -0,0 +1,44 @@
+/* -*- 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>
+
+class Test : public SwModelTestBase
+{
+public:
+ Test()
+ : SwModelTestBase("/sw/qa/extras/fodfexport/data/", "OpenDocument Text Flat XML")
+ {
+ }
+
+ /**
+ * Blacklist handling
+ */
+ bool mustTestImportOf(const char* filename) const override
+ {
+ // Only test import of .fodt document
+ return OString(filename).endsWith(".odt") || OString(filename).endsWith(".fodt");
+ }
+};
+
+DECLARE_FODFEXPORT_TEST(testTdf113696, "tdf113696.odt")
+{
+ // Test that an image which is written in svm format (image/x-vclgraphic)
+ // is accompanied by a png fallback graphic.
+ if (xmlDocPtr pXmlDoc = parseExportedFile())
+ {
+ assertXPath(pXmlDoc, "/office:document/office:body/office:text/text:p/draw:frame/"
+ "draw:image[@loext:mime-type='image/x-vclgraphic']");
+ assertXPath(pXmlDoc, "/office:document/office:body/office:text/text:p/draw:frame/"
+ "draw:image[@loext:mime-type='image/png']");
+ }
+}
+
+CPPUNIT_PLUGIN_IMPLEMENT();
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */