/* -*- 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 using namespace ::com::sun::star; namespace { /// Tests for writerfilter/source/rtftok/rtfsprm.cxx. 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(); } constexpr OUStringLiteral DATA_DIRECTORY = u"/writerfilter/qa/cppunittests/rtftok/data/"; CPPUNIT_TEST_FIXTURE(Test, testLeftMarginDedup) { OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + "left-margin-dedup.rtf"; getComponent() = loadFromDesktop(aURL); uno::Reference xTextDocument(getComponent(), uno::UNO_QUERY); uno::Reference xText(xTextDocument->getText(), uno::UNO_QUERY); uno::Reference xParagraphs = xText->createEnumeration(); uno::Reference xParagraph(xParagraphs->nextElement(), uno::UNO_QUERY); sal_Int32 nLeftMargin = 0; xParagraph->getPropertyValue("ParaLeftMargin") >>= nLeftMargin; CPPUNIT_ASSERT_EQUAL(static_cast(1270), nLeftMargin); uno::Reference xParagraphState(xParagraph, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DIRECT_VALUE, xParagraphState->getPropertyState("ParaLeftMargin")); xParagraph.set(xParagraphs->nextElement(), uno::UNO_QUERY); nLeftMargin = 0; xParagraph->getPropertyValue("ParaLeftMargin") >>= nLeftMargin; CPPUNIT_ASSERT_EQUAL(static_cast(1270), nLeftMargin); xParagraphState.set(xParagraph, uno::UNO_QUERY); // Without the accompanying fix in place, this test would have failed with: // - Expected: 0 (DIRECT_VALUE) // - Actual : 1 (DEFAULT_VALUE) // i.e. the left margin was not a direct formatting, which means left margin from the numbering // was used instead. CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DIRECT_VALUE, xParagraphState->getPropertyState("ParaLeftMargin")); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */