django-for-runners_ynh/tests/test_project_setup.py

66 lines
1.7 KiB
Python
Raw Normal View History

2021-10-10 14:35:06 +02:00
import difflib
2021-01-17 13:03:41 +01:00
import os
import shutil
import subprocess
from pathlib import Path
2021-10-10 14:35:06 +02:00
from bx_py_utils.path import assert_is_file
2021-01-17 13:03:41 +01:00
import for_runners
PACKAGE_ROOT = Path(__file__).parent.parent
def assert_file_contains_string(file_path, string):
with file_path.open('r') as f:
for line in f:
if string in line:
return
raise AssertionError(f'File {file_path} does not contain {string!r} !')
def test_version():
version = for_runners.__version__
assert_file_contains_string(file_path=Path(PACKAGE_ROOT, 'pyproject.toml'), string=f'version = "{version}~ynh')
assert_file_contains_string(file_path=Path(PACKAGE_ROOT, 'manifest.json'), string=f'"version": "{version}~ynh')
2021-10-10 14:35:06 +02:00
def poetry_check_output(*args):
2021-01-17 13:03:41 +01:00
poerty_bin = shutil.which('poetry')
output = subprocess.check_output(
2021-10-10 14:35:06 +02:00
(poerty_bin,) + args,
2021-01-17 13:03:41 +01:00
universal_newlines=True,
env=os.environ,
stderr=subprocess.STDOUT,
cwd=str(PACKAGE_ROOT),
)
print(output)
2021-10-10 14:35:06 +02:00
return output
def test_poetry_check():
output = poetry_check_output('check')
2021-01-17 13:03:41 +01:00
assert output == 'All set!\n'
2021-10-10 14:35:06 +02:00
def test_requirements_txt():
requirements_txt = Path('conf', 'requirements.txt')
assert_is_file(requirements_txt)
output = poetry_check_output('export', '-f', 'requirements.txt')
assert 'Warning' not in output
current_content = requirements_txt.read_text()
diff = '\n'.join(
difflib.unified_diff(
current_content.splitlines(), output.splitlines(),
fromfile=str(requirements_txt), tofile='FRESH EXPORT'
)
)
print(diff)
assert diff == '', f'{requirements_txt} is not up-to-date! (Hint: call: "make update")'