30fa6f08a4
* Update base image to Ubuntu 24.10. This uses a python version where j2cli no longer works when installed using pip so use the version from Ubuntu instead which has been patched to work. * Update shellcheck, pylint, pytest, isort, flake8, black and yamllint to the latest versions. This closes #502. * Use a longer expect timeout to fix tests failing when gpg is killed due to this timeout. * Explicitly flush gpg-agent's cached passwords to fix failing tests with latest gnupg. Also clean up after tests to avoid having gpg-agents running after the test (e.g. when running tests directly without docker).
32 lines
861 B
Python
32 lines
861 B
Python
"""Unit tests: relative_path"""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"base,full_path,expected",
|
|
[
|
|
("/A/B/C", "/A", "../.."),
|
|
("/A/B/C", "/A/B", ".."),
|
|
("/A/B/C", "/A/B/C", ""),
|
|
("/A/B/C", "/A/B/C/D", "D"),
|
|
("/A/B/C", "/A/B/C/D/E", "D/E"),
|
|
("/A/B/C", "/A/B/D", "../D"),
|
|
("/A/B/C", "/A/B/D/E", "../D/E"),
|
|
("/A/B/C", "/A/D", "../../D"),
|
|
("/A/B/C", "/A/D/E", "../../D/E"),
|
|
("/A/B/C", "/D/E/F", "../../../D/E/F"),
|
|
],
|
|
)
|
|
def test_relative_path(runner, paths, base, full_path, expected):
|
|
"""Test translate_to_relative"""
|
|
|
|
script = f"""
|
|
YADM_TEST=1 source {paths.pgm}
|
|
relative_path "{base}" "{full_path}"
|
|
"""
|
|
|
|
run = runner(command=["bash"], inp=script)
|
|
assert run.success
|
|
assert run.err == ""
|
|
assert run.out.strip() == expected
|