From 3fe64261b5658e28e2c0a1630cf878f066f77f0c Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Wed, 13 Dec 2017 14:46:26 +0100 Subject: Related: tdf#114428 svtools HTML import: avoid XML declaration in body text Just ignore it for now. Change-Id: Idf82af611370d957c6704cce250941a8a0b90637 Reviewed-on: https://gerrit.libreoffice.org/46388 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- svtools/qa/unit/testHtmlReader.cxx | 70 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 svtools/qa/unit/testHtmlReader.cxx (limited to 'svtools/qa') diff --git a/svtools/qa/unit/testHtmlReader.cxx b/svtools/qa/unit/testHtmlReader.cxx new file mode 100644 index 000000000000..151976eabc9d --- /dev/null +++ b/svtools/qa/unit/testHtmlReader.cxx @@ -0,0 +1,70 @@ +/* -*- 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 + +namespace +{ +/// Subclass of HTMLParser that can sense the import result. +class TestHTMLParser : public HTMLParser +{ +public: + TestHTMLParser(SvStream& rStream); + virtual void NextToken(HtmlTokenId nToken) override; + + OUString m_aDocument; +}; + +TestHTMLParser::TestHTMLParser(SvStream& rStream) + : HTMLParser(rStream) +{ +} + +void TestHTMLParser::NextToken(HtmlTokenId nToken) +{ + if (nToken == HtmlTokenId::TEXTTOKEN) + m_aDocument += aToken; +} + +/// Tests HTMLParser. +class Test : public CppUnit::TestFixture +{ +public: + void testTdf114428(); + + CPPUNIT_TEST_SUITE(Test); + CPPUNIT_TEST(testTdf114428); + CPPUNIT_TEST_SUITE_END(); +}; + +void Test::testTdf114428() +{ + SvMemoryStream aStream; + OString aDocument("\nhello"); + aStream.WriteBytes(aDocument.getStr(), aDocument.getLength()); + aStream.Seek(0); + + tools::SvRef xParser = new TestHTMLParser(aStream); + xParser->CallParser(); + + // This was ' hello', XML declaration + // was not ignored. + CPPUNIT_ASSERT_EQUAL(OUString("hello"), xParser->m_aDocument.trim()); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(Test); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit