-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from pydsigner/GH-76_core_functionality_tests
GH-76: Core functionality tests
- Loading branch information
Showing
3 changed files
with
221 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
from pathlib import Path | ||
|
||
import pytest | ||
|
||
from anchovy.core import BuildSettings, Context, Matcher, PathCalc, Rule, Step | ||
|
||
|
||
class DummyStep(Step): | ||
def __call__(self, path: Path, output_paths: list[Path]): | ||
pass | ||
|
||
|
||
class AllMatcher(Matcher[Path]): | ||
def __call__(self, context: Context, path: Path): | ||
return path | ||
|
||
|
||
class BMatcher(Matcher[Path]): | ||
def __call__(self, context: Context, path: Path): | ||
if path.name.startswith('b'): | ||
return path | ||
|
||
|
||
class DummyPathCalc(PathCalc[Path]): | ||
def __call__(self, context: Context, path: Path, match: Path) -> Path: | ||
return context['output_dir'] / path.relative_to(context['input_dir']) | ||
|
||
|
||
@pytest.fixture | ||
def build_settings(tmp_path): | ||
return BuildSettings( | ||
input_dir=tmp_path / 'input', | ||
output_dir=tmp_path / 'output', | ||
working_dir=tmp_path / 'working', | ||
custody_cache=tmp_path / 'custody.json', | ||
purge_dirs=False | ||
) | ||
|
||
|
||
def test_context_match_paths(build_settings: BuildSettings): | ||
i_a = build_settings['input_dir'] / 'a' | ||
i_b = build_settings['input_dir'] / 'b' | ||
i_c = build_settings['input_dir'] / 'c' | ||
o_a = build_settings['output_dir'] / 'a' | ||
o_b = build_settings['output_dir'] / 'b' | ||
o_c = build_settings['output_dir'] / 'c' | ||
|
||
paths = [i_a, i_b, i_c] | ||
b_step = DummyStep() | ||
all_step = DummyStep() | ||
context = Context(build_settings, [ | ||
Rule(BMatcher(), DummyPathCalc(), b_step), | ||
Rule(AllMatcher(), DummyPathCalc(), all_step), | ||
]) | ||
tasks = context.match_paths(paths) | ||
assert tasks == { | ||
b_step: [ | ||
(i_b, [o_b]), | ||
], | ||
all_step: [ | ||
(i_a, [o_a]), | ||
(i_b, [o_b]), | ||
(i_c, [o_c]), | ||
], | ||
} | ||
|
||
def test_context_match_paths_stop_matching(build_settings: BuildSettings): | ||
i_a = build_settings['input_dir'] / 'a' | ||
i_b = build_settings['input_dir'] / 'b' | ||
i_c = build_settings['input_dir'] / 'c' | ||
o_a = build_settings['output_dir'] / 'a' | ||
o_b = build_settings['output_dir'] / 'b' | ||
o_c = build_settings['output_dir'] / 'c' | ||
|
||
paths = [i_a, i_b, i_c] | ||
|
||
b_step = DummyStep() | ||
all_step = DummyStep() | ||
context = Context(build_settings, [ | ||
Rule(BMatcher(), [DummyPathCalc(), None], b_step), | ||
Rule(AllMatcher(), DummyPathCalc(), all_step), | ||
]) | ||
tasks = context.match_paths(paths) | ||
assert tasks == { | ||
b_step: [ | ||
(i_b, [o_b]), | ||
], | ||
all_step: [ | ||
(i_a, [o_a]), | ||
(i_c, [o_c]), | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
from __future__ import annotations | ||
|
||
import re | ||
import typing as t | ||
from pathlib import Path | ||
|
||
import pytest | ||
|
||
from anchovy.core import BuildSettings, Context, Matcher, PathCalc, Rule, Step | ||
from anchovy.paths import DirPathCalc, OutputDirPathCalc, REMatcher, WebIndexPathCalc, WorkingDirPathCalc | ||
|
||
|
||
INPUT_PATH = Path('input') | ||
WORKING_PATH = Path('working') | ||
OUTPUT_PATH = Path('output') | ||
EXTERNAL_PATH = Path('external') | ||
|
||
|
||
@pytest.fixture | ||
def dummy_context(): | ||
return Context( | ||
BuildSettings( | ||
input_dir=INPUT_PATH, | ||
output_dir=OUTPUT_PATH, | ||
working_dir=WORKING_PATH, | ||
custody_cache=EXTERNAL_PATH / 'custody.json', | ||
purge_dirs=False | ||
), | ||
[] | ||
) | ||
|
||
|
||
@pytest.mark.parametrize('config,input,expected', [ | ||
(('output_dir',), INPUT_PATH / 'foo.txt', OUTPUT_PATH / 'foo.txt'), | ||
((OUTPUT_PATH,), INPUT_PATH / 'foo.txt', OUTPUT_PATH / 'foo.txt'), | ||
((EXTERNAL_PATH,), WORKING_PATH / 'foo.txt', EXTERNAL_PATH / 'foo.txt'), | ||
(('working_dir',), INPUT_PATH / 'foo.txt', WORKING_PATH / 'foo.txt'), | ||
(('working_dir',), WORKING_PATH / 'foo.txt', WORKING_PATH / 'foo.txt'), | ||
(('working_dir', '.html'), WORKING_PATH / 'foo.txt', WORKING_PATH / 'foo.html'), | ||
(('working_dir', '.html'), WORKING_PATH / 'foo.j.txt', WORKING_PATH / 'foo.j.html'), | ||
]) | ||
def test_dir_path_calc(config: tuple, input: Path, expected: Path, dummy_context: Context): | ||
calc = DirPathCalc(*config) | ||
assert calc(dummy_context, input, None) == expected | ||
|
||
|
||
@pytest.mark.parametrize('config,input,regex,expected', [ | ||
(('output_dir',), INPUT_PATH / 'foo.j.html', r'.*(?P<ext>\.j\.html)', OUTPUT_PATH / 'foo.j.html'), | ||
(('output_dir', '.zip'), INPUT_PATH / 'foo.j.html', r'.*(?P<ext>\.j\.html)', OUTPUT_PATH / 'foo.zip'), | ||
]) | ||
def test_dir_path_calc_regex(config: tuple, input: Path, regex: str, expected: Path, dummy_context: Context): | ||
calc = DirPathCalc(*config) | ||
match = re.match(regex, input.as_posix()) | ||
assert calc(dummy_context, input, match) == expected | ||
|
||
|
||
@pytest.mark.parametrize('config,input,regex,expected', [ | ||
(('output_dir', None, lambda p: p), INPUT_PATH / 'foo.j.html', r'.*(?P<ext>\.j\.html)', OUTPUT_PATH / 'foo.j.html'), | ||
(('output_dir', '.zip', lambda p: (p.with_suffix('') / 'index').with_suffix(p.suffix)), INPUT_PATH / 'foo.j.html', r'.*(?P<ext>\.j\.html)', OUTPUT_PATH / 'foo' / 'index.zip'), | ||
]) | ||
def test_dir_path_calc_transform(config: tuple, input: Path, regex: str, expected: Path, dummy_context: Context): | ||
calc = DirPathCalc(*config) | ||
match = re.match(regex, input.as_posix()) | ||
assert calc(dummy_context, input, match) == expected | ||
|
||
|
||
@pytest.mark.parametrize('config,input,expected', [ | ||
((), INPUT_PATH / 'foo.txt', OUTPUT_PATH / 'foo.txt'), | ||
((), WORKING_PATH / 'foo.txt', OUTPUT_PATH / 'foo.txt'), | ||
(('.html',), WORKING_PATH / 'foo.txt', OUTPUT_PATH / 'foo.html'), | ||
(('.html',), WORKING_PATH / 'foo.j.txt', OUTPUT_PATH / 'foo.j.html'), | ||
]) | ||
def test_output_dir_path_calc(config: tuple, input: Path, expected: Path, dummy_context: Context): | ||
calc = OutputDirPathCalc(*config) | ||
assert calc(dummy_context, input, None) == expected | ||
|
||
|
||
@pytest.mark.parametrize('config,input,expected', [ | ||
(('output_dir', None), INPUT_PATH / 'foo.html', OUTPUT_PATH / 'foo' / 'index.html'), | ||
(('output_dir', '.zip', lambda p: p.with_stem(p.stem * 2)), INPUT_PATH / 'foo.html', OUTPUT_PATH / 'foofoo' / 'index.zip'), | ||
]) | ||
def test_web_index_path_calc(config: tuple, input: Path, expected: Path, dummy_context: Context): | ||
calc = WebIndexPathCalc(*config) | ||
assert calc(dummy_context, input, None) == expected | ||
|
||
|
||
@pytest.mark.parametrize('config,input,expected', [ | ||
((), (INPUT_PATH / 'foo.txt', None), WORKING_PATH / 'foo.txt'), | ||
((), (WORKING_PATH / 'foo.txt', None), WORKING_PATH / 'foo.txt'), | ||
(('.html',), (WORKING_PATH / 'foo.txt', None), WORKING_PATH / 'foo.html'), | ||
(('.html',), (WORKING_PATH / 'foo.j.txt', None), WORKING_PATH / 'foo.j.html'), | ||
]) | ||
def test_working_dir_path_calc(config: tuple, input: tuple[Path, t.Any], expected: Path, dummy_context: Context): | ||
calc = WorkingDirPathCalc(*config) | ||
assert calc(dummy_context, *input) == expected | ||
|
||
|
||
@pytest.mark.parametrize('config,input,expected', [ | ||
((r'.*\.html',), INPUT_PATH / 'foo.html', {}), | ||
((r'f.*\.html',), INPUT_PATH / 'foo.html', None), | ||
((r'f.*\.html', 0, 'input_dir'), INPUT_PATH / 'foo.html', {}), | ||
((r'.*(?P<ext>\.j\.html)', 0, 'input_dir'), INPUT_PATH / 'foo.j.html', {'ext': '.j.html'}), | ||
((r'.*(?P<ext>\.j\.html)', 0, 'input_dir'), INPUT_PATH / 'foo.html', None), | ||
((r'.*(?P<ext>\.j\.html)', 0, 'working_dir'), INPUT_PATH / 'foo.j.html', None), | ||
((r'.*(?P<ext>\.j\.html)', 0, 'working_dir'), WORKING_PATH / 'foo.j.html', {'ext': '.j.html'}), | ||
]) | ||
def test_re_matcher(config: tuple, input: Path, expected: dict | None, dummy_context: Context): | ||
matcher = REMatcher(*config) | ||
result = matcher(dummy_context, input) | ||
if result: | ||
assert result.groupdict() == expected | ||
else: | ||
assert result is expected |