REST API测试:HTTP Post使用Frisby.js返回500

时间:2015-11-17 22:00:59

标签: json node.js frisby.js

我正在使用Frisby.js提交带有JSON数据的POST请求并测试JSON响应。但是,我的查询返回HTTP状态500.相同的POST请求在我的命令行中的CURL以及Postman中正常工作。可能是什么问题?

CURL请求: curl -H“Content-Type:application / json; charset = UTF-8”-X POST -d“ json_data url

FRISBY测试:

frisby
.create("Submit request")
.post(url, json_data, {"json": true, "content-type": "application/json;charset=UTF-8"})
.expectStatus(200)
.inspectBody()
.toss();

与Frisby一起输出

目标网址可能已关闭或网址无效,错误:ETIMEDOUT ˚F

故障:

1)Frisby测试:提交请求     [POST url ]

消息:      预计500到200等。

堆栈跟踪:

 Error: Expected 500 to equal 200.
at null.<anonymous> 
at null.<anonymous> 
at Timer.listOnTimeout (timers.js:92:15)

在5.032秒内完成 1次测试,1次断言,1次失败,0次跳过

1 个答案:

答案 0 :(得分:0)

500错误及附带的消息导致“目标网址...”is from Frisby itself,而不是您的服务器。如果连接超时,Frisby会添加错误。尝试将其增加到10秒。

...

.get(url)
.timeout(10000)

...