有一个 api blueprint dredd 测试问题困扰了我一段时间。
我可以dredd测试json格式成功,但是对于文本格式,它总是失败。
The fail message -> fail: body: Real and expected data does not match.
但是我检查的预期和真实的身体是一样的。
任何人都可以帮助我或给我一些建议吗?我很感激。
以下是我的代码:
### Get counting camera [GET]
+ Response 200 (text/plain)
+ Body
vadp_module_number='3'
vadp_module_order='1,2,0'
以下是dredd测试结果:
fail: body: Real and expected data does not match.
expected:
headers:
Content-Type: text/plain
body:
vadp_module_number='3'
vadp_module_order='1,2,0'
statusCode: 200
actual:
statusCode: 200
headers:
date: Thu, 14 Jun 2018 14:09:39 GMT
server: Boa/0.94.14rc21
accept-ranges: bytes
connection: close
content-type: text/plain
cache-control: no-cache
pragma: no-cache
content-length: 4856
body:
vadp_module_number='3'
vadp_module_order='1,2,0'