forked from wolph/python-progressbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_end.py
More file actions
56 lines (39 loc) · 1.08 KB
/
test_end.py
File metadata and controls
56 lines (39 loc) · 1.08 KB
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
import pytest
import progressbar
@pytest.fixture(autouse=True)
def large_interval(monkeypatch) -> None:
# Remove the update limit for tests by default
monkeypatch.setattr(
progressbar.ProgressBar,
'_MINIMUM_UPDATE_INTERVAL',
0.1,
)
def test_end() -> None:
m = 24514315
p = progressbar.ProgressBar(
widgets=[progressbar.Percentage(), progressbar.Bar()],
max_value=m,
)
for x in range(0, m, 8192):
p.update(x)
data = p.data()
assert data['percentage'] < 100.0
p.finish()
data = p.data()
assert data['percentage'] >= 100.0
assert p.value == m
def test_end_100(monkeypatch) -> None:
assert progressbar.ProgressBar._MINIMUM_UPDATE_INTERVAL == 0.1
p = progressbar.ProgressBar(
widgets=[progressbar.Percentage(), progressbar.Bar()],
max_value=103,
)
for x in range(102):
p.update(x)
data = p.data()
import pprint
pprint.pprint(data)
assert data['percentage'] < 100.0
p.finish()
data = p.data()
assert data['percentage'] >= 100.0