feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
# 目标系统配置
|
||||
target:
|
||||
base_url: http://localhost:8080
|
||||
timeout: 5000
|
||||
max_retries: 3
|
||||
|
||||
# 认证配置
|
||||
auth:
|
||||
login_endpoint: /sys/auth/login
|
||||
username: ${TEST_USERNAME:admin}
|
||||
password: ${TEST_PASSWORD:admin123}
|
||||
token_storage: memory
|
||||
token_refresh: true
|
||||
|
||||
# 测试配置
|
||||
test:
|
||||
data_dir: data
|
||||
test_cases_dir: test_cases
|
||||
parallel: false
|
||||
parallel_threads: 4
|
||||
retry_count: 2
|
||||
stop_on_failure: false
|
||||
max_response_time: 5000
|
||||
|
||||
# 报告配置
|
||||
report:
|
||||
output_dir: reports
|
||||
formats:
|
||||
- html
|
||||
- json
|
||||
include_details: true
|
||||
include_charts: true
|
||||
|
||||
# 日志配置
|
||||
logging:
|
||||
level: INFO
|
||||
file: logs/api-test.log
|
||||
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
|
||||
console: true
|
||||
|
||||
# 数据管理配置
|
||||
data:
|
||||
load_on_startup: true
|
||||
auto_refresh: false
|
||||
cache_enabled: true
|
||||
Reference in New Issue
Block a user