2014-04-13 22:13:56 +02:00
|
|
|
/* -*- 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 "sdmodeltestbase.hxx"
|
|
|
|
|
2014-04-29 15:07:54 +02:00
|
|
|
#include <test/htmltesttools.hxx>
|
|
|
|
#include <test/xmltesttools.hxx>
|
2014-04-13 22:13:56 +02:00
|
|
|
|
|
|
|
using namespace css;
|
|
|
|
using namespace rtl;
|
|
|
|
|
2014-04-29 15:07:54 +02:00
|
|
|
class SdHTMLFilterTest : public SdModelTestBase, public XmlTestTools, public HtmlTestTools
|
2014-04-13 22:13:56 +02:00
|
|
|
{
|
2014-04-29 15:07:54 +02:00
|
|
|
private:
|
2014-04-13 22:13:56 +02:00
|
|
|
htmlDocPtr exportAndparseHtml(sd::DrawDocShellRef& xDocShRef)
|
|
|
|
{
|
|
|
|
FileFormat* pFormat = getFormat(HTML);
|
|
|
|
OUString aExt = OUString( "." ) + OUString::createFromAscii(pFormat->pName);
|
|
|
|
utl::TempFile aTempFile(OUString(), &aExt);
|
|
|
|
aTempFile.EnableKillingFile();
|
|
|
|
exportTo(xDocShRef, pFormat, aTempFile);
|
|
|
|
return parseHtml(aTempFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void testHTMLExport()
|
|
|
|
{
|
|
|
|
sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/HtmlExportTestDocument.odp"));
|
|
|
|
htmlDocPtr htmlDoc = exportAndparseHtml(xDocShRef);
|
|
|
|
|
|
|
|
assertXPath(htmlDoc, "/html", 1);
|
|
|
|
assertXPath(htmlDoc, "/html/body", 1);
|
|
|
|
assertXPath(htmlDoc, "/html/body/h1", 4);
|
|
|
|
assertXPath(htmlDoc, "/html/body/table", 1);
|
|
|
|
assertXPath(htmlDoc, "/html/body/table/tr", 5);
|
|
|
|
assertXPath(htmlDoc, "/html/body/ul", 1);
|
|
|
|
assertXPath(htmlDoc, "/html/body/ul/li", 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(SdHTMLFilterTest);
|
|
|
|
CPPUNIT_TEST(testHTMLExport);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(SdHTMLFilterTest);
|
|
|
|
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|