/* -*- 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 "WpftFilterFixture.hxx" #include "WpftLoader.hxx" #include "wpftimport.hxx" namespace { namespace uno = css::uno; class PresentationImportFilter : public writerperfect::ImportFilter { public: explicit PresentationImportFilter(const uno::Reference& rxContext) : writerperfect::ImportFilter(rxContext) { } // XServiceInfo virtual OUString SAL_CALL getImplementationName() override; virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override; virtual uno::Sequence SAL_CALL getSupportedServiceNames() override; private: virtual bool doDetectFormat(librevenge::RVNGInputStream& rInput, OUString& rTypeName) override; virtual bool doImportDocument(weld::Window* pWindow, librevenge::RVNGInputStream& rInput, OdpGenerator& rGenerator, utl::MediaDescriptor& rDescriptor) override; static void generate(librevenge::RVNGPresentationInterface& rDocument); }; bool PresentationImportFilter::doImportDocument(weld::Window*, librevenge::RVNGInputStream&, OdpGenerator& rGenerator, utl::MediaDescriptor&) { PresentationImportFilter::generate(rGenerator); return true; } bool PresentationImportFilter::doDetectFormat(librevenge::RVNGInputStream&, OUString& rTypeName) { rTypeName = "WpftDummyPresentation"; return true; } // XServiceInfo OUString SAL_CALL PresentationImportFilter::getImplementationName() { return "org.libreoffice.comp.Wpft.QA.PresentationImportFilter"; } sal_Bool SAL_CALL PresentationImportFilter::supportsService(const OUString& rServiceName) { return cppu::supportsService(this, rServiceName); } uno::Sequence SAL_CALL PresentationImportFilter::getSupportedServiceNames() { return { "com.sun.star.document.ImportFilter", "com.sun.star.document.ExtendedTypeDetection" }; } void PresentationImportFilter::generate(librevenge::RVNGPresentationInterface& rDocument) { using namespace librevenge; rDocument.startDocument(RVNGPropertyList()); RVNGPropertyList aProps; aProps.insert("svg:width", 800); aProps.insert("svg:height", 600); rDocument.startSlide(aProps); aProps.clear(); aProps.insert("svg:x", 50); aProps.insert("svg:y", 50); aProps.insert("svg:width", 200); aProps.insert("svg:height", 100); rDocument.startTextObject(aProps); rDocument.openParagraph(RVNGPropertyList()); rDocument.openSpan(RVNGPropertyList()); rDocument.insertText("My hovercraft is full of eels."); rDocument.closeSpan(); rDocument.closeParagraph(); rDocument.endTextObject(); rDocument.endSlide(); rDocument.endDocument(); } } namespace { class PresentationImportTest : public writerperfect::test::WpftFilterFixture { public: void test(); CPPUNIT_TEST_SUITE(PresentationImportTest); CPPUNIT_TEST(test); CPPUNIT_TEST_SUITE_END(); }; void PresentationImportTest::test() { using namespace css; rtl::Reference xFilter{ new PresentationImportFilter(m_xContext) }; writerperfect::test::WpftLoader aLoader(createDummyInput(), xFilter, "private:factory/simpress", m_xDesktop, m_xContext); uno::Reference xDoc(aLoader.getDocument(), uno::UNO_QUERY); CPPUNIT_ASSERT(xDoc.is()); uno::Reference xPages = xDoc->getDrawPages(); CPPUNIT_ASSERT(xPages.is()); auto aPage = xPages->getByIndex(0); uno::Reference xPageProps; CPPUNIT_ASSERT(aPage >>= xPageProps); CPPUNIT_ASSERT(xPageProps.is()); sal_Int32 nProp = 0; CPPUNIT_ASSERT(xPageProps->getPropertyValue("Height") >>= nProp); CPPUNIT_ASSERT_EQUAL(sal_Int32(600), nProp); CPPUNIT_ASSERT(xPageProps->getPropertyValue("Width") >>= nProp); CPPUNIT_ASSERT_EQUAL(sal_Int32(800), nProp); uno::Reference xShapes(xPageProps, uno::UNO_QUERY); CPPUNIT_ASSERT(xShapes.is()); auto aShape = xShapes->getByIndex(0); uno::Reference xShapeDesc; CPPUNIT_ASSERT(aShape >>= xShapeDesc); CPPUNIT_ASSERT(xShapeDesc.is()); CPPUNIT_ASSERT_EQUAL(OUString("com.sun.star.drawing.TextShape"), xShapeDesc->getShapeType()); uno::Reference xText(xShapeDesc, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(OUString("My hovercraft is full of eels."), xText->getString()); } CPPUNIT_TEST_SUITE_REGISTRATION(PresentationImportTest); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */