aade9e39d0
- tests/config: 环境配置 (.yaml) + 配置加载器 - tests/utils: 日志工具 + 测试数据生成器 - tests/web: Playwright conftest + Page Object 基类 + 登录页 + 导航栏组件 + 登录用例(6条) - tests/app: Appium conftest + Page Object 基类 + 司机端首页 + 登录用例(3条) - pytest.ini: markers(p0/p1/p2/smoke/web/app) + 运行配置 - 所有用例按最佳实践采用 Page Object 模式 + data-testid 优先定位 + 失败自动截图
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
"""配置加载器。
|
|
|
|
从 tests/config/test_config.yaml 读取配置,提供类型安全的访问接口。
|
|
|
|
Usage:
|
|
from tests.config.test_config import load_config
|
|
|
|
config = load_config()
|
|
web_url = config["web"]["base_url"]
|
|
admin_phone = config["accounts"]["super_admin"]["phone"]
|
|
"""
|
|
|
|
from pathlib import Path
|
|
from typing import Any, Dict
|
|
|
|
import yaml
|
|
|
|
_CONFIG_PATH = Path(__file__).parent / "test_config.yaml"
|
|
_cache: Dict[str, Any] | None = None
|
|
|
|
|
|
def load_config(force_reload: bool = False) -> Dict[str, Any]:
|
|
"""加载测试配置(带缓存,force_reload=True 可强制重载)。"""
|
|
global _cache
|
|
if _cache is not None and not force_reload:
|
|
return _cache
|
|
|
|
if not _CONFIG_PATH.exists():
|
|
raise FileNotFoundError(f"配置文件不存在: {_CONFIG_PATH}")
|
|
|
|
with open(_CONFIG_PATH, encoding="utf-8") as f:
|
|
_cache = yaml.safe_load(f)
|
|
|
|
return _cache
|
|
|
|
|
|
def get_config_section(section: str) -> Dict[str, Any]:
|
|
"""获取配置中指定 section 的字典。"""
|
|
config = load_config()
|
|
if section not in config:
|
|
raise KeyError(f"配置中不存在 section '{section}',可用: {list(config.keys())}")
|
|
return config[section]
|