summaryrefslogtreecommitdiffstats
path: root/sw/qa/core/text/porrst.cxx
blob: f2e14e7f7f314e35824a921c7c834851451b9c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* -*- 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 <swmodeltestbase.hxx>

#include <memory>

#include <IDocumentLayoutAccess.hxx>
#include <doc.hxx>
#include <frame.hxx>
#include <layfrm.hxx>
#include <pagefrm.hxx>
#include <rootfrm.hxx>
#include <txtfrm.hxx>
#include <sortedobjs.hxx>

namespace
{
/// Covers sw/source/core/text/porrst.cxx fixes.
class Test : public SwModelTestBase
{
public:
    Test()
        : SwModelTestBase("/sw/qa/core/text/data/")
    {
    }
};

CPPUNIT_TEST_FIXTURE(Test, testFloattableLeftoverParaPortion)
{
    // Given a document with a multi-page floating table, the anchor of the table has some text:
    createSwDoc("floattable-leftover-para-portion.docx");

    // When laying out that document:
    calcLayout();

    // Then make sure all anchor text goes to the second page:
    SwDoc* pDoc = getSwDoc();
    SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout();
    auto pPage = dynamic_cast<SwPageFrame*>(pLayout->Lower());
    CPPUNIT_ASSERT(pPage);
    SwFrame* pBody = pPage->FindBodyCont();
    SwFrame* pPara1 = pBody->GetLower();
    auto pPara2 = pPara1->GetNext()->DynCastTextFrame();
    CPPUNIT_ASSERT(pPara2);
    // Without the accompanying fix in place, this test would have failed, the first page's anchor
    // also had some (duplicated) anchor text.
    CPPUNIT_ASSERT(!pPara2->GetPara());
}

CPPUNIT_TEST_FIXTURE(Test, testFloattableAnchorHeight)
{
#if !defined(MACOSX) // FIXME fails on macOS
    // Given 3 tables, innermost table on pages 2-3-4:
    createSwDoc("floattable-anchor-height.docx");

    // When laying out the document:
    calcLayout();

    // Then make sure the flys are on the expected pages:
    SwDoc* pDoc = getSwDoc();
    SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout();
    auto pPage1 = pLayout->Lower()->DynCastPageFrame();
    CPPUNIT_ASSERT(pPage1);
    CPPUNIT_ASSERT(!pPage1->GetSortedObjs());
    auto pPage2 = pPage1->GetNext()->DynCastPageFrame();
    CPPUNIT_ASSERT(pPage2);
    SwSortedObjs* pPage2Objs = pPage2->GetSortedObjs();
    CPPUNIT_ASSERT(pPage2Objs);
    CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(1), pPage2Objs->size());
    auto pPage3 = pPage2->GetNext()->DynCastPageFrame();
    CPPUNIT_ASSERT(pPage3);
    SwSortedObjs* pPage3Objs = pPage3->GetSortedObjs();
    CPPUNIT_ASSERT(pPage3Objs);
    // Without the accompanying fix in place, this test would have failed with:
    // - Expected: 1
    // - Actual  : 2
    // i.e. page 3 also had the fly frame of page 4 as well.
    CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(1), pPage3Objs->size());
    auto pPage4 = pPage3->GetNext()->DynCastPageFrame();
    SwSortedObjs* pPage4Objs = pPage4->GetSortedObjs();
    CPPUNIT_ASSERT(pPage4Objs);
    CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(1), pPage4Objs->size());
#endif
}
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */