Index: sitescripts/extensions/test/conftest.py |
=================================================================== |
--- a/sitescripts/extensions/test/conftest.py |
+++ b/sitescripts/extensions/test/conftest.py |
@@ -22,75 +22,91 @@ |
import pytest |
import py |
REPOS = { |
'adblockplus': ('metadata.gecko', '2.7.3'), |
'adblockplusie': ('README.txt', '1.33.7'), |
'adblockpluschrome': ('metadata.safari', '1.12.3'), |
'adblockplusandroid': ('AndroidManifest.xml', '1.3'), |
- 'adblockplusnightly': ('README.txt', '0.0') |
} |
@pytest.fixture(scope='session') |
def tests_dir(): |
"""Directory that contains this tests and the data files it uses.""" |
return py.path.local(__file__).dirpath() |
@pytest.fixture(scope='session') |
def data_dir(tests_dir): |
return tests_dir.join('data') |
+@pytest.fixture(scope='session') |
+def diff_dir(data_dir): |
+ return data_dir.join('diff') |
+ |
+ |
# Fixtures using the built in tmpdir fixture must be function scoped which |
# causes about a 30% slow down. It would be faster to use tmpdir_factory |
# which is session scoped but for no it is not important. |
-@pytest.fixture() |
-def keys_dir(tmpdir, tests_dir): |
- keys_dir = tmpdir.mkdir('keys') |
+@pytest.fixture(scope='session') |
+def keys_dir(tmpdir_factory, tests_dir): |
+ keys_dir = tmpdir_factory.mktemp('keys') |
key_filename = 'adblockplussafari.pem' |
tests_dir.join(key_filename).copy(keys_dir.join(key_filename)) |
return keys_dir |
def call_hg(cwd, *params): |
return subprocess.check_call(['hg'] + list(params), cwd=str(cwd)) |
-@pytest.fixture() |
-def hg_dir(tmpdir, data_dir): |
+def hg_import(repo_dir, diff_dir, repo): |
+ call_hg(repo_dir, 'import', str(diff_dir.join('{}0.diff'.format(repo))), |
Vasily Kuznetsov
2016/11/14 19:42:38
Couldn't we have both commits in the same file? If
Jon Sonesen
2016/11/15 15:40:25
Done.
|
+ str(diff_dir.join('{}1.diff'.format(repo))), '--exact') |
+ |
+ |
+@pytest.fixture(scope='session') |
+def hg_dir(tmpdir_factory, data_dir, diff_dir): |
"""Directory that contains the repository mocks.""" |
- hg_dir = tmpdir.mkdir('hg') |
+ hg_dir = tmpdir_factory.mktemp('hg') |
+ nightlydir = hg_dir.mkdir('adblockplusnightly') |
# Mock plugin repositories. |
for repo, config in REPOS.items(): |
filename, tag = config |
Vasily Kuznetsov
2016/11/14 19:42:38
We're not using `filename` and `tag` anymore, sinc
Jon Sonesen
2016/11/15 11:18:46
Agreed, this is a good method. Will use.
|
repo_dir = hg_dir.mkdir(repo) |
call_hg(repo_dir, 'init') |
- data_dir.join(filename).copy(repo_dir.join(filename)) |
- call_hg(repo_dir, 'add', filename) |
- call_hg(repo_dir, 'commit', '-m', '1') |
- call_hg(repo_dir, 'tag', tag) |
+ hg_import(repo_dir, diff_dir, repo) |
- call_hg(hg_dir.join('adblockplusnightly'), 'bookmark', 'safari') |
+ call_hg(nightlydir, 'init') |
+ call_hg(nightlydir, 'bookmark', 'master') |
Vasily Kuznetsov
2016/11/14 19:42:38
Bookmarks can also be in a file (called `<repo-nam
Jon Sonesen
2016/11/15 11:18:46
nice! Will do.
|
+ call_hg(nightlydir, 'bookmark', 'safari') |
+ hg_import(nightlydir, diff_dir, 'adblockplusnightly') |
# Mock the downloads repository. |
downloads_list = data_dir.join('downloads.list').read().splitlines() |
Vasily Kuznetsov
2016/11/14 19:42:38
The downloads repo could also be imported from the
Jon Sonesen
2016/11/15 11:18:46
Ack.
|
downloads_dir = hg_dir.mkdir('downloads') |
call_hg(downloads_dir, 'init') |
+ |
for item in downloads_list: |
downloads_dir.join(item).write('') |
call_hg(downloads_dir, 'add', *downloads_list) |
call_hg(downloads_dir, 'commit', '-m', 'ok') |
return hg_dir |
+@pytest.fixture(scope='session') |
Vasily Kuznetsov
2016/11/14 19:42:38
This fixture is only used by `test_createNightlies
Jon Sonesen
2016/11/15 11:18:46
Agreed.
|
+def nightlydir(hg_dir): |
+ return hg_dir.join('adblockplusnightly') |
+ |
+ |
@pytest.fixture() |
def config_ini(tests_dir, tmpdir, hg_dir, keys_dir): |
"""Sitescripts configuration.""" |
template = tests_dir.join('sitescripts.ini.template').read() |
conf = template.format(hg_dir=hg_dir, out_dir=tmpdir, keys_dir=keys_dir) |
config_ini = tmpdir.join('sitescripts.ini') |
config_ini.write(conf) |
return config_ini |