我用 DREDD 对照它的规范测试我的 Api(考虑到用 Openapi3 编写,考虑到 Dredd 支持的痛苦限制)。不,我有一个端点,如果设置了 Accept-header,它会生成 CSV 数据。
'/my-endpoint':
summary: ...
description: ...
get:
# parameters:
# -
# in: header
# name: Accept
# description: "Response format: application/json or text/csv"
# example: "text/csv"
responses:
'200':
description: ...
content:
text/csv:
schema:
type: string
example:
summary: 'csv table'
value: 'cell1, cell2'
当我使用 Dredd 运行测试时,测试失败
expected:
headers:
body:
[
{
"key": "summary",
"value": "csv table"
},
{
"key": "value",
"value": "cell1, cell2"
}
]
statusCode: 200
显然有些地方被误解了,Dredd 期望仍然是 JSON。此外,API 没有被告知生成 CSV 版本。如果我在代码 abvoe 中的 Accept 标头中提交,我会得到完全相同的结果 - 上面的预期结果和实际结果是 my-endpoint-data 的 JSON 版本以及广告警告:
warn: API description parser warning in .../tmp/transformed.specs.yml: 'Parameter Object' 'name' in location 'header' should not be 'Accept', 'Content-Type' or 'Authorization'
我在这里和这里读到:Header parameters named Accept, Content-Type and Authorization are not allowed. To describe these headers, use the corresponding OpenAPI keywords
-但它们是什么?根据this和this page,指定给定类型的响应似乎就足够了,但这显然不足以告诉Dredd产生这样的标题。