File: TestCellRegion.cpp

package info (click to toggle)
calligra 1%3A3.2.1%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 261,632 kB
  • sloc: cpp: 650,836; xml: 27,662; python: 6,044; perl: 2,724; yacc: 1,817; ansic: 1,325; sh: 1,277; lex: 1,107; ruby: 1,010; javascript: 495; makefile: 17
file content (159 lines) | stat: -rw-r--r-- 5,765 bytes parent folder | download | duplicates (3)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* This file is part of the KDE project

   Copyright (C) 2010 Johannes Simon <johannes.simon@gmail.com>
   Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     Contact: Suresh Chande suresh.chande@nokia.com

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

// Own
#include "TestCellRegion.h"

// Qt
#include <QTest>

// KoChart
#include "CellRegion.h"

TestCellRegion::TestCellRegion()
    : QObject(0)
{
}

void TestCellRegion::init()
{
    m_source.clear();
    m_source.add("Table1", &m_model1);
    m_source.add("Table2", &m_model2);
    Table *t1 = m_source.get("Table1");
    Table *t2 = m_source.get("Table2");

    m_region1 = CellRegion(t1);
    m_region1.add(CellRegion(t1, QRect(2, 3, 10, 11)));

    m_region2 = CellRegion();
    m_region2.add(CellRegion(t1, QRect(2, 3, 10, 11)));
    m_region2.add(CellRegion(t2, QRect(1, 2, 5, 6)));
}

void TestCellRegion::testToStringSingleTable()
{
    QCOMPARE(m_region1.toString(), QString("$Table1.$B$3:$K$13"));
}

void TestCellRegion::testSkippedTableEntry()
{
    const CellRegion region(&m_source, QString("Table1.$A$3:.$C$3"));
    QVector< QRect > rects;
    rects.append(QRect(QPoint(1, 3), QPoint(3, 3)));
    QCOMPARE(region.rects(), rects);
}


void TestCellRegion::testFromStringSingleTable()
{
    QCOMPARE(m_region1, CellRegion(&m_source, "$Table1.$B$3:$K$13"));
}

void TestCellRegion::testTableNameChangeSingleTable()
{
    m_source.rename("Table1", "DoubleBubbleGumBubblesDouble");
    QCOMPARE(m_region1.toString(), QString("$DoubleBubbleGumBubblesDouble.$B$3:$K$13"));
}

void TestCellRegion::testToStringWithSpecialCharactersSingleTable()
{
    m_source.rename("Table1", "table-one");
    QCOMPARE(m_region1.toString(), QString("$'table-one'.$B$3:$K$13"));
}

void TestCellRegion::testFromStringWithSpecialCharactersSingleTable()
{
    m_source.rename("Table1", "table-one");
    CellRegion region(&m_source, QString("$'table-one'.$B$3:$K$13"));
    QCOMPARE(region.table(), m_source.get("table-one"));
}

void TestCellRegion::testListOfRegions()
{
    CellRegion region(&m_source, QString("$Table1.$A$1:$F$13 $Table1.$A$15:$F$26"));
    QCOMPARE(region.table(), m_source.get("Table1"));
    const QVector< QRect > rects = region.rects();
    QVector< QRect > compareRects;
    compareRects.push_back(QRect(QPoint(1, 1), QPoint(6, 13)));
    compareRects.push_back(QRect(QPoint(1, 15), QPoint(6, 26)));
    QCOMPARE(rects.count(), compareRects.count());
    for (int i = 0; i < compareRects.count() && i < rects.count(); ++i)
    {
        QCOMPARE(rects[i], compareRects[i]);
    }
}

void TestCellRegion::testListOfRegions2()
{
    CellRegion region(&m_source, QString("Table1.A19:Table1.A30 Table1.E20:Table1.E30 Table1.G20:Table1.G30 Table1.I20:Table1.I30 Table1.E58:Table1.E71"));
    QCOMPARE(region.table(), m_source.get("Table1"));
    const QVector< QRect > rects = region.rects();
    QVector< QRect > compareRects;
    compareRects.push_back(QRect(QPoint(1, 19), QPoint(1, 30)));
    compareRects.push_back(QRect(QPoint(5, 20), QPoint(5, 30)));
    compareRects.push_back(QRect(QPoint(7,20), QPoint(7, 30)));
    compareRects.push_back(QRect(QPoint(9,20), QPoint(9, 30)));
    compareRects.push_back(QRect(QPoint(5,58), QPoint(5, 71)));
    for (int i = 0; i < compareRects.count() && i < rects.count(); ++i)
    {
        QCOMPARE(rects[i], compareRects[i]);
    }
}

void TestCellRegion::testToStringMultipleTables()
{
    QEXPECT_FAIL("", "Functionality is not yet supported, so its expected to fail", Continue);
    QCOMPARE(m_region2.toString(), QString("$Table1.$B$3:$K$13;$Table2.$A$2:$E$7"));
}

void TestCellRegion::testFromStringMultipleTables()
{
    //QEXPECT_FAIL("", "Functionality is not yet supported, so its expected to fail", Continue);
    QCOMPARE(m_region2, CellRegion(&m_source, "$Table1.$B$3:$K$13;$Table2.$A$2:$E$7"));
}

void TestCellRegion::testTableNameChangeMultipleTables()
{
    m_source.rename("Table1", "AGoodCookCanCookGoodCookies");
    QEXPECT_FAIL("", "Functionality is not yet supported, so its expected to fail", Continue);
    QCOMPARE(m_region2.toString(), QString("$AGoodCookCanCookGoodCookies.$B$3:$K$13;$Table2.$A$2:$E$7"));
    m_source.rename("Table2", "DoubleBubbleGumBubblesDouble");
    QEXPECT_FAIL("", "Functionality is not yet supported, so its expected to fail", Continue);
    QCOMPARE(m_region2.toString(), QString("$AGoodCookCanCookGoodCookies.$B$3:$K$13;$DoubleBubbleGumBubblesDouble.$A$2:$E$7"));
}

void TestCellRegion::testToStringWithSpecialCharactersMultipleTables()
{
    m_source.rename("Table1", "table-one");
    QEXPECT_FAIL("", "Functionality is not yet supported, so its expected to fail", Continue);
    QCOMPARE(m_region2.toString(), QString("$'table-one'.$B$3:$K$13;$Table2.$A$2:$E$7"));
}

void TestCellRegion::testFromStringWithSpecialCharactersMultipleTables()
{
    m_source.rename("Table1", "table-one");
    CellRegion region(&m_source, QString("$'table-one'.$B$3:$K$13"));
    QCOMPARE(region.table(), m_source.get("table-one"));
}

QTEST_MAIN(TestCellRegion)