-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconftest.py
More file actions
389 lines (320 loc) · 12.5 KB
/
conftest.py
File metadata and controls
389 lines (320 loc) · 12.5 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
"""Repository-wide pytest bootstrap.
This file intentionally stays at the repository root.
Pytest only auto-discovers ``conftest.py`` by directory hierarchy, and this
root-level hook needs to apply not only to ``tests/`` but also to explicit
test runs under ``examples/network_tests``. For repo-wide fixtures and hooks,
keeping a thin root bootstrap is the conventional placement.
"""
import os
import sys
import warnings
from pathlib import Path
import pytest
# Add project root to Python path
project_root = Path(__file__).parent
sys.path.insert(0, str(project_root))
scripts_root = project_root / "scripts"
if scripts_root.is_dir():
sys.path.insert(0, str(scripts_root))
# Check if API keys are available
def has_binance_api_keys():
"""Check if Binance API keys are configured."""
return bool(os.getenv("BINANCE_API_KEY") and os.getenv("BINANCE_SECRET"))
def has_okx_api_keys():
"""Check if OKX API keys are configured."""
return bool(
os.getenv("OKX_API_KEY") and os.getenv("OKX_SECRET") and os.getenv("OKX_PASSPHRASE")
)
def has_ctp_credentials():
"""Check if CTP credentials are configured."""
return bool(
os.getenv("CTP_BROKER_ID") and os.getenv("CTP_USER_ID") and os.getenv("CTP_PASSWORD")
)
def has_htx_api_keys():
"""Check if HTX API keys are configured."""
return bool(
os.getenv("HTX_API_KEY")
and os.getenv("HTX_SECRET")
and os.getenv("HTX_API_KEY") != "your_htx_api_key_here"
)
def has_ib_credentials():
"""Check if IB credentials are configured."""
return bool(os.getenv("IB_ACCOUNT_ID"))
def should_skip_live_tests():
"""Check if live tests should be skipped."""
return os.getenv("SKIP_LIVE_TESTS", "").lower() in ("true", "1", "yes")
def _rewrite_examples_cli_arg(arg: str) -> str:
normalized = arg.replace("/", "\\").rstrip("\\")
relative_prefix = "bt_api_py\\examples"
if normalized.lower() == relative_prefix.lower():
return "examples"
if normalized.lower().startswith(relative_prefix.lower() + "\\"):
suffix = normalized[len(relative_prefix) :].lstrip("\\")
parts = [part for part in suffix.split("\\") if part]
return str(Path("examples", *parts))
package_examples = str(project_root / "bt_api_py" / "examples").replace("/", "\\").rstrip("\\")
if normalized.lower() == package_examples.lower():
return str(project_root / "examples")
if normalized.lower().startswith(package_examples.lower() + "\\"):
suffix = normalized[len(package_examples) :].lstrip("\\")
parts = [part for part in suffix.split("\\") if part]
return str(project_root / "examples" / Path(*parts))
return arg
_CTP_HARD_EXIT_ENABLED = False
_CTP_HARD_EXIT_STATUS = 0
_REAL_CTP_NETWORK_TESTS = {
"examples/network_tests/test_ctp_feed_network.py",
"examples/network_tests/live/test_simnow_ctp.py",
}
def _should_force_ctp_hard_exit(pytest_args: list[str]) -> bool:
if not sys.platform.startswith("darwin"):
return False
normalized_args = [arg.replace("\\", "/") for arg in pytest_args]
return any(any(arg.endswith(path) for path in _REAL_CTP_NETWORK_TESTS) for arg in normalized_args)
def _is_real_ctp_network_test(path: str) -> bool:
normalized = path.replace("\\", "/")
return any(normalized.endswith(test_path) for test_path in _REAL_CTP_NETWORK_TESTS)
def pytest_configure(config):
"""Configure pytest with custom settings."""
global _CTP_HARD_EXIT_ENABLED
config.args[:] = [_rewrite_examples_cli_arg(arg) for arg in config.args]
_CTP_HARD_EXIT_ENABLED = _should_force_ctp_hard_exit(config.args)
warnings.filterwarnings(
"ignore",
message="Benchmarks are automatically disabled because xdist plugin is active.*",
module="pytest_benchmark.logger",
)
# Set LD_LIBRARY_PATH for CTP libraries
ctp_lib_path = Path(__file__).parent / "bt_api_py" / "ctp" / "api" / "6.7.7" / "linux"
if ctp_lib_path.exists():
current_ld_path = os.environ.get("LD_LIBRARY_PATH", "")
if str(ctp_lib_path) not in current_ld_path:
os.environ["LD_LIBRARY_PATH"] = f"{ctp_lib_path}:{current_ld_path}"
# Preload libiconv if available (needed by CTP libraries on Linux)
anaconda_lib = os.path.join(sys.prefix, "lib")
iconv_lib = os.path.join(anaconda_lib, "libiconv.so.2")
if os.path.exists(iconv_lib):
current_preload = os.environ.get("LD_PRELOAD", "")
if iconv_lib not in current_preload:
os.environ["LD_PRELOAD"] = (
f"{iconv_lib}:{current_preload}" if current_preload else iconv_lib
)
# Register custom markers
config.addinivalue_line("markers", "unit: Unit tests (fast, no external dependencies)")
config.addinivalue_line(
"markers", "integration: Integration tests (may require external services)"
)
config.addinivalue_line("markers", "slow: Slow tests (> 1s)")
config.addinivalue_line("markers", "network: Tests requiring network access")
config.addinivalue_line("markers", "ctp: CTP related tests")
config.addinivalue_line("markers", "binance: Binance exchange tests")
config.addinivalue_line("markers", "okx: OKX exchange tests")
config.addinivalue_line("markers", "htx: HTX exchange tests")
config.addinivalue_line("markers", "ib: Interactive Brokers tests")
def pytest_collection_modifyitems(config, items):
"""Modify test collection to add markers automatically and skip tests without API keys."""
skip_live = should_skip_live_tests()
for item in items:
# Group network-heavy tests by exchange for xdist so parallel workers
# don't overwhelm the same exchange API simultaneously.
fspath = str(item.fspath).lower()
for exchange in (
"okx",
"binance",
"ctp",
"htx",
"bitfinex",
"coinbase",
"kucoin",
"mexc",
"bybit",
"upbit",
"hyperliquid",
):
if exchange in fspath:
item.add_marker(pytest.mark.xdist_group(name=exchange))
break
# Auto-mark slow tests based on timeout or explicit markers
if "slow" not in item.keywords:
# Check if test file or function name suggests it's slow
test_name = item.nodeid.lower()
if any(keyword in test_name for keyword in ["slow", "benchmark", "stress"]):
item.add_marker(pytest.mark.slow)
# Auto-mark network tests
if "network" not in item.keywords:
test_name = item.nodeid.lower()
if any(
keyword in test_name
for keyword in [
"request",
"wss",
"websocket",
"api",
"update_exchange",
"update_binance",
"update_okx",
"history_bar",
]
):
item.add_marker(pytest.mark.network)
# Also mark as network if test is in an exchange-specific path
if any(
ex in fspath
for ex in (
"binance",
"okx",
"htx",
"bitfinex",
"coinbase",
"kucoin",
"mexc",
"bybit",
"upbit",
"hyperliquid",
)
):
item.add_marker(pytest.mark.network)
# Auto-mark exchange-specific tests and skip if no API keys
test_path = str(item.fspath).lower()
test_name = item.nodeid.lower()
# Binance tests — add marker only, never auto-skip
if "binance" in test_path and "binance" not in item.keywords:
item.add_marker(pytest.mark.binance)
# OKX tests — add marker only, never auto-skip
if "okx" in test_path and "okx" not in item.keywords:
item.add_marker(pytest.mark.okx)
# CTP tests — add marker only, never auto-skip
if "ctp" in test_path and "ctp" not in item.keywords:
item.add_marker(pytest.mark.ctp)
# IB tests — add marker only, never auto-skip
if "ib" in test_path and "ib" not in item.keywords:
item.add_marker(pytest.mark.ib)
# Skip @pytest.mark.integration tests when SKIP_LIVE_TESTS is set
if skip_live and "integration" in item.keywords:
item.add_marker(pytest.mark.skip(reason="SKIP_LIVE_TESTS=true"))
def _network_skip_reason(item, exc):
"""Return a skip reason for network/auth-related failures, if applicable."""
is_network_test = "integration" in item.keywords or "network" in item.keywords
if not is_network_test:
return None
exc_name = type(exc).__name__
exc_msg = str(exc).lower()
if isinstance(exc, AssertionError) and any(
hint in exc_msg
for hint in [
"returned no data",
"returned none",
"is not none",
"no ticks",
"no response",
"empty response",
"failed to fetch",
"enough exchanges",
]
):
return f"Skipped (no data, likely network): {str(exc)[:80]}"
network_indicators = [
"authenticationerror",
"requestfailederror",
"requesterror",
"connectionerror",
"connection error",
"connecterror",
"timeout",
"ssl",
"eof",
"connection refused",
"no route to host",
"403",
"401",
"404",
"name or service not known",
"urlerror",
"socketerror",
"gaierror",
"connection reset",
"connection aborted",
"max retries exceeded",
"network is unreachable",
"endpoint gone",
"not found",
"remoteprotocolerror",
"server disconnected",
"environment variable not set",
"api_key",
"rate_limit",
"ratelimit",
"too many requests",
"failed to get listen key",
"winerror 10061",
]
combined = exc_name.lower() + " " + exc_msg
if any(ind in combined for ind in network_indicators):
return f"Skipped (network/auth): {exc_name}: {str(exc)[:80]}"
if exc_name.lower() == "failed" and "timeout" in exc_msg:
return f"Skipped (timeout): {str(exc)[:80]}"
return None
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_makereport(item, call):
"""Convert network/auth failures into skipped outcomes without teardown warnings."""
outcome = yield
report = outcome.get_result()
if report.when != "call" or report.outcome != "failed" or call.excinfo is None:
return
if _is_real_ctp_network_test(str(item.fspath)):
return
reason = _network_skip_reason(item, call.excinfo.value)
if reason is None:
return
report.outcome = "skipped"
report.longrepr = (str(item.fspath), 0, reason)
def pytest_sessionfinish(session, exitstatus):
global _CTP_HARD_EXIT_STATUS
_CTP_HARD_EXIT_STATUS = int(exitstatus)
def pytest_unconfigure(config):
if not _CTP_HARD_EXIT_ENABLED:
return
with_context_status = int(_CTP_HARD_EXIT_STATUS)
try:
sys.stdout.flush()
sys.stderr.flush()
finally:
os._exit(with_context_status)
@pytest.fixture(scope="session")
def project_root_path():
"""Return the project root path."""
return Path(__file__).parent
@pytest.fixture(scope="session")
def test_data_dir(project_root_path):
"""Return the test data directory."""
return project_root_path / "tests" / "data"
@pytest.fixture(autouse=True)
def reset_environment():
"""Reset environment variables before each test."""
original_env = os.environ.copy()
yield
# Restore original environment
current_keys = set(os.environ)
original_keys = set(original_env)
for key in current_keys - original_keys:
os.environ.pop(key, None)
for key, value in original_env.items():
if os.environ.get(key) != value:
os.environ[key] = value
@pytest.fixture
def mock_api_response():
"""Provide a mock API response for testing."""
return {
"status": "success",
"data": {"key": "value"},
"timestamp": 1234567890,
}
# Performance optimization: reuse expensive fixtures
@pytest.fixture(scope="session")
def shared_test_config():
"""Shared test configuration to avoid repeated loading."""
return {
"test_mode": True,
"timeout": 30,
"retry_count": 3,
}