-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_pulse_worker.py
41 lines (32 loc) · 1004 Bytes
/
test_pulse_worker.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
import pytest
from git_hg_sync.pulse_worker import EntityTypeError, PulseWorker
from git_hg_sync.repo_synchronizer import Push, Tag
def raw_push_entity():
return {
"type": "push",
"repo_url": "repo_url",
"branches": {"mybranch": "acommitsha"},
"time": 0,
"pushid": 0,
"user": "user",
"push_json_url": "push_json_url",
}
def raw_tag_entity():
return {
"type": "tag",
"repo_url": "repo_url",
"tag": "tag",
"commit": "commit",
"time": 0,
"pushid": 0,
"user": "user",
"push_json_url": "push_json_url",
}
def test_parse_entity_valid():
push_entity = PulseWorker.parse_entity(raw_push_entity())
assert isinstance(push_entity, Push)
tag_entity = PulseWorker.parse_entity(raw_tag_entity())
assert isinstance(tag_entity, Tag)
def test_parse_invalid_type():
with pytest.raises(EntityTypeError):
PulseWorker.parse_entity({"type": "unknown"})