-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathtest_utils.py
94 lines (69 loc) · 2.16 KB
/
test_utils.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
# Copyright 2017 Palantir Technologies, Inc.
import time
import mock
from flaky import flaky
from pyls import _utils
@flaky
def test_debounce():
interval = 0.1
obj = mock.Mock()
@_utils.debounce(0.1)
def call_m():
obj()
assert not obj.mock_calls
call_m()
call_m()
call_m()
assert not obj.mock_calls
time.sleep(interval * 2)
assert len(obj.mock_calls) == 1
call_m()
time.sleep(interval * 2)
assert len(obj.mock_calls) == 2
@flaky
def test_debounce_keyed_by():
interval = 0.1
obj = mock.Mock()
@_utils.debounce(0.1, keyed_by='key')
def call_m(key):
obj(key)
assert not obj.mock_calls
call_m(1)
call_m(2)
call_m(3)
assert not obj.mock_calls
time.sleep(interval * 2)
obj.assert_has_calls([
mock.call(1),
mock.call(2),
mock.call(3),
], any_order=True)
assert len(obj.mock_calls) == 3
call_m(1)
call_m(1)
call_m(1)
time.sleep(interval * 2)
assert len(obj.mock_calls) == 4
def test_list_to_string():
assert _utils.list_to_string("string") == "string"
assert _utils.list_to_string(["a", "r", "r", "a", "y"]) == "a,r,r,a,y"
def test_find_parents(tmpdir):
subsubdir = tmpdir.ensure_dir("subdir", "subsubdir")
path = subsubdir.ensure("path.py")
test_cfg = tmpdir.ensure("test.cfg")
assert _utils.find_parents(tmpdir.strpath, path.strpath, ["test.cfg"]) == [test_cfg.strpath]
def test_merge_dicts():
assert _utils.merge_dicts(
{'a': True, 'b': {'x': 123, 'y': {'hello': 'world'}}},
{'a': False, 'b': {'y': [], 'z': 987}}
) == {'a': False, 'b': {'x': 123, 'y': [], 'z': 987}}
def test_clip_column():
assert _utils.clip_column(0, [], 0) == 0
assert _utils.clip_column(2, ['123'], 0) == 2
assert _utils.clip_column(3, ['123'], 0) == 3
assert _utils.clip_column(5, ['123'], 0) == 3
assert _utils.clip_column(0, ['\n', '123'], 0) == 0
assert _utils.clip_column(1, ['\n', '123'], 0) == 0
assert _utils.clip_column(2, ['123\n', '123'], 0) == 2
assert _utils.clip_column(3, ['123\n', '123'], 0) == 3
assert _utils.clip_column(4, ['123\n', '123'], 1) == 3