@@ -1,286 +1,571 | |||||
1 | /**************************************************************************** |
|
1 | /**************************************************************************** | |
2 | ** |
|
2 | ** | |
3 | ** Copyright (C) 2012 Digia Plc |
|
3 | ** Copyright (C) 2012 Digia Plc | |
4 | ** All rights reserved. |
|
4 | ** All rights reserved. | |
5 | ** For any questions to Digia, please use contact form at http://qt.digia.com |
|
5 | ** For any questions to Digia, please use contact form at http://qt.digia.com | |
6 | ** |
|
6 | ** | |
7 | ** This file is part of the Qt Commercial Charts Add-on. |
|
7 | ** This file is part of the Qt Commercial Charts Add-on. | |
8 | ** |
|
8 | ** | |
9 | ** $QT_BEGIN_LICENSE$ |
|
9 | ** $QT_BEGIN_LICENSE$ | |
10 | ** Licensees holding valid Qt Commercial licenses may use this file in |
|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in | |
11 | ** accordance with the Qt Commercial License Agreement provided with the |
|
11 | ** accordance with the Qt Commercial License Agreement provided with the | |
12 | ** Software or, alternatively, in accordance with the terms contained in |
|
12 | ** Software or, alternatively, in accordance with the terms contained in | |
13 | ** a written agreement between you and Digia. |
|
13 | ** a written agreement between you and Digia. | |
14 | ** |
|
14 | ** | |
15 | ** If you have questions regarding the use of this file, please use |
|
15 | ** If you have questions regarding the use of this file, please use | |
16 | ** contact form at http://qt.digia.com |
|
16 | ** contact form at http://qt.digia.com | |
17 | ** $QT_END_LICENSE$ |
|
17 | ** $QT_END_LICENSE$ | |
18 | ** |
|
18 | ** | |
19 | ****************************************************************************/ |
|
19 | ****************************************************************************/ | |
20 |
|
20 | |||
21 | #include <QtCore/QString> |
|
21 | #include <QtCore/QString> | |
22 | #include <QtTest/QtTest> |
|
22 | #include <QtTest/QtTest> | |
23 |
|
23 | |||
24 | #include <qchart.h> |
|
24 | #include <qchart.h> | |
25 | #include <qchartview.h> |
|
25 | #include <qchartview.h> | |
26 | #include <qgroupedbarseries.h> |
|
26 | #include <qgroupedbarseries.h> | |
27 | #include <qbarset.h> |
|
27 | #include <qbarset.h> | |
28 | #include <qvbarmodelmapper.h> |
|
28 | #include <qvbarmodelmapper.h> | |
29 | #include <qhbarmodelmapper.h> |
|
29 | #include <qhbarmodelmapper.h> | |
30 | #include <QStandardItemModel> |
|
30 | #include <QStandardItemModel> | |
31 |
|
31 | |||
32 | QTCOMMERCIALCHART_USE_NAMESPACE |
|
32 | QTCOMMERCIALCHART_USE_NAMESPACE | |
33 |
|
33 | |||
34 | class tst_qbarmodelmapper : public QObject |
|
34 | class tst_qbarmodelmapper : public QObject | |
35 | { |
|
35 | { | |
36 | Q_OBJECT |
|
36 | Q_OBJECT | |
37 |
|
37 | |||
38 | public: |
|
38 | public: | |
39 | tst_qbarmodelmapper(); |
|
39 | tst_qbarmodelmapper(); | |
|
40 | void createVerticalMapper(); | |||
|
41 | void createHorizontalMapper(); | |||
40 |
|
42 | |||
41 | private Q_SLOTS: |
|
43 | private Q_SLOTS: | |
42 | void initTestCase(); |
|
44 | void initTestCase(); | |
43 | void cleanupTestCase(); |
|
45 | void cleanupTestCase(); | |
44 | void init(); |
|
46 | void init(); | |
45 | void cleanup(); |
|
47 | void cleanup(); | |
46 | void verticalMapper_data(); |
|
48 | void verticalMapper_data(); | |
47 | void verticalMapper(); |
|
49 | void verticalMapper(); | |
48 | void verticalMapperCustomMapping_data(); |
|
50 | void verticalMapperCustomMapping_data(); | |
49 | void verticalMapperCustomMapping(); |
|
51 | void verticalMapperCustomMapping(); | |
50 | void horizontalMapper_data(); |
|
52 | void horizontalMapper_data(); | |
51 | void horizontalMapper(); |
|
53 | void horizontalMapper(); | |
52 | void horizontalMapperCustomMapping_data(); |
|
54 | void horizontalMapperCustomMapping_data(); | |
53 | void horizontalMapperCustomMapping(); |
|
55 | void horizontalMapperCustomMapping(); | |
54 |
|
56 | |||
|
57 | void verticalModelInsertRows(); | |||
|
58 | void verticalModelRemoveRows(); | |||
|
59 | void verticalModelInsertColumns(); | |||
|
60 | void verticalModelRemoveColumns(); | |||
|
61 | void horizontalModelInsertRows(); | |||
|
62 | void horizontalModelRemoveRows(); | |||
|
63 | void horizontalModelInsertColumns(); | |||
|
64 | void horizontalModelRemoveColumns(); | |||
|
65 | void modelUpdateCell(); | |||
|
66 | ||||
55 | private: |
|
67 | private: | |
56 | QStandardItemModel *m_model; |
|
68 | QStandardItemModel *m_model; | |
57 | int m_modelRowCount; |
|
69 | int m_modelRowCount; | |
58 | int m_modelColumnCount; |
|
70 | int m_modelColumnCount; | |
59 |
|
71 | |||
|
72 | QVBarModelMapper *m_vMapper; | |||
|
73 | QHBarModelMapper *m_hMapper; | |||
|
74 | ||||
60 | QGroupedBarSeries *m_series; |
|
75 | QGroupedBarSeries *m_series; | |
61 | QChart *m_chart; |
|
76 | QChart *m_chart; | |
62 | }; |
|
77 | }; | |
63 |
|
78 | |||
64 | tst_qbarmodelmapper::tst_qbarmodelmapper(): |
|
79 | tst_qbarmodelmapper::tst_qbarmodelmapper(): | |
65 | m_model(0), |
|
80 | m_model(0), | |
66 | m_modelRowCount(10), |
|
81 | m_modelRowCount(10), | |
67 | m_modelColumnCount(8) |
|
82 | m_modelColumnCount(8), | |
|
83 | m_vMapper(0), | |||
|
84 | m_hMapper(0), | |||
|
85 | m_series(0), | |||
|
86 | m_chart(0) | |||
|
87 | { | |||
|
88 | } | |||
|
89 | ||||
|
90 | void tst_qbarmodelmapper::createVerticalMapper() | |||
|
91 | { | |||
|
92 | m_vMapper = new QVBarModelMapper; | |||
|
93 | QVERIFY(m_vMapper->model() == 0); | |||
|
94 | m_vMapper->setFirstBarSetColumn(0); | |||
|
95 | m_vMapper->setLastBarSetColumn(4); | |||
|
96 | m_vMapper->setModel(m_model); | |||
|
97 | m_vMapper->setSeries(m_series); | |||
|
98 | } | |||
|
99 | ||||
|
100 | void tst_qbarmodelmapper::createHorizontalMapper() | |||
68 | { |
|
101 | { | |
|
102 | m_hMapper = new QHBarModelMapper; | |||
|
103 | QVERIFY(m_hMapper->model() == 0); | |||
|
104 | m_hMapper->setFirstBarSetRow(0); | |||
|
105 | m_hMapper->setLastBarSetRow(4); | |||
|
106 | m_hMapper->setModel(m_model); | |||
|
107 | m_hMapper->setSeries(m_series); | |||
69 | } |
|
108 | } | |
70 |
|
109 | |||
71 | void tst_qbarmodelmapper::init() |
|
110 | void tst_qbarmodelmapper::init() | |
72 | { |
|
111 | { | |
73 |
|
|
112 | m_series = new QGroupedBarSeries; | |
74 |
|
|
113 | m_chart->addSeries(m_series); | |
|
114 | ||||
|
115 | m_model = new QStandardItemModel(m_modelRowCount, m_modelColumnCount, this); | |||
|
116 | for (int row = 0; row < m_modelRowCount; ++row) { | |||
|
117 | for (int column = 0; column < m_modelColumnCount; column++) { | |||
|
118 | m_model->setData(m_model->index(row, column), row * column); | |||
|
119 | } | |||
|
120 | } | |||
75 | } |
|
121 | } | |
76 |
|
122 | |||
77 | void tst_qbarmodelmapper::cleanup() |
|
123 | void tst_qbarmodelmapper::cleanup() | |
78 | { |
|
124 | { | |
79 | m_chart->removeSeries(m_series); |
|
125 | m_chart->removeSeries(m_series); | |
80 | delete m_series; |
|
126 | delete m_series; | |
81 | m_series = 0; |
|
127 | m_series = 0; | |
|
128 | ||||
|
129 | m_model->clear(); | |||
|
130 | m_model->deleteLater(); | |||
|
131 | m_model = 0; | |||
|
132 | ||||
|
133 | if (m_vMapper) { | |||
|
134 | m_vMapper->deleteLater(); | |||
|
135 | m_vMapper = 0; | |||
|
136 | } | |||
|
137 | ||||
|
138 | if (m_hMapper) { | |||
|
139 | m_hMapper->deleteLater(); | |||
|
140 | m_hMapper = 0; | |||
|
141 | } | |||
82 | } |
|
142 | } | |
83 |
|
143 | |||
84 | void tst_qbarmodelmapper::initTestCase() |
|
144 | void tst_qbarmodelmapper::initTestCase() | |
85 | { |
|
145 | { | |
86 | m_chart = new QChart; |
|
146 | m_chart = new QChart; | |
87 | QChartView *chartView = new QChartView(m_chart); |
|
147 | QChartView *chartView = new QChartView(m_chart); | |
88 | chartView->show(); |
|
148 | chartView->show(); | |
89 |
|
||||
90 | m_model = new QStandardItemModel(this); |
|
|||
91 | for (int row = 0; row < m_modelRowCount; ++row) { |
|
|||
92 | for (int column = 0; column < m_modelColumnCount; column++) { |
|
|||
93 | QStandardItem *item = new QStandardItem(row * column); |
|
|||
94 | m_model->setItem(row, column, item); |
|
|||
95 | } |
|
|||
96 | } |
|
|||
97 | } |
|
149 | } | |
98 |
|
150 | |||
99 | void tst_qbarmodelmapper::cleanupTestCase() |
|
151 | void tst_qbarmodelmapper::cleanupTestCase() | |
100 | { |
|
152 | { | |
101 | m_model->clear(); |
|
|||
102 | } |
|
153 | } | |
103 |
|
154 | |||
104 | void tst_qbarmodelmapper::verticalMapper_data() |
|
155 | void tst_qbarmodelmapper::verticalMapper_data() | |
105 | { |
|
156 | { | |
106 | QTest::addColumn<int>("firstBarSetColumn"); |
|
157 | QTest::addColumn<int>("firstBarSetColumn"); | |
107 | QTest::addColumn<int>("lastBarSetColumn"); |
|
158 | QTest::addColumn<int>("lastBarSetColumn"); | |
108 | QTest::addColumn<int>("expectedBarSetCount"); |
|
159 | QTest::addColumn<int>("expectedBarSetCount"); | |
109 | QTest::newRow("lastBarSetColumn greater than firstBarSetColumn") << 0 << 1 << 2; |
|
160 | QTest::newRow("lastBarSetColumn greater than firstBarSetColumn") << 0 << 1 << 2; | |
110 | QTest::newRow("lastBarSetColumn equal to firstBarSetColumn") << 1 << 1 << 1; |
|
161 | QTest::newRow("lastBarSetColumn equal to firstBarSetColumn") << 1 << 1 << 1; | |
111 | QTest::newRow("lastBarSetColumn lesser than firstBarSetColumn") << 1 << 0 << 0; |
|
162 | QTest::newRow("lastBarSetColumn lesser than firstBarSetColumn") << 1 << 0 << 0; | |
112 | QTest::newRow("invalid firstBarSetColumn and correct lastBarSetColumn") << -3 << 1 << 0; |
|
163 | QTest::newRow("invalid firstBarSetColumn and correct lastBarSetColumn") << -3 << 1 << 0; | |
113 | QTest::newRow("firstBarSetColumn beyond the size of model and correct lastBarSetColumn") << m_modelColumnCount << 1 << 0; |
|
164 | QTest::newRow("firstBarSetColumn beyond the size of model and correct lastBarSetColumn") << m_modelColumnCount << 1 << 0; | |
114 | QTest::newRow("firstBarSetColumn beyond the size of model and invalid lastBarSetColumn") << m_modelColumnCount << -1 << 0; |
|
165 | QTest::newRow("firstBarSetColumn beyond the size of model and invalid lastBarSetColumn") << m_modelColumnCount << -1 << 0; | |
115 | } |
|
166 | } | |
116 |
|
167 | |||
117 | void tst_qbarmodelmapper::verticalMapper() |
|
168 | void tst_qbarmodelmapper::verticalMapper() | |
118 | { |
|
169 | { | |
119 | QFETCH(int, firstBarSetColumn); |
|
170 | QFETCH(int, firstBarSetColumn); | |
120 | QFETCH(int, lastBarSetColumn); |
|
171 | QFETCH(int, lastBarSetColumn); | |
121 | QFETCH(int, expectedBarSetCount); |
|
172 | QFETCH(int, expectedBarSetCount); | |
122 |
|
173 | |||
123 | m_series = new QGroupedBarSeries; |
|
174 | m_series = new QGroupedBarSeries; | |
124 |
|
175 | |||
125 | QVBarModelMapper *mapper = new QVBarModelMapper; |
|
176 | QVBarModelMapper *mapper = new QVBarModelMapper; | |
126 | mapper->setFirstBarSetColumn(firstBarSetColumn); |
|
177 | mapper->setFirstBarSetColumn(firstBarSetColumn); | |
127 | mapper->setLastBarSetColumn(lastBarSetColumn); |
|
178 | mapper->setLastBarSetColumn(lastBarSetColumn); | |
128 | mapper->setModel(m_model); |
|
179 | mapper->setModel(m_model); | |
129 | mapper->setSeries(m_series); |
|
180 | mapper->setSeries(m_series); | |
130 |
|
181 | |||
131 | m_chart->addSeries(m_series); |
|
182 | m_chart->addSeries(m_series); | |
132 |
|
183 | |||
133 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); |
|
184 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); | |
134 | QCOMPARE(mapper->firstBarSetColumn(), qMax(-1, firstBarSetColumn)); |
|
185 | QCOMPARE(mapper->firstBarSetColumn(), qMax(-1, firstBarSetColumn)); | |
135 | QCOMPARE(mapper->lastBarSetColumn(), qMax(-1, lastBarSetColumn)); |
|
186 | QCOMPARE(mapper->lastBarSetColumn(), qMax(-1, lastBarSetColumn)); | |
136 |
|
187 | |||
137 | delete mapper; |
|
188 | delete mapper; | |
138 | mapper = 0; |
|
189 | mapper = 0; | |
139 | } |
|
190 | } | |
140 |
|
191 | |||
141 | void tst_qbarmodelmapper::verticalMapperCustomMapping_data() |
|
192 | void tst_qbarmodelmapper::verticalMapperCustomMapping_data() | |
142 | { |
|
193 | { | |
143 | QTest::addColumn<int>("first"); |
|
194 | QTest::addColumn<int>("first"); | |
144 | QTest::addColumn<int>("countLimit"); |
|
195 | QTest::addColumn<int>("countLimit"); | |
145 | QTest::addColumn<int>("expectedBarSetCount"); |
|
196 | QTest::addColumn<int>("expectedBarSetCount"); | |
146 | QTest::addColumn<int>("expectedCount"); |
|
197 | QTest::addColumn<int>("expectedCount"); | |
147 | QTest::newRow("first: 0, unlimited count") << 0 << -1 << 2 << m_modelRowCount; |
|
198 | QTest::newRow("first: 0, unlimited count") << 0 << -1 << 2 << m_modelRowCount; | |
148 | QTest::newRow("first: 3, unlimited count") << 3 << -1 << 2 << m_modelRowCount - 3; |
|
199 | QTest::newRow("first: 3, unlimited count") << 3 << -1 << 2 << m_modelRowCount - 3; | |
149 | QTest::newRow("first: 0, count: 5") << 0 << 5 << 2 << qMin(5, m_modelRowCount); |
|
200 | QTest::newRow("first: 0, count: 5") << 0 << 5 << 2 << qMin(5, m_modelRowCount); | |
150 | QTest::newRow("first: 3, count: 5") << 3 << 5 << 2 << qMin(5, m_modelRowCount - 3); |
|
201 | QTest::newRow("first: 3, count: 5") << 3 << 5 << 2 << qMin(5, m_modelRowCount - 3); | |
151 | QTest::newRow("first: +1 greater then the number of rows in the model, unlimited count") << m_modelRowCount + 1 << -1 << 0 << 0; |
|
202 | QTest::newRow("first: +1 greater then the number of rows in the model, unlimited count") << m_modelRowCount + 1 << -1 << 0 << 0; | |
152 | QTest::newRow("first: +1 greater then the number of rows in the model, count: 5") << m_modelRowCount + 1 << 5 << 0 << 0; |
|
203 | QTest::newRow("first: +1 greater then the number of rows in the model, count: 5") << m_modelRowCount + 1 << 5 << 0 << 0; | |
153 | QTest::newRow("first: 0, count: +3 greater than the number of rows in the model (should limit to the size of model)") << 0 << m_modelRowCount + 3 << 2 << m_modelRowCount; |
|
204 | QTest::newRow("first: 0, count: +3 greater than the number of rows in the model (should limit to the size of model)") << 0 << m_modelRowCount + 3 << 2 << m_modelRowCount; | |
154 | QTest::newRow("first: -3(invalid - should default to 0), unlimited count") << -3 << -1 << 2 << m_modelRowCount; |
|
205 | QTest::newRow("first: -3(invalid - should default to 0), unlimited count") << -3 << -1 << 2 << m_modelRowCount; | |
155 | QTest::newRow("first: 0, count: -3 (invalid - shlould default to -1)") << 0 << -3 << 2 << m_modelRowCount; |
|
206 | QTest::newRow("first: 0, count: -3 (invalid - shlould default to -1)") << 0 << -3 << 2 << m_modelRowCount; | |
156 | QTest::newRow("first: -3(invalid - should default to 0), count: -3 (invalid - shlould default to -1)") << -3 << -3 << 2 << m_modelRowCount; |
|
207 | QTest::newRow("first: -3(invalid - should default to 0), count: -3 (invalid - shlould default to -1)") << -3 << -3 << 2 << m_modelRowCount; | |
157 | } |
|
208 | } | |
158 |
|
209 | |||
159 | void tst_qbarmodelmapper::verticalMapperCustomMapping() |
|
210 | void tst_qbarmodelmapper::verticalMapperCustomMapping() | |
160 | { |
|
211 | { | |
161 | QFETCH(int, first); |
|
212 | QFETCH(int, first); | |
162 | QFETCH(int, countLimit); |
|
213 | QFETCH(int, countLimit); | |
163 | QFETCH(int, expectedBarSetCount); |
|
214 | QFETCH(int, expectedBarSetCount); | |
164 | QFETCH(int, expectedCount); |
|
215 | QFETCH(int, expectedCount); | |
165 |
|
216 | |||
166 | m_series = new QGroupedBarSeries; |
|
217 | m_series = new QGroupedBarSeries; | |
167 |
|
218 | |||
168 | QCOMPARE(m_series->barsetCount(), 0); |
|
219 | QCOMPARE(m_series->barsetCount(), 0); | |
169 |
|
220 | |||
170 | QVBarModelMapper *mapper = new QVBarModelMapper; |
|
221 | QVBarModelMapper *mapper = new QVBarModelMapper; | |
171 | mapper->setFirstBarSetColumn(0); |
|
222 | mapper->setFirstBarSetColumn(0); | |
172 | mapper->setLastBarSetColumn(1); |
|
223 | mapper->setLastBarSetColumn(1); | |
173 | mapper->setModel(m_model); |
|
224 | mapper->setModel(m_model); | |
174 | mapper->setSeries(m_series); |
|
225 | mapper->setSeries(m_series); | |
175 | mapper->setFirst(first); |
|
226 | mapper->setFirst(first); | |
176 | mapper->setCount(countLimit); |
|
227 | mapper->setCount(countLimit); | |
177 | m_chart->addSeries(m_series); |
|
228 | m_chart->addSeries(m_series); | |
178 |
|
229 | |||
179 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); |
|
230 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); | |
180 |
|
231 | |||
181 | if (expectedBarSetCount > 0) |
|
232 | if (expectedBarSetCount > 0) | |
182 | QCOMPARE(m_series->barSets().first()->count(), expectedCount); |
|
233 | QCOMPARE(m_series->barSets().first()->count(), expectedCount); | |
183 |
|
234 | |||
184 | // change values column mapping to invalid |
|
235 | // change values column mapping to invalid | |
185 | mapper->setFirstBarSetColumn(-1); |
|
236 | mapper->setFirstBarSetColumn(-1); | |
186 | mapper->setLastBarSetColumn(1); |
|
237 | mapper->setLastBarSetColumn(1); | |
187 |
|
238 | |||
188 | QCOMPARE(m_series->barsetCount(), 0); |
|
239 | QCOMPARE(m_series->barsetCount(), 0); | |
189 |
|
240 | |||
190 | delete mapper; |
|
241 | delete mapper; | |
191 | mapper = 0; |
|
242 | mapper = 0; | |
192 | } |
|
243 | } | |
193 |
|
244 | |||
194 | void tst_qbarmodelmapper::horizontalMapper_data() |
|
245 | void tst_qbarmodelmapper::horizontalMapper_data() | |
195 | { |
|
246 | { | |
196 | QTest::addColumn<int>("firstBarSetRow"); |
|
247 | QTest::addColumn<int>("firstBarSetRow"); | |
197 | QTest::addColumn<int>("lastBarSetRow"); |
|
248 | QTest::addColumn<int>("lastBarSetRow"); | |
198 | QTest::addColumn<int>("expectedBarSetCount"); |
|
249 | QTest::addColumn<int>("expectedBarSetCount"); | |
199 | QTest::newRow("lastBarSetRow greater than firstBarSetRow") << 0 << 1 << 2; |
|
250 | QTest::newRow("lastBarSetRow greater than firstBarSetRow") << 0 << 1 << 2; | |
200 | QTest::newRow("lastBarSetRow equal to firstBarSetRow") << 1 << 1 << 1; |
|
251 | QTest::newRow("lastBarSetRow equal to firstBarSetRow") << 1 << 1 << 1; | |
201 | QTest::newRow("lastBarSetRow lesser than firstBarSetRow") << 1 << 0 << 0; |
|
252 | QTest::newRow("lastBarSetRow lesser than firstBarSetRow") << 1 << 0 << 0; | |
202 | QTest::newRow("invalid firstBarSetRow and correct lastBarSetRow") << -3 << 1 << 0; |
|
253 | QTest::newRow("invalid firstBarSetRow and correct lastBarSetRow") << -3 << 1 << 0; | |
203 | QTest::newRow("firstBarSetRow beyond the size of model and correct lastBarSetRow") << m_modelRowCount << 1 << 0; |
|
254 | QTest::newRow("firstBarSetRow beyond the size of model and correct lastBarSetRow") << m_modelRowCount << 1 << 0; | |
204 | QTest::newRow("firstBarSetRow beyond the size of model and invalid lastBarSetRow") << m_modelRowCount << -1 << 0; |
|
255 | QTest::newRow("firstBarSetRow beyond the size of model and invalid lastBarSetRow") << m_modelRowCount << -1 << 0; | |
205 | } |
|
256 | } | |
206 |
|
257 | |||
207 | void tst_qbarmodelmapper::horizontalMapper() |
|
258 | void tst_qbarmodelmapper::horizontalMapper() | |
208 | { |
|
259 | { | |
209 | QFETCH(int, firstBarSetRow); |
|
260 | QFETCH(int, firstBarSetRow); | |
210 | QFETCH(int, lastBarSetRow); |
|
261 | QFETCH(int, lastBarSetRow); | |
211 | QFETCH(int, expectedBarSetCount); |
|
262 | QFETCH(int, expectedBarSetCount); | |
212 |
|
263 | |||
213 | m_series = new QGroupedBarSeries; |
|
264 | m_series = new QGroupedBarSeries; | |
214 |
|
265 | |||
215 | QHBarModelMapper *mapper = new QHBarModelMapper; |
|
266 | QHBarModelMapper *mapper = new QHBarModelMapper; | |
216 | mapper->setFirstBarSetRow(firstBarSetRow); |
|
267 | mapper->setFirstBarSetRow(firstBarSetRow); | |
217 | mapper->setLastBarSetRow(lastBarSetRow); |
|
268 | mapper->setLastBarSetRow(lastBarSetRow); | |
218 | mapper->setModel(m_model); |
|
269 | mapper->setModel(m_model); | |
219 | mapper->setSeries(m_series); |
|
270 | mapper->setSeries(m_series); | |
220 |
|
271 | |||
221 | m_chart->addSeries(m_series); |
|
272 | m_chart->addSeries(m_series); | |
222 |
|
273 | |||
223 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); |
|
274 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); | |
224 | QCOMPARE(mapper->firstBarSetRow(), qMax(-1, firstBarSetRow)); |
|
275 | QCOMPARE(mapper->firstBarSetRow(), qMax(-1, firstBarSetRow)); | |
225 | QCOMPARE(mapper->lastBarSetRow(), qMax(-1, lastBarSetRow)); |
|
276 | QCOMPARE(mapper->lastBarSetRow(), qMax(-1, lastBarSetRow)); | |
226 |
|
277 | |||
227 | delete mapper; |
|
278 | delete mapper; | |
228 | mapper = 0; |
|
279 | mapper = 0; | |
229 | } |
|
280 | } | |
230 |
|
281 | |||
231 | void tst_qbarmodelmapper::horizontalMapperCustomMapping_data() |
|
282 | void tst_qbarmodelmapper::horizontalMapperCustomMapping_data() | |
232 | { |
|
283 | { | |
233 | QTest::addColumn<int>("first"); |
|
284 | QTest::addColumn<int>("first"); | |
234 | QTest::addColumn<int>("countLimit"); |
|
285 | QTest::addColumn<int>("countLimit"); | |
235 | QTest::addColumn<int>("expectedBarSetCount"); |
|
286 | QTest::addColumn<int>("expectedBarSetCount"); | |
236 | QTest::addColumn<int>("expectedCount"); |
|
287 | QTest::addColumn<int>("expectedCount"); | |
237 | QTest::newRow("first: 0, unlimited count") << 0 << -1 << 2 << m_modelColumnCount; |
|
288 | QTest::newRow("first: 0, unlimited count") << 0 << -1 << 2 << m_modelColumnCount; | |
238 | QTest::newRow("first: 3, unlimited count") << 3 << -1 << 2 << m_modelColumnCount - 3; |
|
289 | QTest::newRow("first: 3, unlimited count") << 3 << -1 << 2 << m_modelColumnCount - 3; | |
239 | QTest::newRow("first: 0, count: 5") << 0 << 5 << 2 << qMin(5, m_modelColumnCount); |
|
290 | QTest::newRow("first: 0, count: 5") << 0 << 5 << 2 << qMin(5, m_modelColumnCount); | |
240 | QTest::newRow("first: 3, count: 5") << 3 << 5 << 2 << qMin(5, m_modelColumnCount - 3); |
|
291 | QTest::newRow("first: 3, count: 5") << 3 << 5 << 2 << qMin(5, m_modelColumnCount - 3); | |
241 | QTest::newRow("first: +1 greater then the number of rows in the model, unlimited count") << m_modelColumnCount + 1 << -1 << 0 << 0; |
|
292 | QTest::newRow("first: +1 greater then the number of rows in the model, unlimited count") << m_modelColumnCount + 1 << -1 << 0 << 0; | |
242 | QTest::newRow("first: +1 greater then the number of rows in the model, count: 5") << m_modelColumnCount + 1 << 5 << 0 << 0; |
|
293 | QTest::newRow("first: +1 greater then the number of rows in the model, count: 5") << m_modelColumnCount + 1 << 5 << 0 << 0; | |
243 | QTest::newRow("first: 0, count: +3 greater than the number of rows in the model (should limit to the size of model)") << 0 << m_modelColumnCount + 3 << 2 << m_modelColumnCount; |
|
294 | QTest::newRow("first: 0, count: +3 greater than the number of rows in the model (should limit to the size of model)") << 0 << m_modelColumnCount + 3 << 2 << m_modelColumnCount; | |
244 | QTest::newRow("first: -3(invalid - should default to 0), unlimited count") << -3 << -1 << 2 << m_modelColumnCount; |
|
295 | QTest::newRow("first: -3(invalid - should default to 0), unlimited count") << -3 << -1 << 2 << m_modelColumnCount; | |
245 | QTest::newRow("first: 0, count: -3 (invalid - shlould default to -1)") << 0 << -3 << 2 << m_modelColumnCount; |
|
296 | QTest::newRow("first: 0, count: -3 (invalid - shlould default to -1)") << 0 << -3 << 2 << m_modelColumnCount; | |
246 | QTest::newRow("first: -3(invalid - should default to 0), count: -3 (invalid - shlould default to -1)") << -3 << -3 << 2 << m_modelColumnCount; |
|
297 | QTest::newRow("first: -3(invalid - should default to 0), count: -3 (invalid - shlould default to -1)") << -3 << -3 << 2 << m_modelColumnCount; | |
247 | } |
|
298 | } | |
248 |
|
299 | |||
249 | void tst_qbarmodelmapper::horizontalMapperCustomMapping() |
|
300 | void tst_qbarmodelmapper::horizontalMapperCustomMapping() | |
250 | { |
|
301 | { | |
251 | QFETCH(int, first); |
|
302 | QFETCH(int, first); | |
252 | QFETCH(int, countLimit); |
|
303 | QFETCH(int, countLimit); | |
253 | QFETCH(int, expectedBarSetCount); |
|
304 | QFETCH(int, expectedBarSetCount); | |
254 | QFETCH(int, expectedCount); |
|
305 | QFETCH(int, expectedCount); | |
255 |
|
306 | |||
256 | m_series = new QGroupedBarSeries; |
|
307 | m_series = new QGroupedBarSeries; | |
257 |
|
308 | |||
258 | QCOMPARE(m_series->barsetCount(), 0); |
|
309 | QCOMPARE(m_series->barsetCount(), 0); | |
259 |
|
310 | |||
260 | QHBarModelMapper *mapper = new QHBarModelMapper; |
|
311 | QHBarModelMapper *mapper = new QHBarModelMapper; | |
261 | mapper->setFirstBarSetRow(0); |
|
312 | mapper->setFirstBarSetRow(0); | |
262 | mapper->setLastBarSetRow(1); |
|
313 | mapper->setLastBarSetRow(1); | |
263 | mapper->setModel(m_model); |
|
314 | mapper->setModel(m_model); | |
264 | mapper->setSeries(m_series); |
|
315 | mapper->setSeries(m_series); | |
265 | mapper->setFirst(first); |
|
316 | mapper->setFirst(first); | |
266 | mapper->setCount(countLimit); |
|
317 | mapper->setCount(countLimit); | |
267 | m_chart->addSeries(m_series); |
|
318 | m_chart->addSeries(m_series); | |
268 |
|
319 | |||
269 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); |
|
320 | QCOMPARE(m_series->barsetCount(), expectedBarSetCount); | |
270 |
|
321 | |||
271 | if (expectedBarSetCount > 0) |
|
322 | if (expectedBarSetCount > 0) | |
272 | QCOMPARE(m_series->barSets().first()->count(), expectedCount); |
|
323 | QCOMPARE(m_series->barSets().first()->count(), expectedCount); | |
273 |
|
324 | |||
274 | // change values column mapping to invalid |
|
325 | // change values column mapping to invalid | |
275 | mapper->setFirstBarSetRow(-1); |
|
326 | mapper->setFirstBarSetRow(-1); | |
276 | mapper->setLastBarSetRow(1); |
|
327 | mapper->setLastBarSetRow(1); | |
277 |
|
328 | |||
278 | QCOMPARE(m_series->barsetCount(), 0); |
|
329 | QCOMPARE(m_series->barsetCount(), 0); | |
279 |
|
330 | |||
280 | delete mapper; |
|
331 | delete mapper; | |
281 | mapper = 0; |
|
332 | mapper = 0; | |
282 | } |
|
333 | } | |
283 |
|
334 | |||
|
335 | void tst_qbarmodelmapper::verticalModelInsertRows() | |||
|
336 | { | |||
|
337 | // setup the mapper | |||
|
338 | createVerticalMapper(); | |||
|
339 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
340 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount); | |||
|
341 | QVERIFY(m_vMapper->model() != 0); | |||
|
342 | ||||
|
343 | int insertCount = 4; | |||
|
344 | m_model->insertRows(3, insertCount); | |||
|
345 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
346 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount + insertCount); | |||
|
347 | ||||
|
348 | int first = 3; | |||
|
349 | m_vMapper->setFirst(3); | |||
|
350 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
351 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount + insertCount - first); | |||
|
352 | ||||
|
353 | m_model->insertRows(3, insertCount); | |||
|
354 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
355 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount + 2 * insertCount - first); | |||
|
356 | ||||
|
357 | int countLimit = 6; | |||
|
358 | m_vMapper->setCount(countLimit); | |||
|
359 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
360 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelRowCount + 2 * insertCount - first)); | |||
|
361 | ||||
|
362 | m_model->insertRows(3, insertCount); | |||
|
363 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
364 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelRowCount + 3 * insertCount - first)); | |||
|
365 | ||||
|
366 | m_vMapper->setFirst(0); | |||
|
367 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
368 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelRowCount + 3 * insertCount)); | |||
|
369 | ||||
|
370 | m_vMapper->setCount(-1); | |||
|
371 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
372 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount + 3 * insertCount); | |||
|
373 | } | |||
|
374 | ||||
|
375 | void tst_qbarmodelmapper::verticalModelRemoveRows() | |||
|
376 | { | |||
|
377 | // setup the mapper | |||
|
378 | createVerticalMapper(); | |||
|
379 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
380 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount); | |||
|
381 | QVERIFY(m_vMapper->model() != 0); | |||
|
382 | ||||
|
383 | int removeCount = 2; | |||
|
384 | m_model->removeRows(1, removeCount); | |||
|
385 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
386 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount - removeCount); | |||
|
387 | ||||
|
388 | int first = 1; | |||
|
389 | m_vMapper->setFirst(first); | |||
|
390 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
391 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount - removeCount - first); | |||
|
392 | ||||
|
393 | m_model->removeRows(1, removeCount); | |||
|
394 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
395 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount - 2 * removeCount - first); | |||
|
396 | ||||
|
397 | int countLimit = 3; | |||
|
398 | m_vMapper->setCount(countLimit); | |||
|
399 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
400 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelRowCount - 2 * removeCount - first)); | |||
|
401 | ||||
|
402 | m_model->removeRows(1, removeCount); | |||
|
403 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
404 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelRowCount - 3 * removeCount - first)); | |||
|
405 | ||||
|
406 | m_vMapper->setFirst(0); | |||
|
407 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
408 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelRowCount - 3 * removeCount)); | |||
|
409 | ||||
|
410 | m_vMapper->setCount(-1); | |||
|
411 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
412 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount - 3 * removeCount); | |||
|
413 | } | |||
|
414 | ||||
|
415 | void tst_qbarmodelmapper::verticalModelInsertColumns() | |||
|
416 | { | |||
|
417 | // setup the mapper | |||
|
418 | createVerticalMapper(); | |||
|
419 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
420 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount); | |||
|
421 | QVERIFY(m_vMapper->model() != 0); | |||
|
422 | ||||
|
423 | int insertCount = 4; | |||
|
424 | m_model->insertColumns(3, insertCount); | |||
|
425 | QCOMPARE(m_series->barsetCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1); | |||
|
426 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount); | |||
|
427 | } | |||
|
428 | ||||
|
429 | void tst_qbarmodelmapper::verticalModelRemoveColumns() | |||
|
430 | { | |||
|
431 | // setup the mapper | |||
|
432 | createVerticalMapper(); | |||
|
433 | QCOMPARE(m_series->barsetCount(), qMin(m_model->columnCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1)); | |||
|
434 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount); | |||
|
435 | QVERIFY(m_vMapper->model() != 0); | |||
|
436 | ||||
|
437 | int removeCount = m_modelColumnCount - 2; | |||
|
438 | m_model->removeColumns(0, removeCount); | |||
|
439 | QCOMPARE(m_series->barsetCount(), qMin(m_model->columnCount(), m_vMapper->lastBarSetColumn() - m_vMapper->firstBarSetColumn() + 1)); | |||
|
440 | QCOMPARE(m_series->barSets().first()->count(), m_modelRowCount); | |||
|
441 | ||||
|
442 | // leave all the columns | |||
|
443 | m_model->removeColumns(0, m_modelColumnCount - removeCount); | |||
|
444 | QCOMPARE(m_series->barsetCount(), 0); | |||
|
445 | } | |||
|
446 | ||||
|
447 | void tst_qbarmodelmapper::horizontalModelInsertRows() | |||
|
448 | { | |||
|
449 | // setup the mapper | |||
|
450 | createHorizontalMapper(); | |||
|
451 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
452 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount); | |||
|
453 | QVERIFY(m_hMapper->model() != 0); | |||
|
454 | ||||
|
455 | int insertCount = 4; | |||
|
456 | m_model->insertRows(3, insertCount); | |||
|
457 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
458 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount); | |||
|
459 | } | |||
|
460 | ||||
|
461 | void tst_qbarmodelmapper::horizontalModelRemoveRows() | |||
|
462 | { | |||
|
463 | // setup the mapper | |||
|
464 | createHorizontalMapper(); | |||
|
465 | QCOMPARE(m_series->barsetCount(), qMin(m_model->rowCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1)); | |||
|
466 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount); | |||
|
467 | QVERIFY(m_hMapper->model() != 0); | |||
|
468 | ||||
|
469 | int removeCount = m_modelRowCount - 2; | |||
|
470 | m_model->removeRows(0, removeCount); | |||
|
471 | QCOMPARE(m_series->barsetCount(), qMin(m_model->rowCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1)); | |||
|
472 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount); | |||
|
473 | ||||
|
474 | // leave all the columns | |||
|
475 | m_model->removeRows(0, m_modelRowCount - removeCount); | |||
|
476 | QCOMPARE(m_series->barsetCount(), 0); | |||
|
477 | } | |||
|
478 | ||||
|
479 | void tst_qbarmodelmapper::horizontalModelInsertColumns() | |||
|
480 | { | |||
|
481 | // setup the mapper | |||
|
482 | createHorizontalMapper(); | |||
|
483 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
484 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount); | |||
|
485 | QVERIFY(m_hMapper->model() != 0); | |||
|
486 | ||||
|
487 | int insertCount = 4; | |||
|
488 | m_model->insertColumns(3, insertCount); | |||
|
489 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
490 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount + insertCount); | |||
|
491 | ||||
|
492 | int first = 3; | |||
|
493 | m_hMapper->setFirst(3); | |||
|
494 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
495 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount + insertCount - first); | |||
|
496 | ||||
|
497 | m_model->insertColumns(3, insertCount); | |||
|
498 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
499 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount + 2 * insertCount - first); | |||
|
500 | ||||
|
501 | int countLimit = 6; | |||
|
502 | m_hMapper->setCount(countLimit); | |||
|
503 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
504 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelColumnCount + 2 * insertCount - first)); | |||
|
505 | ||||
|
506 | m_model->insertColumns(3, insertCount); | |||
|
507 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
508 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelColumnCount + 3 * insertCount - first)); | |||
|
509 | ||||
|
510 | m_hMapper->setFirst(0); | |||
|
511 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
512 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelColumnCount + 3 * insertCount)); | |||
|
513 | ||||
|
514 | m_hMapper->setCount(-1); | |||
|
515 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
516 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount + 3 * insertCount); | |||
|
517 | } | |||
|
518 | ||||
|
519 | void tst_qbarmodelmapper::horizontalModelRemoveColumns() | |||
|
520 | { | |||
|
521 | // setup the mapper | |||
|
522 | createHorizontalMapper(); | |||
|
523 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
524 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount); | |||
|
525 | QVERIFY(m_hMapper->model() != 0); | |||
|
526 | ||||
|
527 | int removeCount = 2; | |||
|
528 | m_model->removeColumns(1, removeCount); | |||
|
529 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
530 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount - removeCount); | |||
|
531 | ||||
|
532 | int first = 1; | |||
|
533 | m_hMapper->setFirst(first); | |||
|
534 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
535 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount - removeCount - first); | |||
|
536 | ||||
|
537 | m_model->removeColumns(1, removeCount); | |||
|
538 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
539 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount - 2 * removeCount - first); | |||
|
540 | ||||
|
541 | int countLimit = 3; | |||
|
542 | m_hMapper->setCount(countLimit); | |||
|
543 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
544 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelColumnCount - 2 * removeCount - first)); | |||
|
545 | ||||
|
546 | m_model->removeColumns(1, removeCount); | |||
|
547 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
548 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelColumnCount - 3 * removeCount - first)); | |||
|
549 | ||||
|
550 | m_hMapper->setFirst(0); | |||
|
551 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
552 | QCOMPARE(m_series->barSets().first()->count(), qMin(countLimit, m_modelColumnCount - 3 * removeCount)); | |||
|
553 | ||||
|
554 | m_hMapper->setCount(-1); | |||
|
555 | QCOMPARE(m_series->barsetCount(), m_hMapper->lastBarSetRow() - m_hMapper->firstBarSetRow() + 1); | |||
|
556 | QCOMPARE(m_series->barSets().first()->count(), m_modelColumnCount - 3 * removeCount); | |||
|
557 | } | |||
|
558 | ||||
|
559 | void tst_qbarmodelmapper::modelUpdateCell() | |||
|
560 | { | |||
|
561 | // setup the mapper | |||
|
562 | createVerticalMapper(); | |||
|
563 | ||||
|
564 | QVERIFY(m_model->setData(m_model->index(1, 0), 44)); | |||
|
565 | QCOMPARE(m_series->barSets().at(0)->at(1).y(), 44.0); | |||
|
566 | QCOMPARE(m_model->data(m_model->index(1, 0)).toReal(), 44.0); | |||
|
567 | } | |||
|
568 | ||||
284 | QTEST_MAIN(tst_qbarmodelmapper) |
|
569 | QTEST_MAIN(tst_qbarmodelmapper) | |
285 |
|
570 | |||
286 | #include "tst_qbarmodelmapper.moc" |
|
571 | #include "tst_qbarmodelmapper.moc" |
General Comments 0
You need to be logged in to leave comments.
Login now