File size: 1,438 Bytes
1b2d9aa 8a6cf84 1b2d9aa 8a6cf84 1b2d9aa 8a6cf84 1b2d9aa 8a6cf84 1b2d9aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
import pytest
from typer.testing import CliRunner
from chessli2.cli import app
from chessli2.settings import settings
runner = CliRunner()
sources = ["pwenker/chessli2"] # , "http://localhost:7860"]
@pytest.mark.parametrize("src", sources)
def test_mistakes_with_options(src):
result = runner.invoke(
app,
[
"mistakes",
"--src",
src,
"--lichess-api-token",
settings.lichess_api_token,
"--user-name",
"pwenker",
"--start-date",
"2017-05-14",
"--end-date",
"2024-05-14",
"--nags",
"4",
"--nags",
"2",
"--time-control",
"All Time Controls",
"--output",
"file",
],
)
assert result.exit_code == 0
@pytest.mark.parametrize("src", sources)
def test_puzzles_with_options(src):
"""
chessli puzzles --src http://localhost:7860 --user-name pwenker --before 2024-05-14 --max 100 --output file
"""
result = runner.invoke(
app,
[
"puzzles",
"--src",
src,
"--lichess-api-token",
settings.lichess_api_token,
"--before",
"2024-05-14",
"--max",
10,
"--output",
"file",
],
)
assert result.exit_code == 0
|