-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_repo_synchronizer.py
60 lines (51 loc) · 1.66 KB
/
test_repo_synchronizer.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
import pytest
from git_hg_sync.__main__ import get_connection, get_queue
from git_hg_sync.config import MappingConfig, PulseConfig
from git_hg_sync.repo_synchronizer import Push, RepoSynchronyzer
@pytest.fixture
def pulse_config():
return PulseConfig(
**{
"userid": "test_user",
"host": "pulse.mozilla.org",
"port": 5671,
"exchange": "exchange/test_user/test",
"routing_key": "#",
"queue": "queue/test_user/test",
"password": "PULSE_PASSWORD",
}
)
@pytest.fixture
def mappings():
return {
"myrepo": MappingConfig(
**{
"git_repository": "myforge/myrepo.git",
"rules": {
"rule1": {
"branch_pattern": "branch_name",
"mercurial_repository": "myforge/myhgrepo",
}
},
}
)
}
def test_sync_process_with_bad_repo(tmp_path, mappings):
syncrepos = RepoSynchronyzer(tmp_path / "clones", mappings)
syncrepos.sync(
Push(
repo_url="repo_url",
branches={"branch1": "anothercommitsha"},
time=0,
pushid=0,
user="user",
push_json_url="push_json_url",
)
)
# TODO finish that test (check that warning was triggered)
def test_get_connection_and_queue(pulse_config):
connection = get_connection(pulse_config)
queue = get_queue(pulse_config)
assert connection.userid == pulse_config.userid
assert connection.host == f"{pulse_config.host}:{pulse_config.port}"
assert queue.name == pulse_config.queue