/* -*- 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 #include using namespace ::com::sun::star; namespace { /// Covers slideshow/source/engine/ fixes. class Test : public test::BootstrapFixture, public unotest::MacrosTest { private: uno::Reference mxComponent; public: void setUp() override; void tearDown() override; uno::Reference& getComponent() { return mxComponent; } }; void Test::setUp() { test::BootstrapFixture::setUp(); mxDesktop.set(frame::Desktop::create(mxComponentContext)); } void Test::tearDown() { if (mxComponent.is()) mxComponent->dispose(); test::BootstrapFixture::tearDown(); } /// Get the first command node in the animation tree of the page, assuming that it's the first child /// (recursively). uno::Reference GetFirstCommandNodeOfPage(const uno::Reference& xPage) { uno::Reference xAnimationNodeSupplier(xPage, uno::UNO_QUERY); uno::Reference xNode = xAnimationNodeSupplier->getAnimationNode(); while (true) { if (xNode->getType() == animations::AnimationNodeType::COMMAND) { break; } uno::Reference xEnumAccess(xNode, uno::UNO_QUERY); uno::Reference xNodes = xEnumAccess->createEnumeration(); xNode.set(xNodes->nextElement(), uno::UNO_QUERY); } uno::Reference xRet(xNode, uno::UNO_QUERY); return xRet; } } CPPUNIT_TEST_FIXTURE(Test, testLoopingFromAnimation) { // Given a document with a looping video, the looping is defined as part of its auto-play // animation (and not on the media shape): OUString aURL = m_directories.getURLFromSrc(u"slideshow/qa/engine/data/video-loop.pptx"); getComponent().set(loadFromDesktop(aURL)); uno::Reference xDoc(getComponent(), uno::UNO_QUERY); uno::Reference xPage(xDoc->getDrawPages()->getByIndex(0), uno::UNO_QUERY); uno::Reference xCommandNode = GetFirstCommandNodeOfPage(xPage); uno::Reference xShape(xPage->getByIndex(0), uno::UNO_QUERY); // When determining if the video should be looping or not: bool bLooping = slideshow::internal::AnimationCommandNode::GetLoopingFromAnimation(xCommandNode, xShape); // Then make sure that we detect the looping is wanted: CPPUNIT_ASSERT(bLooping); } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */