forked from amazingfate/loongoffice
Change-Id: I4884bfb67a061b865e8cf38b2fea6de0cb1bc3d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109057 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
/* -*- 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 <test/bootstrapfixture.hxx>
|
|
#include <unotest/macros_test.hxx>
|
|
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
#include <com/sun/star/drawing/XDrawView.hpp>
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
#include <sfx2/app.hxx>
|
|
#include <sfx2/sfxsids.hrc>
|
|
#include <sfx2/viewfrm.hxx>
|
|
#include <svl/itemset.hxx>
|
|
#include <svl/intitem.hxx>
|
|
#include <sfx2/request.hxx>
|
|
#include <sfx2/bindings.hxx>
|
|
|
|
using namespace com::sun::star;
|
|
|
|
constexpr OUStringLiteral DATA_DIRECTORY = u"/sfx2/qa/cppunit/data/";
|
|
|
|
/// Covers sfx2/source/view/ fixes.
|
|
class Sfx2ViewTest : public test::BootstrapFixture, public unotest::MacrosTest
|
|
{
|
|
private:
|
|
uno::Reference<lang::XComponent> mxComponent;
|
|
|
|
public:
|
|
void setUp() override;
|
|
void tearDown() override;
|
|
uno::Reference<lang::XComponent>& getComponent() { return mxComponent; }
|
|
};
|
|
|
|
void Sfx2ViewTest::setUp()
|
|
{
|
|
test::BootstrapFixture::setUp();
|
|
|
|
mxDesktop.set(frame::Desktop::create(mxComponentContext));
|
|
}
|
|
|
|
void Sfx2ViewTest::tearDown()
|
|
{
|
|
if (mxComponent.is())
|
|
mxComponent->dispose();
|
|
|
|
test::BootstrapFixture::tearDown();
|
|
}
|
|
|
|
CPPUNIT_TEST_FIXTURE(Sfx2ViewTest, testReloadPage)
|
|
{
|
|
// Load a document, which has 2 pages.
|
|
OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + "reload-page.odg";
|
|
getComponent() = loadFromDesktop(aURL);
|
|
|
|
// Reload, and request to start on page 2.
|
|
SfxViewFrame* pFrame = SfxViewFrame::Current();
|
|
SfxAllItemSet aSet(SfxGetpApp()->GetPool());
|
|
aSet.Put(SfxInt32Item(SID_PAGE_NUMBER, 1));
|
|
SfxRequest aReq(SID_RELOAD, SfxCallMode::SLOT, aSet);
|
|
pFrame->ExecReload_Impl(aReq);
|
|
uno::Reference<frame::XModel> xModel = SfxObjectShell::Current()->GetBaseModel();
|
|
getComponent() = xModel;
|
|
|
|
// Check the current page after reload.
|
|
uno::Reference<drawing::XDrawView> xController(xModel->getCurrentController(), uno::UNO_QUERY);
|
|
uno::Reference<beans::XPropertySet> xPage(xController->getCurrentPage(), uno::UNO_QUERY);
|
|
sal_Int32 nPage{};
|
|
xPage->getPropertyValue("Number") >>= nPage;
|
|
|
|
// Without the accompanying fix in place, this test would have failed with:
|
|
// - Expected: 2
|
|
// - Actual : 1
|
|
// i.e. the document was opened on page 1, not page 2, SID_PAGE_NUMBER was ignored.
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(2), nPage);
|
|
}
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|