> 激活词: 测试API / api test / 接口测试
VALIDATION_RULES = {
"health_check": {"status": 200, "latency_max": 500},
"api_ok": {"status": 200, "body_contains": ["data", "status"]},
"created": {"status": 201, "header_contains": {"Content-Type": "application/json"}},
"no_content": {"status": 204},
"redirect": {"status": 302},
"unauthorized": {"status": 401},
"not_found": {"status": 404},
"server_error": {"status": 500, "latency_max": 5000},
}
共 2 个版本