-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathtest_modeltest.py
398 lines (307 loc) · 11.8 KB
/
test_modeltest.py
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
import sys
import pytest
from pytestqt.qt_compat import qt_api
from pytestqt import modeltest
pytestmark = pytest.mark.usefixtures("qtbot")
class BasicModel(qt_api.QtCore.QAbstractItemModel):
def data(self, index, role=qt_api.QtCore.Qt.ItemDataRole.DisplayRole):
return None
def rowCount(self, parent=qt_api.QtCore.QModelIndex()):
return 0
def columnCount(self, parent=qt_api.QtCore.QModelIndex()):
return 0
def index(self, row, column, parent=qt_api.QtCore.QModelIndex()):
return qt_api.QtCore.QModelIndex()
def parent(self, index):
return qt_api.QtCore.QModelIndex()
def test_standard_item_model(qtmodeltester):
"""
Basic test which uses qtmodeltester with a qt_api.QtGui.QStandardItemModel.
"""
model = qt_api.QtGui.QStandardItemModel()
items = [qt_api.QtGui.QStandardItem(str(i)) for i in range(6)]
model.setItem(0, 0, items[0])
model.setItem(0, 1, items[1])
model.setItem(1, 0, items[2])
model.setItem(1, 1, items[3])
items[0].setChild(0, items[4])
items[4].setChild(0, items[5])
qtmodeltester.check(model, force_py=True)
def test_string_list_model(qtmodeltester):
model = qt_api.QtCore.QStringListModel()
model.setStringList(["hello", "world"])
qtmodeltester.check(model, force_py=True)
def test_sort_filter_proxy_model(qtmodeltester):
model = qt_api.QtCore.QStringListModel()
model.setStringList(["hello", "world"])
proxy = qt_api.QtCore.QSortFilterProxyModel()
proxy.setSourceModel(model)
qtmodeltester.check(proxy, force_py=True)
def test_standard_item_model_zero_columns(qtmodeltester):
model = qt_api.QtGui.QStandardItemModel()
qtmodeltester.check(model, force_py=True)
# QTBUG-92220
model.insertRows(0, 5)
model.removeRows(0, 5)
# QTBUG-92886
model.insertRows(0, 5)
model.removeRows(1, 2)
parent_index = model.index(0, 0)
model.insertRows(0, 5, parent_index)
model.insertRows(1, 2, parent_index)
@pytest.mark.parametrize(
"broken_role",
[
qt_api.QtCore.Qt.ItemDataRole.ToolTipRole,
qt_api.QtCore.Qt.ItemDataRole.StatusTipRole,
qt_api.QtCore.Qt.ItemDataRole.WhatsThisRole,
qt_api.QtCore.Qt.ItemDataRole.SizeHintRole,
qt_api.QtCore.Qt.ItemDataRole.FontRole,
qt_api.QtCore.Qt.ItemDataRole.BackgroundRole,
qt_api.QtCore.Qt.ItemDataRole.ForegroundRole,
qt_api.QtCore.Qt.ItemDataRole.TextAlignmentRole,
qt_api.QtCore.Qt.ItemDataRole.CheckStateRole,
],
)
def test_broken_types(check_model, broken_role):
"""
Check that qtmodeltester correctly captures data() returning invalid
values for various display roles.
"""
class BrokenTypeModel(qt_api.QtCore.QAbstractListModel):
def rowCount(self, parent=qt_api.QtCore.QModelIndex()):
if parent == qt_api.QtCore.QModelIndex():
return 1
else:
return 0
def data(
self,
index=qt_api.QtCore.QModelIndex(),
role=qt_api.QtCore.Qt.ItemDataRole.DisplayRole,
):
if role == broken_role:
return object() # This will fail the type check for any role
else:
return None
check_model(BrokenTypeModel(), should_pass=False)
xfail_py311_pyside2 = pytest.mark.xfail(
sys.version_info[:2] == (3, 11) and qt_api.QT_API == "pyside2",
reason="Fails to OR mask flags",
)
@pytest.mark.parametrize(
"role_value, should_pass",
[
pytest.param(
qt_api.QtCore.Qt.AlignmentFlag.AlignLeft, True, marks=xfail_py311_pyside2
),
pytest.param(
qt_api.QtCore.Qt.AlignmentFlag.AlignRight, True, marks=xfail_py311_pyside2
),
pytest.param(0xFFFFFF, False, marks=xfail_py311_pyside2),
("foo", False),
(object(), False),
],
)
def test_data_alignment(role_value, should_pass, check_model):
"""Test a custom model which returns a good and alignments from data().
qtmodeltest should capture this problem and fail when that happens.
"""
class MyModel(qt_api.QtCore.QAbstractListModel):
def rowCount(self, parent=qt_api.QtCore.QModelIndex()):
return 1 if parent == qt_api.QtCore.QModelIndex() else 0
def data(
self,
index=qt_api.QtCore.QModelIndex(),
role=qt_api.QtCore.Qt.ItemDataRole.DisplayRole,
):
if role == qt_api.QtCore.Qt.ItemDataRole.TextAlignmentRole:
return role_value
elif role == qt_api.QtCore.Qt.ItemDataRole.DisplayRole:
if index == self.index(0, 0):
return "Hello"
return None
check_model(MyModel(), should_pass=should_pass)
def test_header_handling(check_model):
class MyModel(qt_api.QtCore.QAbstractListModel):
def rowCount(self, parent=qt_api.QtCore.QModelIndex()):
return 1 if parent == qt_api.QtCore.QModelIndex() else 0
def set_header_text(self, header):
self._header_text = header
self.headerDataChanged.emit(qt_api.QtCore.Qt.Orientation.Vertical, 0, 0)
self.headerDataChanged.emit(qt_api.QtCore.Qt.Orientation.Horizontal, 0, 0)
def headerData(
self, section, orientation, role=qt_api.QtCore.Qt.ItemDataRole.DisplayRole
):
return self._header_text
def data(
self,
index=qt_api.QtCore.QModelIndex(),
role=qt_api.QtCore.Qt.ItemDataRole.DisplayRole,
):
if (
role == qt_api.QtCore.Qt.ItemDataRole.DisplayRole
and index == self.index(0, 0)
):
return "Contents"
return None
model = MyModel()
model.set_header_text("Start Header")
check_model(model, should_pass=True)
model.set_header_text("New Header")
@pytest.fixture
def check_model(qtmodeltester):
"""
Return a check_model(model, should_pass=True) function that uses
qtmodeltester to check if the model is OK or not according to the
``should_pass`` parameter.
"""
def check(model, should_pass=True):
if should_pass:
qtmodeltester.check(model, force_py=True)
else:
with pytest.raises(AssertionError):
qtmodeltester.check(model, force_py=True)
return check
def test_invalid_column_count(qtmodeltester):
"""Basic check with an invalid model."""
class Model(BasicModel):
def columnCount(self, parent=qt_api.QtCore.QModelIndex()):
return -1
model = Model()
with pytest.raises(AssertionError):
qtmodeltester.check(model, force_py=True)
def test_changing_model_insert(qtmodeltester):
model = qt_api.QtGui.QStandardItemModel()
item = qt_api.QtGui.QStandardItem("foo")
qtmodeltester.check(model, force_py=True)
model.insertRow(0, item)
def test_changing_model_remove(qtmodeltester):
model = qt_api.QtGui.QStandardItemModel()
item = qt_api.QtGui.QStandardItem("foo")
model.setItem(0, 0, item)
qtmodeltester.check(model, force_py=True)
model.removeRow(0)
def test_changing_model_data(qtmodeltester):
model = qt_api.QtGui.QStandardItemModel()
item = qt_api.QtGui.QStandardItem("foo")
model.setItem(0, 0, item)
qtmodeltester.check(model, force_py=True)
model.setData(model.index(0, 0), "hello world")
@pytest.mark.parametrize(
"orientation",
[qt_api.QtCore.Qt.Orientation.Horizontal, qt_api.QtCore.Qt.Orientation.Vertical],
)
def test_changing_model_header_data(qtmodeltester, orientation):
model = qt_api.QtGui.QStandardItemModel()
item = qt_api.QtGui.QStandardItem("foo")
model.setItem(0, 0, item)
qtmodeltester.check(model, force_py=True)
model.setHeaderData(0, orientation, "blah")
def test_changing_model_sort(qtmodeltester):
"""Sorting emits layoutChanged"""
model = qt_api.QtGui.QStandardItemModel()
item = qt_api.QtGui.QStandardItem("foo")
model.setItem(0, 0, item)
qtmodeltester.check(model, force_py=True)
model.sort(0)
def test_nop(qtmodeltester):
"""We should not get a crash on cleanup with no model."""
def test_overridden_methods(qtmodeltester):
"""Make sure overridden methods of a model are actually run.
With a previous implementation of the modeltester using sip.cast, the custom
implementations did never actually run.
"""
class Model(BasicModel):
def __init__(self, parent=None):
super().__init__(parent)
self.row_count_did_run = False
def rowCount(self, parent=None):
self.row_count_did_run = True
return 0
model = Model()
assert not model.row_count_did_run
qtmodeltester.check(model, force_py=True)
assert model.row_count_did_run
def test_fetch_more(qtmodeltester):
class Model(qt_api.QtGui.QStandardItemModel):
def canFetchMore(self, parent):
return True
def fetchMore(self, parent):
"""Force a re-check while fetching more."""
self.setData(self.index(0, 0), "bar")
model = Model()
item = qt_api.QtGui.QStandardItem("foo")
model.setItem(0, 0, item)
qtmodeltester.check(model, force_py=True)
def test_invalid_parent(qtmodeltester):
class Model(qt_api.QtGui.QStandardItemModel):
def parent(self, index):
if index == self.index(0, 0, parent=self.index(0, 0)):
return self.index(0, 0)
else:
return qt_api.QtCore.QModelIndex()
model = Model()
item = qt_api.QtGui.QStandardItem("foo")
item2 = qt_api.QtGui.QStandardItem("bar")
item3 = qt_api.QtGui.QStandardItem("bar")
model.setItem(0, 0, item)
item.setChild(0, item2)
item2.setChild(0, item3)
with pytest.raises(AssertionError):
qtmodeltester.check(model, force_py=True)
@pytest.mark.skipif(not modeltest.HAS_QT_TESTER, reason="No Qt modeltester available")
def test_qt_tester_valid(testdir):
testdir.makepyfile(
"""
from pytestqt.qt_compat import qt_api
from pytestqt import modeltest
assert modeltest.HAS_QT_TESTER
def test_ok(qtmodeltester):
model = qt_api.QtGui.QStandardItemModel()
qtmodeltester.check(model)
"""
)
res = testdir.inline_run()
res.assertoutcome(passed=1, failed=0)
@pytest.mark.skipif(not modeltest.HAS_QT_TESTER, reason="No Qt modeltester available")
def test_qt_tester_invalid(testdir):
testdir.makeini(
"""
[pytest]
qt_log_level_fail = NO
"""
)
testdir.makepyfile(
"""
from pytestqt.qt_compat import qt_api
from pytestqt import modeltest
assert modeltest.HAS_QT_TESTER
class Model(qt_api.QtCore.QAbstractItemModel):
def data(self, index, role=qt_api.QtCore.Qt.ItemDataRole.DisplayRole):
return None
def rowCount(self, parent=qt_api.QtCore.QModelIndex()):
return 0
def columnCount(self, parent=qt_api.QtCore.QModelIndex()):
return -1
def index(self, row, column, parent=qt_api.QtCore.QModelIndex()):
return qt_api.QtCore.QModelIndex()
def parent(self, index):
return qt_api.QtCore.QModelIndex()
def test_ok(qtmodeltester):
model = Model()
qtmodeltester.check(model)
"""
)
res = testdir.runpytest()
res.stdout.fnmatch_lines(
[
"*__ test_ok __*",
"test_qt_tester_invalid.py:*: Qt modeltester errors",
"*-- Captured Qt messages --*",
"*QtWarningMsg: FAIL! model->columnCount(QModelIndex()) >= 0 () returned FALSE "
"(*qabstractitemmodeltester.cpp:*)",
"*-- Captured stdout call --*",
"modeltest: Using Qt C++ tester",
"*== 1 failed in * ==*",
]
)