2018-07-11 12:50:42 +00:00
|
|
|
"""Testing Utilities
|
|
|
|
|
|
|
|
This module holds values/functions common to multiple tests.
|
|
|
|
"""
|
|
|
|
|
2019-10-01 13:12:18 +00:00
|
|
|
import re
|
2018-07-11 12:50:42 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
ALT_FILE1 = 'test_alt'
|
|
|
|
ALT_FILE2 = 'test alt/test alt'
|
2019-04-04 23:01:27 +00:00
|
|
|
ALT_DIR = 'test alt/test alt dir'
|
|
|
|
|
|
|
|
# Directory based alternates must have a tracked contained file.
|
|
|
|
# This will be the test contained file name
|
|
|
|
CONTAINED = 'contained_file'
|
2018-07-11 12:50:42 +00:00
|
|
|
|
2019-04-12 12:43:18 +00:00
|
|
|
# These variables are used for making include files which will be processed
|
|
|
|
# within jinja templates
|
|
|
|
INCLUDE_FILE = 'inc_file'
|
|
|
|
INCLUDE_DIRS = ['', 'test alt']
|
|
|
|
INCLUDE_CONTENT = '8780846c02e34c930d0afd127906668f'
|
|
|
|
|
2018-07-11 12:50:42 +00:00
|
|
|
|
|
|
|
def set_local(paths, variable, value):
|
|
|
|
"""Set local override"""
|
|
|
|
os.system(
|
|
|
|
f'GIT_DIR={str(paths.repo)} '
|
|
|
|
f'git config --local "local.{variable}" "{value}"'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def create_alt_files(paths, suffix,
|
|
|
|
preserve=False, tracked=True,
|
|
|
|
encrypt=False, exclude=False,
|
2019-04-12 12:43:18 +00:00
|
|
|
content=None, includefile=False):
|
2018-07-11 12:50:42 +00:00
|
|
|
"""Create new files, and add to the repo
|
|
|
|
|
|
|
|
This is used for testing alternate files. In each case, a suffix is
|
|
|
|
appended to two standard file paths. Particulars of the file creation and
|
|
|
|
repo handling are dependent upon the function arguments.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not preserve:
|
2019-04-04 23:01:27 +00:00
|
|
|
for remove_path in (ALT_FILE1, ALT_FILE2, ALT_DIR):
|
|
|
|
if paths.work.join(remove_path).exists():
|
|
|
|
paths.work.join(remove_path).remove(rec=1, ignore_errors=True)
|
|
|
|
assert not paths.work.join(remove_path).exists()
|
2018-07-11 12:50:42 +00:00
|
|
|
|
|
|
|
new_file1 = paths.work.join(ALT_FILE1 + suffix)
|
|
|
|
new_file1.write(ALT_FILE1 + suffix, ensure=True)
|
|
|
|
new_file2 = paths.work.join(ALT_FILE2 + suffix)
|
|
|
|
new_file2.write(ALT_FILE2 + suffix, ensure=True)
|
2019-04-04 23:01:27 +00:00
|
|
|
new_dir = paths.work.join(ALT_DIR + suffix).join(CONTAINED)
|
|
|
|
new_dir.write(ALT_DIR + suffix, ensure=True)
|
|
|
|
|
|
|
|
# Do not test directory support for jinja alternates
|
|
|
|
test_paths = [new_file1, new_file2]
|
|
|
|
test_names = [ALT_FILE1, ALT_FILE2]
|
2019-10-01 13:12:18 +00:00
|
|
|
if not re.match(r'##(t|template|yadm)\.', suffix):
|
2019-04-04 23:01:27 +00:00
|
|
|
test_paths += [new_dir]
|
|
|
|
test_names += [ALT_DIR]
|
|
|
|
|
|
|
|
for test_path in test_paths:
|
|
|
|
if content:
|
|
|
|
test_path.write('\n' + content, mode='a', ensure=True)
|
|
|
|
assert test_path.exists()
|
2018-07-11 12:50:42 +00:00
|
|
|
|
2019-04-12 12:48:10 +00:00
|
|
|
_create_includefiles(includefile, paths, test_paths)
|
|
|
|
_create_tracked(tracked, test_paths, paths)
|
|
|
|
_create_encrypt(encrypt, test_names, suffix, paths, exclude)
|
2019-04-12 12:43:18 +00:00
|
|
|
|
2019-04-12 12:48:10 +00:00
|
|
|
|
2019-10-01 13:12:18 +00:00
|
|
|
def parse_alt_output(output, linked=True):
|
|
|
|
"""Parse output of 'alt', and return list of linked files"""
|
|
|
|
regex = r'Creating (.+) from template (.+)$'
|
|
|
|
if linked:
|
|
|
|
regex = r'Linking (.+) to (.+)$'
|
|
|
|
parsed_list = dict()
|
|
|
|
for line in output.splitlines():
|
|
|
|
match = re.match(regex, line)
|
|
|
|
if match:
|
|
|
|
if linked:
|
|
|
|
parsed_list[match.group(2)] = match.group(1)
|
|
|
|
else:
|
|
|
|
parsed_list[match.group(1)] = match.group(2)
|
|
|
|
return parsed_list.values()
|
|
|
|
|
|
|
|
|
2019-04-12 12:48:10 +00:00
|
|
|
def _create_includefiles(includefile, paths, test_paths):
|
|
|
|
if includefile:
|
|
|
|
for dpath in INCLUDE_DIRS:
|
|
|
|
incfile = paths.work.join(dpath + '/' + INCLUDE_FILE)
|
|
|
|
incfile.write(INCLUDE_CONTENT, ensure=True)
|
|
|
|
test_paths += [incfile]
|
|
|
|
|
|
|
|
|
|
|
|
def _create_tracked(tracked, test_paths, paths):
|
2018-07-11 12:50:42 +00:00
|
|
|
if tracked:
|
2019-04-04 23:01:27 +00:00
|
|
|
for track_path in test_paths:
|
|
|
|
os.system(f'GIT_DIR={str(paths.repo)} git add "{track_path}"')
|
2018-07-11 12:50:42 +00:00
|
|
|
os.system(f'GIT_DIR={str(paths.repo)} git commit -m "Add test files"')
|
|
|
|
|
2019-04-12 12:48:10 +00:00
|
|
|
|
|
|
|
def _create_encrypt(encrypt, test_names, suffix, paths, exclude):
|
2018-07-11 12:50:42 +00:00
|
|
|
if encrypt:
|
2019-04-04 23:01:27 +00:00
|
|
|
for encrypt_name in test_names:
|
|
|
|
paths.encrypt.write(f'{encrypt_name + suffix}\n', mode='a')
|
|
|
|
if exclude:
|
|
|
|
paths.encrypt.write(f'!{encrypt_name + suffix}\n', mode='a')
|