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 import os | |
16 from subprocess import CalledProcessError | |
15 | 17 |
16 """Tests for create nightlies script.""" | |
17 import pytest | 18 import pytest |
18 | 19 |
19 from sitescripts.extensions.bin import createNightlies | 20 from sitescripts.extensions.bin import createNightlies |
20 from sitescripts.utils import get_config | 21 from sitescripts.utils import get_config |
21 | 22 |
22 | 23 |
23 @pytest.fixture() | 24 @pytest.fixture(scope='session') |
24 def config(hg_dir): | 25 def nightlydir(hg_dir): |
26 return hg_dir.join('adblockplusnightly') | |
27 | |
28 | |
29 @pytest.fixture(scope='session') | |
30 def config(hg_dir, nightlydir): | |
31 """Set and return config obj for NightlyBuild""" | |
25 config = get_config() | 32 config = get_config() |
26 config.type = 'safari' | 33 config.type = 'safari' |
27 config.repository = str(hg_dir.join('adblockplusnightly')) | |
28 config.revision = 'safari' | 34 config.revision = 'safari' |
35 config.repositoryName = 'adblockplusnightly' | |
36 config.repository = nightlydir.strpath | |
29 return config | 37 return config |
30 | 38 |
31 | 39 |
32 @pytest.fixture() | 40 @pytest.fixture(scope='session') |
33 def nightlybuild(config): | 41 def nightlybuild(config): |
34 return createNightlies.NightlyBuild(config) | 42 return createNightlies.NightlyBuild(config) |
35 | 43 |
36 | 44 |
37 def test_nightly_object_bookmark(nightlybuild): | 45 def test_nightly_object_bookmark(nightlybuild): |
38 assert nightlybuild.config.revision == 'safari' | 46 assert nightlybuild.config.revision == 'safari' |
47 | |
48 | |
49 def test_current_revision(nightlybuild): | |
50 # This inline hash is for the expected revision of the safari bookmark rev | |
Vasily Kuznetsov
2016/11/21 12:21:45
I think this comment could be improved a bit. We s
Jon Sonesen
2016/11/21 17:00:07
Done.
| |
51 assert nightlybuild.revision == '1291590ddd0f' | |
52 | |
53 | |
54 def test_copy_repository(nightlybuild, nightlydir): | |
55 nightlybuild.copyRepository() | |
56 assert os.listdir(nightlybuild.tempdir) == ['.hg', 'README.txt'] | |
57 | |
58 | |
59 def test_get_changes(nightlybuild, nightlydir): | |
60 # The bookmark 'safari' contains only 2 revisions | |
61 # default contains 51 so here we ensure that erroneous changes | |
62 # are not returned | |
63 for change in nightlybuild.getChanges(): | |
64 assert change['revision'] < '2' | |
65 | |
66 nightlybuild.config.revision = 'default' | |
67 for change in nightlybuild.getChanges(): | |
68 assert change['revision'] > '1' | |
69 | |
70 | |
71 def test_missing_bookmark(config): | |
72 config.revision = 'foo' | |
73 config.type = 'type' | |
74 try: | |
75 createNightlies.NightlyBuild(config) | |
76 except CalledProcessError as e: | |
77 assert e.returncode == 255 | |
OLD | NEW |