Rails 3,Rspec 测试 XML API

发布于 2024-12-17 16:19:20 字数 427 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心是晴朗的。 2024-12-24 16:19:20

固定的!

我需要使用 HTTP_ACCEPT 作为接受标头

,即

post "/resources?auth_token=#{@user.authentication_token}", post_data, {
    "CONTENT_TYPE" => 'application/xml',
    "HTTP_ACCEPT" => 'application/json'
}

啊,太烦人了......

Fixed!

I needed to use HTTP_ACCEPT for the accept header

i.e

post "/resources?auth_token=#{@user.authentication_token}", post_data, {
    "CONTENT_TYPE" => 'application/xml',
    "HTTP_ACCEPT" => 'application/json'
}

Argh so annoying...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文