| 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-present eyeo GmbH | 2 # Copyright (C) 2006-present 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 """ | 16 """ |
| 17 Contains fixtures that are useful across test scripts for the extensions module | 17 Contains fixtures that are useful across test scripts for the extensions module |
| 18 """ | 18 """ |
| 19 | 19 |
| 20 import subprocess | 20 import subprocess |
| 21 | 21 |
| 22 import pytest | 22 import pytest |
| 23 import py | 23 import py |
| 24 | 24 |
| 25 | 25 |
| 26 @pytest.fixture(scope='session') | 26 @pytest.fixture(scope='session') |
| 27 def tests_dir(): | 27 def tests_dir(): |
| 28 """Directory that contains this tests and the data files it uses.""" | 28 """Directory that contains this tests and the data files it uses.""" |
| 29 return py.path.local(__file__).dirpath() | 29 return py.path.local('sitescripts/extensions/test/') |
|
Vasily Kuznetsov
2018/11/14 16:34:40
I think it's better to use the approach based on _
Tudor Avram
2018/11/14 17:00:19
Done.
| |
| 30 | 30 |
| 31 | 31 |
| 32 @pytest.fixture(scope='session') | 32 @pytest.fixture(scope='session') |
| 33 def data_dir(tests_dir): | 33 def data_dir(tests_dir): |
| 34 return tests_dir.join('data') | 34 return tests_dir.join('data') |
| 35 | 35 |
| 36 | 36 |
| 37 @pytest.fixture(scope='session') | 37 @pytest.fixture(scope='session') |
| 38 def diff_dir(data_dir): | 38 def diff_dir(data_dir): |
| 39 return data_dir.join('diff') | 39 return data_dir.join('diff') |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 | 75 |
| 76 | 76 |
| 77 @pytest.fixture() | 77 @pytest.fixture() |
| 78 def config_ini(tests_dir, tmpdir, hg_dir, keys_dir): | 78 def config_ini(tests_dir, tmpdir, hg_dir, keys_dir): |
| 79 """Sitescripts configuration.""" | 79 """Sitescripts configuration.""" |
| 80 template = tests_dir.join('sitescripts.ini.template').read() | 80 template = tests_dir.join('sitescripts.ini.template').read() |
| 81 conf = template.format(hg_dir=hg_dir, out_dir=tmpdir, keys_dir=keys_dir) | 81 conf = template.format(hg_dir=hg_dir, out_dir=tmpdir, keys_dir=keys_dir) |
| 82 config_ini = tmpdir.join('sitescripts.ini') | 82 config_ini = tmpdir.join('sitescripts.ini') |
| 83 config_ini.write(conf) | 83 config_ini.write(conf) |
| 84 return config_ini | 84 return config_ini |
| OLD | NEW |