fixture.py
85 lines
| 3.0 KiB
| text/x-python
|
PythonLexer
r130 | # RhodeCode VCSServer provides access to different vcs backends via network. | |||
r1126 | # Copyright (C) 2014-2023 RhodeCode GmbH | |||
r130 | # | |||
# This program is free software; you can redistribute it and/or modify | ||||
# it under the terms of the GNU General Public License as published by | ||||
# the Free Software Foundation; either version 3 of the License, or | ||||
# (at your option) any later version. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU General Public License | ||||
# along with this program; if not, write to the Free Software Foundation, | ||||
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||||
import os | ||||
import shutil | ||||
import tempfile | ||||
r1065 | import configparser | |||
r130 | ||||
r1152 | class ContextINI: | |||
r130 | """ | |||
Allows to create a new test.ini file as a copy of existing one with edited | ||||
data. If existing file is not present, it creates a new one. Example usage:: | ||||
with TestINI('test.ini', [{'section': {'key': 'val'}}]) as new_test_ini_path: | ||||
print 'vcsserver --config=%s' % new_test_ini | ||||
""" | ||||
def __init__(self, ini_file_path, ini_params, new_file_prefix=None, | ||||
destroy=True): | ||||
self.ini_file_path = ini_file_path | ||||
self.ini_params = ini_params | ||||
self.new_path = None | ||||
self.new_path_prefix = new_file_prefix or 'test' | ||||
self.destroy = destroy | ||||
def __enter__(self): | ||||
_, pref = tempfile.mkstemp() | ||||
loc = tempfile.gettempdir() | ||||
self.new_path = os.path.join(loc, '{}_{}_{}'.format( | ||||
pref, self.new_path_prefix, self.ini_file_path)) | ||||
# copy ini file and modify according to the params, if we re-use a file | ||||
if os.path.isfile(self.ini_file_path): | ||||
shutil.copy(self.ini_file_path, self.new_path) | ||||
else: | ||||
# create new dump file for configObj to write to. | ||||
with open(self.new_path, 'wb'): | ||||
pass | ||||
r1065 | parser = configparser.ConfigParser() | |||
parser.read(self.ini_file_path) | ||||
r130 | ||||
for data in self.ini_params: | ||||
r1054 | section, ini_params = list(data.items())[0] | |||
key, val = list(ini_params.items())[0] | ||||
r1065 | if section not in parser: | |||
parser[section] = {} | ||||
parser[section][key] = val | ||||
with open(self.ini_file_path, 'w') as f: | ||||
parser.write(f) | ||||
r130 | return self.new_path | |||
def __exit__(self, exc_type, exc_val, exc_tb): | ||||
if self.destroy: | ||||
os.remove(self.new_path) | ||||
r407 | ||||
def no_newline_id_generator(test_name): | ||||
""" | ||||
Generates a test name without spaces or newlines characters. Used for | ||||
nicer output of progress of test | ||||
""" | ||||
org_name = test_name | ||||
r555 | test_name = str(test_name)\ | |||
r407 | .replace('\n', '_N') \ | |||
.replace('\r', '_N') \ | ||||
.replace('\t', '_T') \ | ||||
.replace(' ', '_S') | ||||
return test_name or 'test-with-empty-name' | ||||