parent
4364666162
commit
abc546ca07
@ -1,3 +1,9 @@
|
|||||||
|
# Unreleased
|
||||||
|
## Fixed
|
||||||
|
- Loaders and Dumpers would recieve options with unwanted default values when
|
||||||
|
their corresponding flags were not passed to the commandline, resulting
|
||||||
|
in weird bugs, not anymore ! #17
|
||||||
|
|
||||||
# v1.2.2
|
# v1.2.2
|
||||||
## Changed
|
## Changed
|
||||||
- Slashes in filenames are now ignored
|
- Slashes in filenames are now ignored
|
||||||
|
@ -50,8 +50,8 @@ def convert(
|
|||||||
dst: str,
|
dst: str,
|
||||||
input_format: Optional[Format],
|
input_format: Optional[Format],
|
||||||
output_format: Format,
|
output_format: Format,
|
||||||
loader_options: Dict[str, Any],
|
loader_options: Optional[Dict[str, Any]] = None,
|
||||||
dumper_options: Dict[str, Any],
|
dumper_options: Optional[Dict[str, Any]] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Convert SRC to DST using the format specified by -f"""
|
"""Convert SRC to DST using the format specified by -f"""
|
||||||
if input_format is None:
|
if input_format is None:
|
||||||
@ -68,7 +68,9 @@ def convert(
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
raise ValueError(f"Unsupported output format : {input_format}")
|
raise ValueError(f"Unsupported output format : {input_format}")
|
||||||
|
|
||||||
|
loader_options = loader_options or {}
|
||||||
song = loader(Path(src), **loader_options)
|
song = loader(Path(src), **loader_options)
|
||||||
|
dumper_options = dumper_options or {}
|
||||||
files = dumper(song, Path(dst), **dumper_options)
|
files = dumper(song, Path(dst), **dumper_options)
|
||||||
for path, contents in files.items():
|
for path, contents in files.items():
|
||||||
with path.open("wb") as f:
|
with path.open("wb") as f:
|
||||||
|
@ -3,17 +3,6 @@ from typing import Any, Callable, Union
|
|||||||
import click
|
import click
|
||||||
|
|
||||||
|
|
||||||
def add_to_dict(
|
|
||||||
key: str,
|
|
||||||
) -> Callable[[click.Context, Union[click.Option, click.Parameter], Any], None]:
|
|
||||||
def add_to_key(
|
|
||||||
ctx: click.Context, param: Union[click.Option, click.Parameter], value: Any
|
|
||||||
) -> None:
|
|
||||||
ctx.params.setdefault(key, {})[param.name] = value
|
|
||||||
|
|
||||||
return add_to_key
|
|
||||||
|
|
||||||
|
|
||||||
def loader_option(*args: Any, **kwargs: Any) -> Callable:
|
def loader_option(*args: Any, **kwargs: Any) -> Callable:
|
||||||
return click.option(
|
return click.option(
|
||||||
*args, callback=add_to_dict("loader_options"), expose_value=False, **kwargs
|
*args, callback=add_to_dict("loader_options"), expose_value=False, **kwargs
|
||||||
@ -24,3 +13,28 @@ def dumper_option(*args: Any, **kwargs: Any) -> Callable:
|
|||||||
return click.option(
|
return click.option(
|
||||||
*args, callback=add_to_dict("dumper_options"), expose_value=False, **kwargs
|
*args, callback=add_to_dict("dumper_options"), expose_value=False, **kwargs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def add_to_dict(
|
||||||
|
key: str,
|
||||||
|
) -> Callable[[click.Context, Union[click.Option, click.Parameter], Any], None]:
|
||||||
|
def add_to_key(
|
||||||
|
ctx: click.Context, param: Union[click.Option, click.Parameter], value: Any
|
||||||
|
) -> None:
|
||||||
|
# Avoid shadowing load/dump functions kwargs default values with the
|
||||||
|
# default values chosen by click
|
||||||
|
assert param.name is not None
|
||||||
|
if not parameter_is_a_click_default(ctx, param.name):
|
||||||
|
ctx.params.setdefault(key, {})[param.name] = value
|
||||||
|
|
||||||
|
return add_to_key
|
||||||
|
|
||||||
|
|
||||||
|
def parameter_is_a_click_default(
|
||||||
|
ctx: click.Context,
|
||||||
|
name: str,
|
||||||
|
) -> bool:
|
||||||
|
return ctx.get_parameter_source(name) in (
|
||||||
|
click.core.ParameterSource.DEFAULT,
|
||||||
|
click.core.ParameterSource.DEFAULT_MAP,
|
||||||
|
)
|
||||||
|
0
jubeatools/cli/tests/__init__.py
Normal file
0
jubeatools/cli/tests/__init__.py
Normal file
1213
jubeatools/cli/tests/data/Life Without You.eve
Normal file
1213
jubeatools/cli/tests/data/Life Without You.eve
Normal file
File diff suppressed because it is too large
Load Diff
2
jubeatools/cli/tests/data/__init__.py
Normal file
2
jubeatools/cli/tests/data/__init__.py
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
"""This file is here so the test code can use importlib as a portable way to
|
||||||
|
open test data in this folder"""
|
20
jubeatools/cli/tests/test_cli.py
Normal file
20
jubeatools/cli/tests/test_cli.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
from importlib import resources
|
||||||
|
|
||||||
|
from click.testing import CliRunner
|
||||||
|
|
||||||
|
from ..cli import convert
|
||||||
|
from . import data
|
||||||
|
|
||||||
|
|
||||||
|
def test_that_ommiting_beat_snap_works() -> None:
|
||||||
|
"""
|
||||||
|
As pointed out by https://github.com/Stepland/jubeatools/issues/17
|
||||||
|
"""
|
||||||
|
runner = CliRunner()
|
||||||
|
with runner.isolated_filesystem(), resources.path(
|
||||||
|
data, "Life Without You.eve"
|
||||||
|
) as p:
|
||||||
|
result = runner.invoke(
|
||||||
|
convert, [str(p.resolve(strict=True)), "out.txt", "-f", "memo2"]
|
||||||
|
)
|
||||||
|
assert result.exit_code == 0
|
@ -69,7 +69,8 @@ def note_position(draw: st.DrawFn) -> NotePosition:
|
|||||||
|
|
||||||
@st.composite
|
@st.composite
|
||||||
def tap_note(
|
def tap_note(
|
||||||
draw: st.DrawFn, time_strat: st.SearchStrategy[BeatsTime] = beat_time(max_section=10)
|
draw: st.DrawFn,
|
||||||
|
time_strat: st.SearchStrategy[BeatsTime] = beat_time(max_section=10),
|
||||||
) -> TapNote:
|
) -> TapNote:
|
||||||
time = draw(time_strat)
|
time = draw(time_strat)
|
||||||
position = draw(note_position())
|
position = draw(note_position())
|
||||||
|
Loading…
Reference in New Issue
Block a user