Rails 3,Rspec 测试 XML API
我有一个 API,它期望/接受主体 XML 并可以返回 json 或 XML。我正在尝试用 rspec 来测试这一点。
为了发出请求,我在规范中执行了以下操作:
post "/resources?auth_token=#{@user.authentication_token}", post_data, {
"CONTENT_TYPE" => 'application/xml',
"ACCEPT" => 'application/json'
}
它按预期工作,直到响应。它似乎忽略了我的 ACCEPT 标头并返回一个以空格作为正文的 html 文档。我已经使用具有相同标头的 Restclient 测试了 API,并且工作正常。
我在这里缺少什么吗?附带说明...我不知道如何在控制器中打印可能有用的请求标头。
I have an API that expects/accepts in the body XML and can return json or XML. I'm trying to test this with rspec.
To make the request I do the following in my spec:
post "/resources?auth_token=#{@user.authentication_token}", post_data, {
"CONTENT_TYPE" => 'application/xml',
"ACCEPT" => 'application/json'
}
It works as expected until it gets to responding.It seems to be ignoring my ACCEPT header and returning an html document with a space as the body. I've tested the API using a restclient with the same headers and it works fine.
Is there something I'm missing here? On a side note... I can't figure out how to print the request headers in the controller which could be useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
固定的!
我需要使用 HTTP_ACCEPT 作为接受标头
,即
啊,太烦人了......
Fixed!
I needed to use HTTP_ACCEPT for the accept header
i.e
Argh so annoying...