Left: | ||
Right: |
OLD | NEW |
---|---|
1 # This file is part of the Adblock Plus web scripts, | 1 # This file is part of the Adblock Plus web scripts, |
2 # Copyright (C) 2006-2016 Eyeo GmbH | 2 # Copyright (C) 2006-2016 Eyeo GmbH |
3 # | 3 # |
4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
7 # | 7 # |
8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
12 # | 12 # |
13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 |
16 """Tests for create nightlies script.""" | 16 """Tests for create nightlies script.""" |
17 import subprocess | |
17 import pytest | 18 import pytest |
19 import os | |
Sebastian Noack
2016/11/07 16:24:41
As per PEP-8, corelib imports are supposed to go a
Jon Sonesen
2016/11/08 17:29:45
Acknowledged.
| |
18 | 20 |
19 from sitescripts.extensions.bin import createNightlies | 21 from sitescripts.extensions.bin import createNightlies |
20 from sitescripts.utils import get_config | 22 from sitescripts.utils import get_config |
21 | 23 |
22 | 24 |
23 @pytest.fixture() | 25 @pytest.fixture(scope='session') |
24 def config(hg_dir): | 26 def config(hg_dir): |
27 """Set and return config obj for NightlyBuild""" | |
25 config = get_config() | 28 config = get_config() |
26 config.type = 'safari' | 29 config.type = 'safari' |
27 config.repository = str(hg_dir.join('adblockplusnightly')) | |
28 config.revision = 'safari' | 30 config.revision = 'safari' |
31 config.repositoryName = 'adblockplusnightly' | |
32 config.repository = hg_dir.join('adblockplusnightly').strpath | |
Jon Sonesen
2016/11/04 15:11:55
I prefer to use strpath rather than the explicit c
Vasily Kuznetsov
2016/11/07 14:53:21
I'm not sure which way is preferable to be honest.
Jon Sonesen
2016/11/08 17:29:45
Yeah I spent some time trying to research it but d
| |
29 return config | 33 return config |
30 | 34 |
31 | 35 |
32 @pytest.fixture() | 36 @pytest.fixture(scope='session') |
33 def nightlybuild(config): | 37 def nightlybuild(config): |
34 return createNightlies.NightlyBuild(config) | 38 return createNightlies.NightlyBuild(config) |
35 | 39 |
36 | 40 |
41 @pytest.fixture(scope='session') | |
42 def nightlydir(hg_dir): | |
43 return hg_dir.join('adblockplusnightly') | |
44 | |
45 | |
46 @pytest.fixture(scope='session') | |
47 def current_revision(nightlydir): | |
48 command = [ | |
49 'hg', 'id', '-R', nightlydir.strpath, '-i', '-r', 'ancestors(safari)'] | |
Sebastian Noack
2016/11/07 16:24:41
The brackets look somewhat misplaced. I'm frankly
Vasily Kuznetsov
2016/11/07 17:11:00
PEP-8 actually allows this style (that's why flake
Jon Sonesen
2016/11/08 17:29:45
Acknowledged.
Also I can open a ticket to add thi
| |
50 | |
51 return subprocess.check_output(command).strip() | |
Jon Sonesen
2016/11/04 15:11:55
Personally, I don't like this approach. It seems t
Vasily Kuznetsov
2016/11/07 14:53:21
Sounds good, that would be an improvement.
Jon Sonesen
2016/11/08 17:29:45
Acknowledged.
| |
52 | |
53 | |
37 def test_nightly_object_bookmark(nightlybuild): | 54 def test_nightly_object_bookmark(nightlybuild): |
38 assert nightlybuild.config.revision == 'safari' | 55 assert nightlybuild.config.revision == 'safari' |
56 | |
57 | |
58 def test_current_revision(current_revision, nightlybuild): | |
59 assert nightlybuild.revision == current_revision | |
60 | |
61 | |
62 def test_copy_repository(nightlybuild, nightlydir): | |
63 nightlybuild.copyRepository() | |
64 assert os.listdir(nightlybuild.tempdir) == os.listdir(nightlydir.strpath) | |
Jon Sonesen
2016/11/04 15:11:55
an alternative approach...or maybe even just anoth
Vasily Kuznetsov
2016/11/07 14:53:21
So which behavior would we be testing with this?
Jon Sonesen
2016/11/08 17:29:45
copyRepository copies the specific bookmark to bui
| |
OLD | NEW |