2021-09-15 21:03:02 +02:00
|
|
|
import difflib
|
2020-12-29 13:58:51 +01:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
from pathlib import Path
|
2023-08-17 21:55:12 +02:00
|
|
|
from unittest import TestCase
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
import tomllib # New in Python 3.11
|
|
|
|
except ImportError:
|
|
|
|
import tomli as tomllib
|
2020-12-29 13:58:51 +01:00
|
|
|
|
2022-12-21 22:21:42 +01:00
|
|
|
from bx_django_utils.filename import clean_filename
|
|
|
|
from bx_py_utils.path import assert_is_dir, assert_is_file
|
2022-09-15 18:16:57 +02:00
|
|
|
from django_tools.unittest_utils.project_setup import check_editor_config
|
2022-12-21 22:21:42 +01:00
|
|
|
from django_yunohost_integration.test_utils import assert_project_version
|
2021-09-15 21:03:02 +02:00
|
|
|
|
2022-12-21 22:21:42 +01:00
|
|
|
from inventory import __version__
|
2020-12-29 13:58:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
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():
|
2023-02-19 14:01:54 +01:00
|
|
|
if 'GITHUB_ACTION' not in os.environ:
|
|
|
|
# Github has a rate-limiting... So don't fetch the API if we run as GitHub action
|
|
|
|
assert_project_version(
|
|
|
|
current_version=__version__,
|
|
|
|
github_project_url='https://github.com/jedie/PyInventory',
|
|
|
|
)
|
2020-12-29 13:58:51 +01:00
|
|
|
|
2022-09-18 19:42:30 +02:00
|
|
|
pyproject_toml_path = Path(PACKAGE_ROOT, 'pyproject.toml')
|
2023-08-17 21:55:12 +02:00
|
|
|
pyproject_toml = tomllib.loads(pyproject_toml_path.read_text(encoding='UTF-8'))
|
2022-09-18 19:42:30 +02:00
|
|
|
pyproject_version = pyproject_toml['tool']['poetry']['version']
|
2022-12-21 22:21:42 +01:00
|
|
|
assert pyproject_version.startswith(
|
|
|
|
f'{__version__}+ynh'
|
|
|
|
), f'{pyproject_version!r} does not start with "{__version__}+ynh"'
|
2022-09-18 19:42:30 +02:00
|
|
|
|
|
|
|
# pyproject.toml needs a PEP 440 conform version and used "+ynh"
|
|
|
|
# the YunoHost syntax is: "~ynh", just "convert this:
|
|
|
|
manifest_version = pyproject_version.replace('+', '~')
|
|
|
|
|
|
|
|
assert_file_contains_string(
|
2023-08-22 19:52:36 +02:00
|
|
|
file_path=Path(PACKAGE_ROOT, 'manifest.toml'),
|
|
|
|
string=f'version = "{manifest_version}"',
|
2022-09-18 19:42:30 +02:00
|
|
|
)
|
2020-12-29 13:58:51 +01:00
|
|
|
|
|
|
|
|
2021-09-15 21:03:02 +02:00
|
|
|
def poetry_check_output(*args):
|
2020-12-29 13:58:51 +01:00
|
|
|
poerty_bin = shutil.which('poetry')
|
|
|
|
|
|
|
|
output = subprocess.check_output(
|
2021-09-15 21:03:02 +02:00
|
|
|
(poerty_bin,) + args,
|
2022-09-13 21:08:58 +02:00
|
|
|
text=True,
|
2020-12-29 13:58:51 +01:00
|
|
|
env=os.environ,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
cwd=str(PACKAGE_ROOT),
|
|
|
|
)
|
|
|
|
print(output)
|
2021-09-15 21:03:02 +02:00
|
|
|
return output
|
|
|
|
|
|
|
|
|
|
|
|
def test_poetry_check():
|
|
|
|
output = poetry_check_output('check')
|
2020-12-29 13:58:51 +01:00
|
|
|
assert output == 'All set!\n'
|
2021-09-15 21:03:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_requirements_txt():
|
2022-09-13 21:26:25 +02:00
|
|
|
requirements_txt = PACKAGE_ROOT / 'conf' / 'requirements.txt'
|
2021-09-15 21:03:02 +02:00
|
|
|
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(
|
2022-09-13 21:08:58 +02:00
|
|
|
current_content.splitlines(),
|
|
|
|
output.splitlines(),
|
|
|
|
fromfile=str(requirements_txt),
|
|
|
|
tofile='FRESH EXPORT',
|
2021-09-15 21:03:02 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
print(diff)
|
|
|
|
assert diff == '', f'{requirements_txt} is not up-to-date! (Hint: call: "make update")'
|
2022-09-13 21:08:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_screenshot_filenames():
|
|
|
|
"""
|
|
|
|
https://forum.yunohost.org/t/yunohost-bot-cant-handle-spaces-in-screenshots/19483
|
|
|
|
"""
|
|
|
|
screenshot_path = PACKAGE_ROOT / 'doc' / 'screenshots'
|
|
|
|
assert_is_dir(screenshot_path)
|
|
|
|
renamed = []
|
|
|
|
for file_path in screenshot_path.iterdir():
|
|
|
|
file_name = file_path.name
|
2022-12-21 22:21:42 +01:00
|
|
|
if file_name.startswith('.'):
|
|
|
|
continue
|
2022-09-13 21:08:58 +02:00
|
|
|
cleaned_name = clean_filename(file_name)
|
|
|
|
if cleaned_name != file_name:
|
|
|
|
new_path = file_path.with_name(cleaned_name)
|
|
|
|
file_path.rename(new_path)
|
|
|
|
renamed.append(f'{file_name!r} renamed to {cleaned_name!r}')
|
|
|
|
assert not renamed, f'Bad screenshots file names found: {", ".join(renamed)}'
|
2022-09-15 18:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_check_editor_config():
|
|
|
|
check_editor_config(package_root=PACKAGE_ROOT)
|
2022-12-21 22:21:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
def _call_make(*args):
|
|
|
|
make_bin = shutil.which('make')
|
|
|
|
assert make_bin
|
|
|
|
return subprocess.check_output(
|
|
|
|
(make_bin,) + args,
|
|
|
|
text=True,
|
|
|
|
env=dict(PATH=os.environ['PATH']),
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
cwd=str(PACKAGE_ROOT),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_check_code_style():
|
|
|
|
# First try:
|
|
|
|
try:
|
|
|
|
_call_make('lint')
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
# Fix and test again:
|
|
|
|
try:
|
|
|
|
_call_make('fix-code-style')
|
|
|
|
_call_make('lint')
|
|
|
|
except subprocess.CalledProcessError as err:
|
|
|
|
raise AssertionError(f'Linting error:\n{"-"*100}\n{err.stdout}\n{"-"*100}')
|
2023-08-17 21:55:12 +02:00
|
|
|
|
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
class ManifestTestCase(TestCase):
|
|
|
|
def test_manifest_toml(self):
|
|
|
|
manifest_path = PACKAGE_ROOT / 'manifest.toml'
|
|
|
|
assert_is_file(manifest_path)
|
2023-08-17 21:55:12 +02:00
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
cfg = tomllib.loads(manifest_path.read_text(encoding='UTF-8'))
|
2023-08-17 21:55:12 +02:00
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
self.assertEqual(cfg['packaging_format'], 2)
|
2023-08-17 21:55:12 +02:00
|
|
|
self.assertEqual(
|
2023-08-22 19:52:36 +02:00
|
|
|
set(cfg['install'].keys()),
|
|
|
|
{
|
|
|
|
'admin',
|
|
|
|
'admin_email',
|
|
|
|
'debug_enabled',
|
|
|
|
'default_from_email',
|
|
|
|
'domain',
|
|
|
|
'init_main_permission',
|
|
|
|
'log_level',
|
|
|
|
'path',
|
|
|
|
},
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
set(cfg['resources'].keys()),
|
|
|
|
{
|
|
|
|
'apt',
|
|
|
|
'data_dir',
|
|
|
|
'database',
|
|
|
|
'install_dir',
|
|
|
|
'permissions',
|
|
|
|
'ports',
|
|
|
|
'system_user',
|
|
|
|
},
|
2023-08-17 21:55:12 +02:00
|
|
|
)
|