74e3754a80
* feat: add MT5 order metadata, coverage report, and env-backed CLI config * fix: align review-driven trading and history contracts * Bump pdmt5 to 1.1.0 * test: stabilize history gaps CLI assertion * fix: address review follow-ups for gaps and filling mode
1971 lines
66 KiB
Python
1971 lines
66 KiB
Python
"""Tests for mt5cli.cli module."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import logging
|
|
import re
|
|
import sqlite3
|
|
from datetime import UTC, datetime, timedelta
|
|
from typing import TYPE_CHECKING
|
|
from unittest.mock import MagicMock
|
|
|
|
import pandas as pd
|
|
import pytest
|
|
from pytest_mock import MockerFixture # noqa: TC002
|
|
from typer.testing import CliRunner
|
|
|
|
if TYPE_CHECKING:
|
|
from pathlib import Path
|
|
|
|
from mt5cli.cli import (
|
|
_execute_export, # type: ignore[reportPrivateUsage]
|
|
_ExportContext, # type: ignore[reportPrivateUsage]
|
|
_infer_gap_table_granularity_seconds, # type: ignore[reportPrivateUsage]
|
|
_sdk_client, # type: ignore[reportPrivateUsage]
|
|
_timeframe_interval_seconds, # type: ignore[reportPrivateUsage]
|
|
app,
|
|
main,
|
|
)
|
|
|
|
runner = CliRunner()
|
|
_ANSI_ESCAPE_RE = re.compile(r"\x1b\[[0-?]*[ -/]*[@-~]")
|
|
|
|
|
|
def normalize_cli_output(output: str) -> str:
|
|
"""Normalize CLI output for cross-platform assertions."""
|
|
return " ".join(_ANSI_ESCAPE_RE.sub("", output).split())
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _execute_export
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestExecuteExport:
|
|
"""Tests for _execute_export."""
|
|
|
|
def test_shutdown_on_error(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test that shutdown is called even when fetch raises."""
|
|
mock_client = MagicMock()
|
|
mock_client.account_info_as_df.side_effect = RuntimeError("boom")
|
|
mocker.patch("mt5cli.sdk.Mt5DataClient", return_value=mock_client)
|
|
ctx = MagicMock()
|
|
ctx.obj = _ExportContext(
|
|
output=tmp_path / "out.csv",
|
|
output_format="csv",
|
|
table="data",
|
|
config=MagicMock(),
|
|
)
|
|
with pytest.raises(RuntimeError, match="boom"):
|
|
_execute_export(ctx, _sdk_client(ctx).account_info)
|
|
mock_client.shutdown.assert_called_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# CLI commands via CliRunner
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestCommands:
|
|
"""Tests for all CLI subcommands via CliRunner."""
|
|
|
|
@pytest.mark.parametrize(
|
|
("command", "method"),
|
|
[
|
|
("account-info", "account_info_as_df"),
|
|
("terminal-info", "terminal_info_as_df"),
|
|
("positions", "positions_get_as_df"),
|
|
("version", "version_as_df"),
|
|
("last-error", "last_error_as_df"),
|
|
],
|
|
)
|
|
def test_simple_command(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
command: str,
|
|
method: str,
|
|
) -> None:
|
|
"""Simple no-arg commands invoke the expected client method."""
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(app, ["-o", str(output), command])
|
|
assert result.exit_code == 0, result.output
|
|
getattr(mock_client, method).assert_called_once()
|
|
assert output.exists()
|
|
|
|
def test_symbols(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test symbols command."""
|
|
output = tmp_path / "out.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "symbols", "--group", "*USD*"],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
mock_client.symbols_get_as_df.assert_called_once_with(
|
|
group="*USD*",
|
|
)
|
|
|
|
@pytest.mark.parametrize(
|
|
("command", "method"),
|
|
[
|
|
("symbol-info", "symbol_info_as_df"),
|
|
("symbol-info-tick", "symbol_info_tick_as_df"),
|
|
("market-book", "market_book_get_as_df"),
|
|
],
|
|
)
|
|
def test_symbol_command(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
command: str,
|
|
method: str,
|
|
) -> None:
|
|
"""Test --symbol commands invoke the expected client method with symbol."""
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), command, "--symbol", "EURUSD"],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
getattr(mock_client, method).assert_called_once_with(symbol="EURUSD")
|
|
|
|
@pytest.mark.parametrize(
|
|
("args", "method", "expected_kwargs"),
|
|
[
|
|
(
|
|
[
|
|
"rates-from",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--timeframe",
|
|
"M1",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--count",
|
|
"100",
|
|
],
|
|
"copy_rates_from_as_df",
|
|
{
|
|
"symbol": "EURUSD",
|
|
"timeframe": 1,
|
|
"date_from": datetime(2024, 1, 1, tzinfo=UTC),
|
|
"count": 100,
|
|
},
|
|
),
|
|
(
|
|
[
|
|
"rates-from-pos",
|
|
"--symbol",
|
|
"GBPUSD",
|
|
"--timeframe",
|
|
"H1",
|
|
"--start-pos",
|
|
"0",
|
|
"--count",
|
|
"50",
|
|
],
|
|
"copy_rates_from_pos_as_df",
|
|
{
|
|
"symbol": "GBPUSD",
|
|
"timeframe": 16385,
|
|
"start_pos": 0,
|
|
"count": 50,
|
|
},
|
|
),
|
|
(
|
|
[
|
|
"latest-rates",
|
|
"--symbol",
|
|
"GBPUSD",
|
|
"--timeframe",
|
|
"H1",
|
|
"--count",
|
|
"50",
|
|
"--start-pos",
|
|
"2",
|
|
],
|
|
"copy_rates_from_pos_as_df",
|
|
{
|
|
"symbol": "GBPUSD",
|
|
"timeframe": 16385,
|
|
"start_pos": 2,
|
|
"count": 50,
|
|
},
|
|
),
|
|
(
|
|
[
|
|
"rates-range",
|
|
"--symbol",
|
|
"USDJPY",
|
|
"--timeframe",
|
|
"D1",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
],
|
|
"copy_rates_range_as_df",
|
|
{
|
|
"symbol": "USDJPY",
|
|
"timeframe": 16408,
|
|
"date_from": datetime(2024, 1, 1, tzinfo=UTC),
|
|
"date_to": datetime(2024, 2, 1, tzinfo=UTC),
|
|
},
|
|
),
|
|
(
|
|
[
|
|
"ticks-from",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--count",
|
|
"100",
|
|
"--flags",
|
|
"ALL",
|
|
],
|
|
"copy_ticks_from_as_df",
|
|
{
|
|
"symbol": "EURUSD",
|
|
"date_from": datetime(2024, 1, 1, tzinfo=UTC),
|
|
"count": 100,
|
|
"flags": -1,
|
|
},
|
|
),
|
|
(
|
|
[
|
|
"ticks-range",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--flags",
|
|
"INFO",
|
|
],
|
|
"copy_ticks_range_as_df",
|
|
{
|
|
"symbol": "EURUSD",
|
|
"date_from": datetime(2024, 1, 1, tzinfo=UTC),
|
|
"date_to": datetime(2024, 2, 1, tzinfo=UTC),
|
|
"flags": 1,
|
|
},
|
|
),
|
|
],
|
|
ids=[
|
|
"rates-from",
|
|
"rates-from-pos",
|
|
"latest-rates",
|
|
"rates-range",
|
|
"ticks-from",
|
|
"ticks-range",
|
|
],
|
|
)
|
|
def test_rates_ticks_delegate(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
args: list[str],
|
|
method: str,
|
|
expected_kwargs: dict[str, object],
|
|
) -> None:
|
|
"""Rate/tick delegate commands invoke the expected client method with kwargs."""
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(app, ["-o", str(output), *args])
|
|
assert result.exit_code == 0, result.output
|
|
getattr(mock_client, method).assert_called_once_with(**expected_kwargs)
|
|
|
|
def test_ticks_recent(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test ticks-recent command."""
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"ticks-recent",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--seconds",
|
|
"120",
|
|
"--date-to",
|
|
"2024-01-02",
|
|
"--count",
|
|
"500",
|
|
"--flags",
|
|
"ALL",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
mock_client.copy_ticks_from_as_df.assert_called_once_with(
|
|
symbol="EURUSD",
|
|
date_from=datetime(2024, 1, 2, tzinfo=UTC) - timedelta(seconds=120),
|
|
count=500,
|
|
flags=-1,
|
|
)
|
|
mock_client.copy_ticks_range_as_df.assert_not_called()
|
|
|
|
def test_minimum_margins(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test minimum-margins command."""
|
|
sym = MagicMock(volume_min=0.01)
|
|
account = MagicMock(currency="USD")
|
|
tick = MagicMock(ask=1.1010, bid=1.1000)
|
|
mock_client.symbol_info.return_value = sym
|
|
mock_client.account_info.return_value = account
|
|
mock_client.symbol_info_tick.return_value = tick
|
|
mock_client.order_calc_margin.side_effect = [12.5, 12.4]
|
|
mock_client.mt5.ORDER_TYPE_BUY = 0
|
|
mock_client.mt5.ORDER_TYPE_SELL = 1
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "minimum-margins", "--symbol", "EURUSD"],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
mock_client.symbol_info.assert_called_once_with("EURUSD")
|
|
mock_client.order_calc_margin.assert_any_call(0, "EURUSD", 0.01, 1.1010)
|
|
mock_client.order_calc_margin.assert_any_call(1, "EURUSD", 0.01, 1.1000)
|
|
|
|
@pytest.mark.parametrize(
|
|
("args", "method"),
|
|
[
|
|
(["orders", "--symbol", "EURUSD"], "orders_get_as_df"),
|
|
(
|
|
[
|
|
"history-orders",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
],
|
|
"history_orders_get_as_df",
|
|
),
|
|
(["history-deals", "--ticket", "12345"], "history_deals_get_as_df"),
|
|
],
|
|
ids=["orders", "history-orders", "history-deals"],
|
|
)
|
|
def test_history_delegate(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
args: list[str],
|
|
method: str,
|
|
) -> None:
|
|
"""orders/history-orders/history-deals delegate to the client method."""
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(app, ["-o", str(output), *args])
|
|
assert result.exit_code == 0, result.output
|
|
getattr(mock_client, method).assert_called_once()
|
|
|
|
def test_recent_history_deals(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test recent-history-deals command."""
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"recent-history-deals",
|
|
"--hours",
|
|
"6",
|
|
"--date-to",
|
|
"2024-01-02",
|
|
"--symbol",
|
|
"EURUSD",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
mock_client.history_deals_get_as_df.assert_called_once_with(
|
|
date_from=datetime(2024, 1, 1, 18, tzinfo=UTC),
|
|
date_to=datetime(2024, 1, 2, tzinfo=UTC),
|
|
group=None,
|
|
symbol="EURUSD",
|
|
ticket=None,
|
|
position=None,
|
|
)
|
|
|
|
@pytest.mark.parametrize(
|
|
("filename", "reader"),
|
|
[
|
|
("summary.csv", "csv"),
|
|
("summary.json", "json"),
|
|
("summary.db", "sqlite3"),
|
|
("summary.parquet", "parquet"),
|
|
],
|
|
)
|
|
def test_mt5_summary_export_formats(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
filename: str,
|
|
reader: str,
|
|
) -> None:
|
|
"""Test mt5-summary writes export-safe files for supported formats."""
|
|
output = tmp_path / filename
|
|
result = runner.invoke(app, ["-o", str(output), "mt5-summary"])
|
|
assert result.exit_code == 0, result.output
|
|
assert output.exists()
|
|
mock_client.version.assert_called_once()
|
|
mock_client.terminal_info.assert_called_once()
|
|
mock_client.account_info.assert_called_once()
|
|
mock_client.symbols_total.assert_called_once()
|
|
if reader == "csv":
|
|
frame = pd.read_csv(output)
|
|
elif reader == "json":
|
|
with output.open() as f:
|
|
records = json.load(f)
|
|
frame = pd.DataFrame(records)
|
|
elif reader == "sqlite3":
|
|
with sqlite3.connect(output) as conn:
|
|
frame = pd.read_sql( # type: ignore[reportUnknownMemberType]
|
|
"SELECT * FROM data",
|
|
conn,
|
|
)
|
|
else:
|
|
frame = pd.read_parquet(output)
|
|
assert len(frame) == 1
|
|
assert frame.iloc[0].to_dict() == {
|
|
"version": "[5,0,1]",
|
|
"terminal_info": '{"connected":true,"paths":["terminal.exe"]}',
|
|
"account_info": '{"limits":{"modes":["demo"]},"login":123}',
|
|
"symbols_total": 42,
|
|
}
|
|
|
|
@pytest.mark.parametrize(
|
|
("command", "method", "payload", "use_file"),
|
|
[
|
|
(
|
|
"order-check",
|
|
"order_check_as_df",
|
|
{"action": 1, "symbol": "EURUSD", "volume": 0.1},
|
|
False,
|
|
),
|
|
(
|
|
"order-send",
|
|
"order_send_as_df",
|
|
{"action": 1, "symbol": "EURUSD", "volume": 0.1},
|
|
False,
|
|
),
|
|
(
|
|
"order-check",
|
|
"order_check_as_df",
|
|
{"action": 2, "symbol": "EURUSD"},
|
|
True,
|
|
),
|
|
("order-send", "order_send_as_df", {"action": 2, "symbol": "EURUSD"}, True),
|
|
],
|
|
ids=["check-inline", "send-inline", "check-file", "send-file"],
|
|
)
|
|
def test_order_request(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
command: str,
|
|
method: str,
|
|
payload: dict[str, object],
|
|
use_file: bool,
|
|
) -> None:
|
|
"""Test order-check/order-send accept inline and file-based JSON requests."""
|
|
output = tmp_path / "out.csv"
|
|
args = ["-o", str(output), command]
|
|
if use_file:
|
|
req_path = tmp_path / "req.json"
|
|
req_path.write_text(json.dumps(payload), encoding="utf-8")
|
|
args += ["--request", f"@{req_path}"]
|
|
else:
|
|
args += ["--request", json.dumps(payload)]
|
|
if command == "order-send":
|
|
args.append("--yes")
|
|
result = runner.invoke(app, args)
|
|
assert result.exit_code == 0, result.output
|
|
getattr(mock_client, method).assert_called_once_with(request=payload)
|
|
|
|
@pytest.mark.parametrize(
|
|
("command", "raw_request", "match"),
|
|
[
|
|
("order-check", "not-json", "Invalid JSON request"),
|
|
("order-send", "[1,2]", "must be a JSON object"),
|
|
],
|
|
ids=["check-invalid-json", "send-non-object"],
|
|
)
|
|
def test_order_invalid_request(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock, # noqa: ARG002
|
|
command: str,
|
|
raw_request: str,
|
|
match: str,
|
|
) -> None:
|
|
"""Test order-check/order-send reject malformed JSON requests."""
|
|
output = tmp_path / "out.csv"
|
|
args = ["-o", str(output), command, "--request", raw_request]
|
|
if command == "order-send":
|
|
args.append("--yes")
|
|
result = runner.invoke(app, args)
|
|
assert result.exit_code != 0
|
|
assert match in normalize_cli_output(result.output)
|
|
|
|
def test_order_check_missing_request_file(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock, # noqa: ARG002
|
|
) -> None:
|
|
"""Test order-check rejects a missing request file."""
|
|
output = tmp_path / "out.csv"
|
|
missing = tmp_path / "missing.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "order-check", "--request", f"@{missing}"],
|
|
)
|
|
assert result.exit_code != 0
|
|
assert "Failed to read JSON request file" in normalize_cli_output(
|
|
result.output,
|
|
)
|
|
|
|
def test_order_send_requires_yes(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test order-send requires explicit confirmation."""
|
|
output = tmp_path / "out.csv"
|
|
request = json.dumps({"action": 1, "symbol": "EURUSD"})
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "order-send", "--request", request],
|
|
)
|
|
assert result.exit_code != 0
|
|
assert "Pass --yes to send a live trade request" in normalize_cli_output(
|
|
result.output,
|
|
)
|
|
mock_client.order_send_as_df.assert_not_called()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Help text / scope tests
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestHelpText:
|
|
"""Tests verifying CLI help text matches the documented scope."""
|
|
|
|
def test_top_level_help_mentions_execution(self) -> None:
|
|
"""Top-level help must describe execution utilities, not export only."""
|
|
result = runner.invoke(app, ["--help"])
|
|
assert result.exit_code == 0
|
|
output = normalize_cli_output(result.output)
|
|
assert "execution" in output.lower()
|
|
|
|
@pytest.mark.parametrize("panel", ["Execution", "Data / Export"])
|
|
def test_top_level_help_has_panel(self, panel: str) -> None:
|
|
"""Top-level help must show all command group panels."""
|
|
result = runner.invoke(app, ["--help"])
|
|
assert result.exit_code == 0
|
|
assert panel in result.output
|
|
|
|
@pytest.mark.parametrize("keyword", ["raw", "expert", "live"])
|
|
def test_order_send_help_keywords(self, keyword: str) -> None:
|
|
"""order-send help must mention raw, expert, and live."""
|
|
result = runner.invoke(app, ["-o", "out.csv", "order-send", "--help"])
|
|
assert result.exit_code == 0
|
|
assert keyword in normalize_cli_output(result.output).lower()
|
|
|
|
def test_close_positions_help_mentions_dry_run_and_yes(self) -> None:
|
|
"""close-positions help must document both safety gates."""
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", "out.csv", "close-positions", "--help"],
|
|
)
|
|
assert result.exit_code == 0
|
|
output = normalize_cli_output(result.output)
|
|
assert "--dry-run" in output
|
|
assert "--yes" in output
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# close-positions command
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _build_mock_trading_client() -> MagicMock:
|
|
"""Return a MagicMock Mt5TradingClient with trading constants set."""
|
|
client = MagicMock()
|
|
client.mt5.POSITION_TYPE_BUY = 0
|
|
client.mt5.POSITION_TYPE_SELL = 1
|
|
client.mt5.ORDER_TYPE_BUY = 10
|
|
client.mt5.ORDER_TYPE_SELL = 11
|
|
client.mt5.TRADE_ACTION_DEAL = 20
|
|
client.mt5.ORDER_FILLING_IOC = 30
|
|
client.mt5.ORDER_TIME_GTC = 40
|
|
client.mt5.TRADE_RETCODE_DONE = 10009
|
|
client.mt5.TRADE_RETCODE_PLACED = 10008
|
|
client.mt5.TRADE_RETCODE_DONE_PARTIAL = 10010
|
|
return client
|
|
|
|
|
|
class TestClosePositions:
|
|
"""Tests for the close-positions command."""
|
|
|
|
@pytest.fixture
|
|
def trading_client(self, mocker: MockerFixture) -> MagicMock:
|
|
"""Patch create_trading_client and return a mock trading client."""
|
|
client = _build_mock_trading_client()
|
|
client.positions_get_as_df.return_value = pd.DataFrame([
|
|
{"ticket": 1, "symbol": "JP225", "type": 0, "volume": 1.0, "magic": 7},
|
|
{"ticket": 2, "symbol": "EURUSD", "type": 1, "volume": 0.5, "magic": 9},
|
|
])
|
|
client.symbol_info_tick_as_dict.return_value = {"ask": 1.2, "bid": 1.1}
|
|
mocker.patch("mt5cli.cli.create_trading_client", return_value=client)
|
|
return client
|
|
|
|
@pytest.mark.parametrize(
|
|
("extra_args", "order_send_called"),
|
|
[
|
|
pytest.param(["--dry-run"], False, id="dry-run without --yes"),
|
|
pytest.param(["--dry-run", "--yes"], False, id="dry-run with --yes"),
|
|
],
|
|
)
|
|
def test_dry_run_does_not_send_orders(
|
|
self,
|
|
tmp_path: Path,
|
|
trading_client: MagicMock,
|
|
extra_args: list[str],
|
|
order_send_called: bool,
|
|
) -> None:
|
|
"""Test --dry-run mode succeeds and never sends orders."""
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"close-positions",
|
|
"--symbol",
|
|
"JP225",
|
|
*extra_args,
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
assert output.exists()
|
|
assert trading_client.order_send.called == order_send_called
|
|
trading_client.shutdown.assert_called_once()
|
|
|
|
@pytest.mark.parametrize(
|
|
("extra_args", "yes_included"),
|
|
[
|
|
pytest.param([], False, id="live-requires-yes"),
|
|
pytest.param(["--yes"], True, id="live-with-yes-calls-order-send"),
|
|
],
|
|
)
|
|
def test_close_positions_yes_gate(
|
|
self,
|
|
tmp_path: Path,
|
|
trading_client: MagicMock,
|
|
extra_args: list[str],
|
|
yes_included: bool,
|
|
) -> None:
|
|
"""Test --yes gates live close-positions execution."""
|
|
trading_client.order_send.return_value = {"retcode": 10009, "comment": "ok"}
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "close-positions", "--symbol", "JP225", *extra_args],
|
|
)
|
|
if yes_included:
|
|
assert result.exit_code == 0, result.output
|
|
trading_client.order_send.assert_called_once()
|
|
trading_client.shutdown.assert_called_once()
|
|
else:
|
|
assert result.exit_code != 0
|
|
assert "Pass --yes" in normalize_cli_output(result.output)
|
|
trading_client.order_send.assert_not_called()
|
|
|
|
@pytest.mark.parametrize(
|
|
("extra_args", "expected_symbols"),
|
|
[
|
|
(["--symbol", "JP225"], {"JP225"}),
|
|
(["--symbol", "JP225", "--symbol", "EURUSD"], {"JP225", "EURUSD"}),
|
|
(["--ticket", "2"], {"EURUSD"}),
|
|
(["--symbol", "JP225", "--ticket", "1"], {"JP225"}),
|
|
],
|
|
ids=["single-symbol", "multiple-symbols", "ticket", "symbol-and-ticket"],
|
|
)
|
|
def test_close_positions_filter(
|
|
self,
|
|
tmp_path: Path,
|
|
trading_client: MagicMock,
|
|
extra_args: list[str],
|
|
expected_symbols: set[str],
|
|
) -> None:
|
|
"""--symbol/--ticket filters select the expected positions under --dry-run."""
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "close-positions", "--dry-run", *extra_args],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
data = json.loads(output.read_text())
|
|
assert {row["symbol"] for row in data} == expected_symbols
|
|
assert len(data) == len(expected_symbols)
|
|
trading_client.shutdown.assert_called_once()
|
|
|
|
def test_missing_symbol_and_ticket_fails(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test that omitting both --symbol and --ticket fails closed."""
|
|
mocker.patch("mt5cli.cli.create_trading_client")
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "close-positions", "--dry-run"],
|
|
)
|
|
assert result.exit_code != 0
|
|
assert "symbol" in normalize_cli_output(result.output).lower()
|
|
|
|
def test_output_export_dry_run(
|
|
self,
|
|
tmp_path: Path,
|
|
trading_client: MagicMock,
|
|
) -> None:
|
|
"""Test dry-run results export with status=dry_run."""
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "close-positions", "--symbol", "JP225", "--dry-run"],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
trading_client.shutdown.assert_called_once()
|
|
data = json.loads(output.read_text())
|
|
assert data[0]["status"] == "dry_run"
|
|
assert data[0]["dry_run"] is True
|
|
assert data[0]["order_side"] == "SELL"
|
|
|
|
def test_close_positions_dry_run_forwards_request_fields(
|
|
self,
|
|
tmp_path: Path,
|
|
trading_client: MagicMock,
|
|
) -> None:
|
|
"""Dry-run close export preserves deviation/comment/magic passthrough."""
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"close-positions",
|
|
"--symbol",
|
|
"JP225",
|
|
"--deviation",
|
|
"7",
|
|
"--comment",
|
|
"close-me",
|
|
"--magic",
|
|
"7",
|
|
"--dry-run",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
trading_client.order_send.assert_not_called()
|
|
data = json.loads(output.read_text())
|
|
assert len(data) == 1
|
|
assert data[0]["symbol"] == "JP225"
|
|
request = json.loads(data[0]["request"])
|
|
assert request["deviation"] == 7
|
|
assert request["comment"] == "close-me"
|
|
assert request["magic"] == 7
|
|
|
|
def test_order_send_unchanged(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test that order-send behavior is unchanged by close-positions addition."""
|
|
output = tmp_path / "out.csv"
|
|
request = json.dumps({"action": 1, "symbol": "EURUSD", "volume": 0.1})
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "order-send", "--request", request, "--yes"],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
mock_client.order_send_as_df.assert_called_once()
|
|
|
|
def test_shutdown_called_on_close_error(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test that shutdown is called even when close_open_positions raises."""
|
|
client = _build_mock_trading_client()
|
|
client.positions_get_as_df.side_effect = RuntimeError("connection lost")
|
|
mocker.patch("mt5cli.cli.create_trading_client", return_value=client)
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "close-positions", "--symbol", "JP225", "--dry-run"],
|
|
)
|
|
assert result.exit_code != 0
|
|
client.shutdown.assert_called_once()
|
|
|
|
def test_no_matching_positions_exports_empty_result(
|
|
self,
|
|
tmp_path: Path,
|
|
trading_client: MagicMock,
|
|
) -> None:
|
|
"""Test that zero filter matches produces an empty JSON array."""
|
|
trading_client.positions_get_as_df.return_value = pd.DataFrame([
|
|
{"ticket": 1, "symbol": "JP225", "type": 0, "volume": 1.0},
|
|
])
|
|
output = tmp_path / "close.json"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"close-positions",
|
|
"--symbol",
|
|
"NONEXISTENT",
|
|
"--dry-run",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
trading_client.shutdown.assert_called_once()
|
|
assert output.exists()
|
|
assert json.loads(output.read_text()) == []
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Callback / shared options
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestCallback:
|
|
"""Tests for callback (shared options)."""
|
|
|
|
def test_format_detection_error(self, tmp_path: Path) -> None:
|
|
"""Test that bad extension triggers a user-friendly error."""
|
|
output = tmp_path / "out.xyz"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "account-info"],
|
|
)
|
|
assert result.exit_code != 0
|
|
assert "Cannot detect format" in normalize_cli_output(result.output)
|
|
|
|
def test_connection_args_forwarded(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test that connection arguments reach Mt5Config."""
|
|
mock_client = MagicMock()
|
|
mock_client.account_info_as_df.return_value = pd.DataFrame({"a": [1]})
|
|
mt5_client = mocker.patch(
|
|
"mt5cli.sdk.Mt5DataClient",
|
|
return_value=mock_client,
|
|
)
|
|
output = tmp_path / "out.csv"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"--login",
|
|
"123",
|
|
"--password",
|
|
"pw",
|
|
"--server",
|
|
"srv",
|
|
"-o",
|
|
str(output),
|
|
"account-info",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
config = mt5_client.call_args.kwargs["config"]
|
|
assert config.path is None
|
|
assert config.login == 123
|
|
assert config.password is not None
|
|
assert config.password.get_secret_value() == "pw"
|
|
assert config.server == "srv"
|
|
assert config.timeout is None
|
|
|
|
@pytest.mark.parametrize(
|
|
("env", "extra_args", "expected"),
|
|
[
|
|
pytest.param(
|
|
{
|
|
"MT5_LOGIN": "456",
|
|
"MT5_PASSWORD": "env-pass",
|
|
"MT5_SERVER": "Env-Server",
|
|
},
|
|
[],
|
|
{"login": 456, "password": "env-pass", "server": "Env-Server"},
|
|
id="env-defaults",
|
|
),
|
|
pytest.param(
|
|
{
|
|
"MT5_LOGIN": "456",
|
|
"MT5_PASSWORD": "env-pass",
|
|
"MT5_SERVER": "Env-Server",
|
|
},
|
|
["--login", "123", "--password", "cli-pass", "--server", "Cli-Server"],
|
|
{"login": 123, "password": "cli-pass", "server": "Cli-Server"},
|
|
id="cli-overrides-env",
|
|
),
|
|
],
|
|
)
|
|
def test_connection_args_resolve_env_and_precedence(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
env: dict[str, str],
|
|
extra_args: list[str],
|
|
expected: dict[str, object],
|
|
) -> None:
|
|
"""CLI args fall back to env vars and preserve explicit precedence."""
|
|
for name, value in env.items():
|
|
monkeypatch.setenv(name, value)
|
|
mock_client = MagicMock()
|
|
mock_client.account_info_as_df.return_value = pd.DataFrame({"a": [1]})
|
|
mt5_client = mocker.patch(
|
|
"mt5cli.sdk.Mt5DataClient",
|
|
return_value=mock_client,
|
|
)
|
|
output = tmp_path / "out.csv"
|
|
|
|
result = runner.invoke(app, [*extra_args, "-o", str(output), "account-info"])
|
|
|
|
assert result.exit_code == 0, result.output
|
|
config = mt5_client.call_args.kwargs["config"]
|
|
assert config.login == expected["login"]
|
|
assert config.password is not None
|
|
assert config.password.get_secret_value() == expected["password"]
|
|
assert config.server == expected["server"]
|
|
|
|
def test_help_documents_mt5_env_vars(self) -> None:
|
|
"""Top-level help output should expose the supported MT5 env vars."""
|
|
result = runner.invoke(app, ["--help"])
|
|
|
|
assert result.exit_code == 0, result.output
|
|
normalized = normalize_cli_output(result.output)
|
|
for env_name in ("MT5_LOGIN", "MT5_PASSWORD", "MT5_SERVER", "MT5_PATH"):
|
|
assert env_name in normalized
|
|
|
|
def test_gap_granularity_helpers_cover_unknown_cases(self) -> None:
|
|
"""Gap-table granularity helpers should fail cleanly for unknown inputs."""
|
|
assert _timeframe_interval_seconds(49153) is None
|
|
assert _infer_gap_table_granularity_seconds("custom_rates") is None
|
|
|
|
@pytest.mark.parametrize(
|
|
("args", "env", "exit_code", "match"),
|
|
[
|
|
pytest.param(
|
|
["--login", "${CLI_MT5_LOGIN}", "--server", "${CLI_MT5_SERVER}"],
|
|
{"CLI_MT5_LOGIN": "789", "CLI_MT5_SERVER": "Placeholder-Server"},
|
|
0,
|
|
None,
|
|
id="placeholder-expansion",
|
|
),
|
|
pytest.param(
|
|
["--password", "${CLI_MT5_MISSING}"],
|
|
{},
|
|
2,
|
|
"Environment variable 'CLI_MT5_MISSING' is not set.",
|
|
id="missing-placeholder",
|
|
),
|
|
],
|
|
)
|
|
def test_cli_placeholder_resolution(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
args: list[str],
|
|
env: dict[str, str],
|
|
exit_code: int,
|
|
match: str | None,
|
|
) -> None:
|
|
"""CLI config fields support SDK-style ${ENV_VAR} placeholders."""
|
|
for name, value in env.items():
|
|
monkeypatch.setenv(name, value)
|
|
mock_client = MagicMock()
|
|
mock_client.account_info_as_df.return_value = pd.DataFrame({"a": [1]})
|
|
mt5_client = mocker.patch(
|
|
"mt5cli.sdk.Mt5DataClient",
|
|
return_value=mock_client,
|
|
)
|
|
output = tmp_path / "out.csv"
|
|
|
|
result = runner.invoke(app, [*args, "-o", str(output), "account-info"])
|
|
|
|
assert result.exit_code == exit_code, result.output
|
|
if exit_code == 0:
|
|
config = mt5_client.call_args.kwargs["config"]
|
|
assert config.login == 789
|
|
assert config.server == "Placeholder-Server"
|
|
else:
|
|
assert match is not None
|
|
assert match in normalize_cli_output(result.output)
|
|
|
|
def test_explicit_format(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock, # noqa: ARG002
|
|
) -> None:
|
|
"""Test explicit --format flag."""
|
|
output = tmp_path / "out.txt"
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "--format", "json", "account-info"],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
assert output.exists()
|
|
|
|
def test_sqlite3_with_table(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test SQLite3 output with custom table name."""
|
|
mock_client = MagicMock()
|
|
mock_client.symbols_get_as_df.return_value = pd.DataFrame(
|
|
{"s": ["EURUSD"]},
|
|
)
|
|
mocker.patch(
|
|
"mt5cli.sdk.Mt5DataClient",
|
|
return_value=mock_client,
|
|
)
|
|
output = tmp_path / "out.db"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"--table",
|
|
"symbols",
|
|
"symbols",
|
|
"--group",
|
|
"*USD*",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
result_df = pd.read_sql( # type: ignore[reportUnknownMemberType]
|
|
"SELECT * FROM symbols",
|
|
conn,
|
|
)
|
|
assert len(result_df) == 1
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# main entry point
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
_DEALS_FIXTURE: dict[str, list[object]] = {
|
|
"ticket": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
|
|
"position_id": [100, 100, 100, 0, 200, 200, 300, 400, 400, 500, 500, 600, 600, 600],
|
|
"symbol": [
|
|
"EURUSD",
|
|
"EURUSD",
|
|
"EURUSD",
|
|
"",
|
|
"EURUSD",
|
|
"EURUSD",
|
|
"GBPUSD",
|
|
"GBPUSD",
|
|
"GBPUSD",
|
|
"EURUSD",
|
|
"EURUSD",
|
|
"GBPUSD",
|
|
"GBPUSD",
|
|
"GBPUSD",
|
|
],
|
|
"time": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
|
|
# type: 0=BUY, 1=SELL, 2=BALANCE
|
|
"type": [0, 0, 1, 2, 0, 1, 0, 0, 2, 0, 1, 0, 1, 1],
|
|
# entry: 0=IN, 1=OUT, 2=INOUT (reversal), 3=OUT_BY
|
|
"entry": [0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 3, 0, 2, 1],
|
|
"volume": [1.0, 3.0, 4.0, 0.0, 2.0, 2.0, 5.0, 1.0, 1.0, 2.0, 2.0, 3.0, 1.0, 3.0],
|
|
"price": [
|
|
1.10,
|
|
1.20,
|
|
1.50,
|
|
0.0,
|
|
2.00,
|
|
2.20,
|
|
1.30,
|
|
1.30,
|
|
1.40,
|
|
1.00,
|
|
1.05,
|
|
1.10,
|
|
9.99,
|
|
1.40,
|
|
],
|
|
"profit": [0.0, 0.0, 10.0, 5.0, 0.0, 8.0, 0.0, 0.0, -1.0, 0.0, 3.0, 0.0, -2.0, 7.0],
|
|
}
|
|
|
|
|
|
def _build_history_client(mocker: MockerFixture) -> MagicMock:
|
|
"""Build a mocked Mt5DataClient with per-symbol history results."""
|
|
client = MagicMock()
|
|
|
|
def _rates(**kwargs: object) -> pd.DataFrame:
|
|
return pd.DataFrame({
|
|
"time": [1],
|
|
"open": [1.0],
|
|
"symbol_arg": [kwargs.get("symbol")],
|
|
})
|
|
|
|
def _ticks(**kwargs: object) -> pd.DataFrame:
|
|
return pd.DataFrame({
|
|
"time": [1],
|
|
"bid": [1.0],
|
|
"symbol_arg": [kwargs.get("symbol")],
|
|
})
|
|
|
|
client.copy_rates_range_as_df.side_effect = _rates
|
|
client.copy_ticks_range_as_df.side_effect = _ticks
|
|
|
|
def _orders(**kwargs: object) -> pd.DataFrame:
|
|
return pd.DataFrame({"ticket": [10], "symbol": [kwargs.get("symbol")]})
|
|
|
|
def _deals(**kwargs: object) -> pd.DataFrame:
|
|
sym = kwargs.get("symbol")
|
|
df = pd.DataFrame(_DEALS_FIXTURE)
|
|
return df[df["symbol"] == sym].reset_index(drop=True)
|
|
|
|
client.history_orders_get_as_df.side_effect = _orders
|
|
client.history_deals_get_as_df.side_effect = _deals
|
|
mocker.patch("mt5cli.sdk.Mt5DataClient", return_value=client)
|
|
return client
|
|
|
|
|
|
class TestCollectHistory:
|
|
"""Tests for the collect-history command."""
|
|
|
|
@pytest.fixture
|
|
def history_client(self, mocker: MockerFixture) -> MagicMock:
|
|
"""Create a mocked Mt5DataClient with history-style DataFrames."""
|
|
return _build_history_client(mocker)
|
|
|
|
@pytest.mark.parametrize(
|
|
(
|
|
"extra_args",
|
|
"symbols",
|
|
"expected_rates_calls",
|
|
"expected_ticks_calls",
|
|
"required_tables",
|
|
"forbidden_table",
|
|
"verify_ticks_call",
|
|
),
|
|
[
|
|
pytest.param(
|
|
[],
|
|
["EURUSD", "GBPUSD"],
|
|
2,
|
|
0,
|
|
{"rates", "history_orders", "history_deals"},
|
|
"ticks",
|
|
False,
|
|
id="default-excludes-ticks",
|
|
),
|
|
pytest.param(
|
|
["--dataset", "ticks"],
|
|
["EURUSD"],
|
|
0,
|
|
1,
|
|
{"ticks"},
|
|
"rates",
|
|
True,
|
|
id="explicit-ticks",
|
|
),
|
|
],
|
|
)
|
|
def test_collect_history_default_and_ticks_dataset(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock,
|
|
extra_args: list[str],
|
|
symbols: list[str],
|
|
expected_rates_calls: int,
|
|
expected_ticks_calls: int,
|
|
required_tables: set[str],
|
|
forbidden_table: str,
|
|
verify_ticks_call: bool,
|
|
) -> None:
|
|
"""Test default vs --dataset ticks selection for collect-history."""
|
|
output = tmp_path / "history.db"
|
|
args = [
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
]
|
|
for symbol in symbols:
|
|
args.extend(["--symbol", symbol])
|
|
args.extend(extra_args)
|
|
result = runner.invoke(app, args)
|
|
assert result.exit_code == 0, result.output
|
|
assert history_client.copy_rates_range_as_df.call_count == expected_rates_calls
|
|
assert history_client.copy_ticks_range_as_df.call_count == expected_ticks_calls
|
|
if verify_ticks_call:
|
|
history_client.copy_ticks_range_as_df.assert_called_once_with(
|
|
symbol="EURUSD",
|
|
date_from=datetime(2024, 1, 1, tzinfo=UTC),
|
|
date_to=datetime(2024, 2, 1, tzinfo=UTC),
|
|
flags=-1,
|
|
)
|
|
with sqlite3.connect(output) as conn:
|
|
tables = {
|
|
row[0]
|
|
for row in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='table'",
|
|
).fetchall()
|
|
}
|
|
assert required_tables <= tables
|
|
assert forbidden_table not in tables
|
|
|
|
def test_collect_history_history_fetched_per_symbol(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock,
|
|
) -> None:
|
|
"""Test that history-orders and history-deals are fetched per symbol."""
|
|
output = tmp_path / "history.db"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--symbol",
|
|
"GBPUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
assert history_client.history_orders_get_as_df.call_count == 2
|
|
assert history_client.history_deals_get_as_df.call_count == 2
|
|
history_client.history_orders_get_as_df.assert_any_call(
|
|
date_from=datetime(2024, 1, 1, tzinfo=UTC),
|
|
date_to=datetime(2024, 2, 1, tzinfo=UTC),
|
|
symbol="EURUSD",
|
|
)
|
|
history_client.history_deals_get_as_df.assert_any_call(
|
|
date_from=datetime(2024, 1, 1, tzinfo=UTC),
|
|
date_to=datetime(2024, 2, 1, tzinfo=UTC),
|
|
symbol="GBPUSD",
|
|
)
|
|
|
|
@pytest.mark.parametrize(
|
|
("selected", "expected_tables", "excluded_calls"),
|
|
[
|
|
(
|
|
["rates", "history-deals"],
|
|
{"rates", "history_deals"},
|
|
("copy_ticks_range_as_df", "history_orders_get_as_df"),
|
|
),
|
|
(
|
|
["ticks", "history-orders"],
|
|
{"ticks", "history_orders"},
|
|
("copy_rates_range_as_df", "history_deals_get_as_df"),
|
|
),
|
|
],
|
|
)
|
|
def test_collect_history_dataset_selection(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock,
|
|
selected: list[str],
|
|
expected_tables: set[str],
|
|
excluded_calls: tuple[str, ...],
|
|
) -> None:
|
|
"""Test that --dataset limits which datasets are fetched and written."""
|
|
output = tmp_path / "history.db"
|
|
args = [
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
]
|
|
for name in selected:
|
|
args.extend(["--dataset", name])
|
|
result = runner.invoke(app, args)
|
|
assert result.exit_code == 0, result.output
|
|
for name in excluded_calls:
|
|
getattr(history_client, name).assert_not_called()
|
|
with sqlite3.connect(output) as conn:
|
|
tables = {
|
|
row[0]
|
|
for row in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='table'",
|
|
).fetchall()
|
|
}
|
|
assert expected_tables <= tables
|
|
assert tables.isdisjoint(
|
|
{"rates", "ticks", "history_orders", "history_deals"} - expected_tables
|
|
)
|
|
|
|
def test_collect_history_rates_table_has_timeframe(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock, # noqa: ARG002
|
|
) -> None:
|
|
"""Test that the rates table carries the requested timeframe value."""
|
|
output = tmp_path / "history.db"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--timeframe",
|
|
"H1",
|
|
"--dataset",
|
|
"rates",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
rows = conn.execute(
|
|
"SELECT DISTINCT timeframe FROM rates",
|
|
).fetchall()
|
|
assert rows == [(16385,)]
|
|
|
|
@pytest.mark.parametrize(
|
|
("if_exists", "second_exit_code", "expected_count"),
|
|
[
|
|
pytest.param("append", 0, 2, id="append-accumulates-rows"),
|
|
pytest.param("fail", 1, 1, id="fail-rejects-existing-table"),
|
|
],
|
|
)
|
|
def test_collect_history_if_exists(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock, # noqa: ARG002
|
|
if_exists: str,
|
|
second_exit_code: int,
|
|
expected_count: int,
|
|
) -> None:
|
|
"""Test --if-exists=append accumulates and --if-exists=fail rejects."""
|
|
output = tmp_path / "history.db"
|
|
common = [
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--dataset",
|
|
"rates",
|
|
]
|
|
first = runner.invoke(app, common)
|
|
second = runner.invoke(app, [*common, "--if-exists", if_exists])
|
|
assert first.exit_code == 0, first.output
|
|
assert second.exit_code == second_exit_code, second.output
|
|
with sqlite3.connect(output) as conn:
|
|
(count,) = conn.execute("SELECT COUNT(*) FROM rates").fetchone()
|
|
assert count == expected_count
|
|
|
|
def test_collect_history_with_views(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock, # noqa: ARG002
|
|
) -> None:
|
|
"""Test that --with-views creates cash_events and positions views."""
|
|
output = tmp_path / "history.db"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--symbol",
|
|
"GBPUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--with-views",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
views = {
|
|
row[0]
|
|
for row in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='view'",
|
|
).fetchall()
|
|
}
|
|
cash = conn.execute("SELECT type FROM cash_events").fetchall()
|
|
positions = {
|
|
row[0]: row
|
|
for row in conn.execute(
|
|
"SELECT position_id, volume_open, volume_close,"
|
|
" volume_reversal, open_price, close_price, reversal_count"
|
|
" FROM positions_reconstructed",
|
|
).fetchall()
|
|
}
|
|
assert {"cash_events", "positions_reconstructed"} <= views
|
|
assert all(row[0] not in {0, 1} for row in cash)
|
|
# Position 100 (BUY 1@1.10 + BUY 3@1.20 then SELL 4@1.50) is closed.
|
|
# Position 200 (BUY 2@2.00 then SELL 2@2.20) is closed.
|
|
# Position 400 (reversal-only with non-trade deal type) stays excluded.
|
|
assert set(positions) == {100, 200, 500, 600}
|
|
pos_100 = positions[100]
|
|
tol = 1e-9
|
|
assert abs(pos_100[1] - 4.0) < tol # volume_open
|
|
assert abs(pos_100[2] - 4.0) < tol # volume_close
|
|
assert abs(pos_100[3] - 0.0) < tol # volume_reversal
|
|
# Volume-weighted open: (1*1.10 + 3*1.20) / 4 = 1.175
|
|
assert abs(pos_100[4] - 1.175) < tol
|
|
# Volume-weighted close: (4*1.50) / 4 = 1.50
|
|
assert abs(pos_100[5] - 1.50) < tol
|
|
assert pos_100[6] == 0 # reversal_count
|
|
pos_500 = positions[500]
|
|
assert abs(pos_500[2] - 2.0) < tol # OUT_BY contributes to close volume
|
|
assert abs(pos_500[5] - 1.05) < tol
|
|
pos_600 = positions[600]
|
|
assert abs(pos_600[1] - 3.0) < tol
|
|
assert abs(pos_600[2] - 4.0) < tol # reversal + close volumes
|
|
assert abs(pos_600[3] - 1.0) < tol
|
|
assert abs(pos_600[4] - 1.10) < tol
|
|
assert abs(pos_600[5] - 3.5475) < tol
|
|
assert pos_600[6] == 1
|
|
|
|
def test_collect_history_filters_history_symbols_exactly(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test that history wildcard results are filtered to exact symbols."""
|
|
client = MagicMock()
|
|
client.history_orders_get_as_df.return_value = pd.DataFrame({
|
|
"ticket": [1, 2],
|
|
"symbol": ["EURUSD", "EURUSDm"],
|
|
})
|
|
client.history_deals_get_as_df.return_value = pd.DataFrame({
|
|
"ticket": [3, 4],
|
|
"symbol": ["EURUSD", "EURUSDm"],
|
|
})
|
|
mocker.patch("mt5cli.sdk.Mt5DataClient", return_value=client)
|
|
output = tmp_path / "history.db"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--dataset",
|
|
"history-orders",
|
|
"--dataset",
|
|
"history-deals",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
order_symbols = conn.execute(
|
|
"SELECT DISTINCT symbol FROM history_orders",
|
|
).fetchall()
|
|
deal_symbols = conn.execute(
|
|
"SELECT DISTINCT symbol FROM history_deals",
|
|
).fetchall()
|
|
assert order_symbols == [("EURUSD",)]
|
|
assert deal_symbols == [("EURUSD",)]
|
|
|
|
@pytest.mark.parametrize(
|
|
("output_name", "extra_args", "expected_fragment"),
|
|
[
|
|
pytest.param(
|
|
"history.csv",
|
|
["--symbol", "EURUSD"],
|
|
"requires SQLite3",
|
|
id="non-sqlite-format",
|
|
),
|
|
pytest.param("history.db", [], None, id="missing-symbol"),
|
|
],
|
|
)
|
|
def test_collect_history_validation_failures(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock, # noqa: ARG002
|
|
output_name: str,
|
|
extra_args: list[str],
|
|
expected_fragment: str | None,
|
|
) -> None:
|
|
"""Test collect-history rejects invalid output format and missing symbols."""
|
|
output = tmp_path / output_name
|
|
args = [
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
*extra_args,
|
|
]
|
|
result = runner.invoke(app, args)
|
|
assert result.exit_code != 0
|
|
if expected_fragment is not None:
|
|
assert expected_fragment in normalize_cli_output(result.output)
|
|
|
|
def test_collect_history_views_skipped_when_columns_missing(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
caplog: pytest.LogCaptureFixture,
|
|
) -> None:
|
|
"""Test that views are not created when required columns are missing."""
|
|
client = MagicMock()
|
|
client.copy_rates_range_as_df.return_value = pd.DataFrame({"x": [1]})
|
|
client.copy_ticks_range_as_df.return_value = pd.DataFrame({"x": [1]})
|
|
client.history_orders_get_as_df.return_value = pd.DataFrame({"x": [1]})
|
|
client.history_deals_get_as_df.return_value = pd.DataFrame({"x": [1]})
|
|
mocker.patch("mt5cli.sdk.Mt5DataClient", return_value=client)
|
|
output = tmp_path / "history.db"
|
|
with caplog.at_level(logging.WARNING, logger="mt5cli.sdk"):
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--with-views",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
views = {
|
|
row[0]
|
|
for row in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='view'",
|
|
).fetchall()
|
|
}
|
|
assert "cash_events" not in views
|
|
assert "positions_reconstructed" not in views
|
|
assert "Skipping cash_events view" in caplog.text
|
|
assert "Skipping positions_reconstructed view" in caplog.text
|
|
|
|
def test_collect_history_skips_empty_history_without_columns(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
) -> None:
|
|
"""Test that empty no-column history results do not fail collection."""
|
|
client = MagicMock()
|
|
client.copy_rates_range_as_df.return_value = pd.DataFrame({"time": [1]})
|
|
client.history_deals_get_as_df.return_value = pd.DataFrame()
|
|
mocker.patch("mt5cli.sdk.Mt5DataClient", return_value=client)
|
|
output = tmp_path / "history.db"
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--dataset",
|
|
"rates",
|
|
"--dataset",
|
|
"history-deals",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
tables = {
|
|
row[0]
|
|
for row in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='table'",
|
|
).fetchall()
|
|
}
|
|
assert "rates" in tables
|
|
assert "history_deals" not in tables
|
|
|
|
def test_collect_history_warns_when_views_requested_without_deals(
|
|
self,
|
|
tmp_path: Path,
|
|
history_client: MagicMock, # noqa: ARG002
|
|
caplog: pytest.LogCaptureFixture,
|
|
) -> None:
|
|
"""Test that --with-views warns when history_deals is not written."""
|
|
output = tmp_path / "history.db"
|
|
with caplog.at_level(logging.WARNING, logger="mt5cli.sdk"):
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"collect-history",
|
|
"--symbol",
|
|
"EURUSD",
|
|
"--date-from",
|
|
"2024-01-01",
|
|
"--date-to",
|
|
"2024-02-01",
|
|
"--dataset",
|
|
"rates",
|
|
"--with-views",
|
|
],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
assert (
|
|
"--with-views ignored: history_deals table was not written" in caplog.text
|
|
)
|
|
|
|
|
|
class TestHistoryGapsCommand:
|
|
"""Tests for the history-gaps CLI command."""
|
|
|
|
@pytest.mark.parametrize(
|
|
("extra_args", "expected_tables", "expected_rows"),
|
|
[
|
|
pytest.param([], {"rate_EURUSD__M1_1", "rate_GBPUSD__M1_1"}, 2, id="all"),
|
|
pytest.param(
|
|
["--table", "rate_EURUSD__M1_1"],
|
|
{"rate_EURUSD__M1_1"},
|
|
1,
|
|
id="explicit-table",
|
|
),
|
|
],
|
|
)
|
|
def test_history_gaps_exports_sqlite_report_without_mt5(
|
|
self,
|
|
tmp_path: Path,
|
|
mock_client: MagicMock,
|
|
extra_args: list[str],
|
|
expected_tables: set[str],
|
|
expected_rows: int,
|
|
) -> None:
|
|
"""history-gaps reads SQLite only and exports one row per gap."""
|
|
database = tmp_path / "history.db"
|
|
output = tmp_path / "gaps.json"
|
|
with sqlite3.connect(database) as conn:
|
|
conn.execute(
|
|
"CREATE TABLE rates("
|
|
"symbol TEXT, timeframe INTEGER, time TEXT, close REAL"
|
|
")",
|
|
)
|
|
conn.executemany(
|
|
"INSERT INTO rates(symbol, timeframe, time, close) VALUES (?, ?, ?, ?)",
|
|
[
|
|
("EURUSD", 1, "2024-01-01T00:00:00+00:00", 1.0),
|
|
("EURUSD", 1, "2024-01-01T00:02:00+00:00", 1.1),
|
|
("GBPUSD", 1, "2024-01-01T00:00:00+00:00", 1.2),
|
|
("GBPUSD", 1, "2024-01-01T00:02:00+00:00", 1.3),
|
|
],
|
|
)
|
|
conn.execute(
|
|
'CREATE VIEW "rate_EURUSD__M1_1" AS '
|
|
"SELECT time, close FROM rates "
|
|
"WHERE symbol = 'EURUSD' AND timeframe = 1",
|
|
)
|
|
conn.execute(
|
|
'CREATE VIEW "rate_GBPUSD__M1_1" AS '
|
|
"SELECT time, close FROM rates "
|
|
"WHERE symbol = 'GBPUSD' AND timeframe = 1",
|
|
)
|
|
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"history-gaps",
|
|
"--sqlite3",
|
|
str(database),
|
|
*extra_args,
|
|
],
|
|
)
|
|
|
|
assert result.exit_code == 0, result.output
|
|
data = json.loads(output.read_text())
|
|
assert len(data) == expected_rows
|
|
assert {row["table"] for row in data} == expected_tables
|
|
mock_client.initialize_and_login_mt5.assert_not_called()
|
|
|
|
def test_history_gaps_requires_compatible_default_views(
|
|
self,
|
|
tmp_path: Path,
|
|
) -> None:
|
|
"""Without --table, history-gaps should reject DBs with no managed views."""
|
|
database = tmp_path / "empty.db"
|
|
output = tmp_path / "gaps.json"
|
|
with sqlite3.connect(database):
|
|
pass
|
|
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(output), "history-gaps", "--sqlite3", str(database)],
|
|
)
|
|
|
|
assert result.exit_code != 0
|
|
assert "No managed rate compatibility views found" in result.output
|
|
|
|
def test_history_gaps_requires_granularity_for_custom_tables(
|
|
self,
|
|
tmp_path: Path,
|
|
) -> None:
|
|
"""Custom tables need an explicit granularity when no view naming exists."""
|
|
database = tmp_path / "custom.db"
|
|
output = tmp_path / "gaps.json"
|
|
with sqlite3.connect(database) as conn:
|
|
conn.execute("CREATE TABLE custom_rates(time TEXT, close REAL)")
|
|
conn.executemany(
|
|
"INSERT INTO custom_rates(time, close) VALUES (?, ?)",
|
|
[
|
|
("2024-01-01T00:00:00+00:00", 1.0),
|
|
("2024-01-01T00:02:00+00:00", 1.1),
|
|
],
|
|
)
|
|
|
|
result = runner.invoke(
|
|
app,
|
|
[
|
|
"-o",
|
|
str(output),
|
|
"history-gaps",
|
|
"--sqlite3",
|
|
str(database),
|
|
"--table",
|
|
"custom_rates",
|
|
],
|
|
)
|
|
|
|
assert result.exit_code != 0
|
|
output = normalize_cli_output(result.output)
|
|
assert "Could not infer granularity" in output
|
|
assert "'custom_rates'" in output
|
|
assert re.search(r"--granularity-\s*seconds", output) is not None
|
|
|
|
|
|
class TestGrafanaSchemaCommand:
|
|
"""Tests for the grafana-schema CLI command."""
|
|
|
|
def test_grafana_schema_creates_snapshot_tables_in_sqlite(
|
|
self,
|
|
tmp_path: Path,
|
|
) -> None:
|
|
"""grafana-schema applies Grafana schema to a SQLite database."""
|
|
output = tmp_path / "out.db"
|
|
result = runner.invoke(app, ["-o", str(output), "grafana-schema"])
|
|
assert result.exit_code == 0, result.output
|
|
with sqlite3.connect(output) as conn:
|
|
tables = {
|
|
row[0]
|
|
for row in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='table'"
|
|
).fetchall()
|
|
}
|
|
assert "snapshot_runs" in tables
|
|
assert "account_snapshots" in tables
|
|
|
|
def test_grafana_schema_is_idempotent(self, tmp_path: Path) -> None:
|
|
"""grafana-schema can be invoked multiple times without error."""
|
|
output = tmp_path / "out.db"
|
|
result1 = runner.invoke(app, ["-o", str(output), "grafana-schema"])
|
|
result2 = runner.invoke(app, ["-o", str(output), "grafana-schema"])
|
|
assert result1.exit_code == 0, result1.output
|
|
assert result2.exit_code == 0, result2.output
|
|
|
|
|
|
class TestNonSqliteRejection:
|
|
"""Tests that SQLite-only commands reject non-SQLite output."""
|
|
|
|
@pytest.mark.parametrize(
|
|
("command", "match"),
|
|
[
|
|
("grafana-schema", "grafana-schema requires SQLite3 output"),
|
|
("snapshot", "snapshot requires SQLite3 output"),
|
|
],
|
|
ids=["grafana-schema", "snapshot"],
|
|
)
|
|
def test_rejects_non_sqlite_output(
|
|
self,
|
|
tmp_path: Path,
|
|
command: str,
|
|
match: str,
|
|
) -> None:
|
|
"""grafana-schema and snapshot reject non-SQLite output formats."""
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(tmp_path / "out.csv"), command],
|
|
)
|
|
assert result.exit_code != 0
|
|
assert match in result.output
|
|
|
|
|
|
class TestSnapshotCommand:
|
|
"""Tests for the snapshot CLI command."""
|
|
|
|
@pytest.mark.parametrize(
|
|
("extra_args", "expected_symbols"),
|
|
[
|
|
pytest.param([], None, id="no-symbol-filter"),
|
|
pytest.param(
|
|
["--symbol", "EURUSD", "--symbol", "GBPUSD"],
|
|
["EURUSD", "GBPUSD"],
|
|
id="with-symbol-filter",
|
|
),
|
|
],
|
|
)
|
|
def test_snapshot_delegates_to_update_observability_with_config(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
extra_args: list[str],
|
|
expected_symbols: list[str] | None,
|
|
) -> None:
|
|
"""Snapshot calls sdk.update_observability_with_config with forwarded kwargs."""
|
|
updater = mocker.patch("mt5cli.cli.sdk.update_observability_with_config")
|
|
output = tmp_path / "out.db"
|
|
result = runner.invoke(app, ["-o", str(output), "snapshot", *extra_args])
|
|
assert result.exit_code == 0, result.output
|
|
updater.assert_called_once()
|
|
kwargs = updater.call_args.kwargs
|
|
assert kwargs["output"] == output
|
|
assert kwargs["symbols"] == expected_symbols
|
|
assert kwargs["include_account"] is True
|
|
assert kwargs["include_positions"] is True
|
|
assert kwargs["include_orders"] is True
|
|
assert kwargs["include_terminal"] is True
|
|
assert kwargs["with_grafana_schema"] is False
|
|
|
|
@pytest.mark.parametrize(
|
|
("flag", "kwarg"),
|
|
[
|
|
("--no-account", "include_account"),
|
|
("--no-positions", "include_positions"),
|
|
("--no-orders", "include_orders"),
|
|
("--no-terminal", "include_terminal"),
|
|
("--no-grafana-schema", "with_grafana_schema"),
|
|
],
|
|
)
|
|
def test_snapshot_with_no_flag(
|
|
self,
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
flag: str,
|
|
kwarg: str,
|
|
) -> None:
|
|
"""Snapshot --no-X flags disable the corresponding snapshot component."""
|
|
updater = mocker.patch("mt5cli.cli.sdk.update_observability_with_config")
|
|
result = runner.invoke(
|
|
app,
|
|
["-o", str(tmp_path / "out.db"), "snapshot", flag],
|
|
)
|
|
assert result.exit_code == 0, result.output
|
|
assert updater.call_args.kwargs[kwarg] is False
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("command", "patch_update_observability"),
|
|
[
|
|
("snapshot", True),
|
|
("grafana-schema", False),
|
|
],
|
|
ids=["snapshot", "grafana-schema"],
|
|
)
|
|
@pytest.mark.parametrize(
|
|
("use_publish_copy", "expect_called"),
|
|
[(True, True), (False, False)],
|
|
ids=["with-publish-copy", "no-publish-copy"],
|
|
)
|
|
def test_publish_copy_option_gates_grafana_copy(
|
|
tmp_path: Path,
|
|
mocker: MockerFixture,
|
|
command: str,
|
|
patch_update_observability: bool,
|
|
use_publish_copy: bool,
|
|
expect_called: bool,
|
|
) -> None:
|
|
"""--publish-copy gates publish_grafana_copy for copy-capable commands."""
|
|
if patch_update_observability:
|
|
mocker.patch("mt5cli.cli.sdk.update_observability_with_config")
|
|
mock_publish = mocker.patch("mt5cli.grafana.publish_grafana_copy")
|
|
args = ["-o", str(tmp_path / "out.db"), command]
|
|
if use_publish_copy:
|
|
args += ["--publish-copy", str(tmp_path / "grafana.db")]
|
|
result = runner.invoke(app, args)
|
|
assert result.exit_code == 0, result.output
|
|
if expect_called:
|
|
mock_publish.assert_called_once()
|
|
else:
|
|
mock_publish.assert_not_called()
|
|
|
|
|
|
class TestMain:
|
|
"""Tests for the main entry point."""
|
|
|
|
def test_main_invokes_app(self, mocker: MockerFixture) -> None:
|
|
"""Test that main() calls the typer app."""
|
|
mock_app = mocker.patch("mt5cli.cli.app")
|
|
main()
|
|
mock_app.assert_called_once()
|