如何在 ruby​​ 中编写测试来指定 http 请求的格式?

发布于 2024-11-10 11:31:18 字数 118 浏览 6 评论 0原文

我正在编写一个 gem,我想检查它是否正在执行一个带有应该传递的参数、标头和内容的 http 请求。我如何编写单元测试。

我使用 httparty 来执行请求,我还使用 fakeweb 来测试响应后的操作。

I am writing a gem and I want to check that it is performing an http request with the parameters , headers and content that its supposed to pass. How do I write a unit test.

I am using httparty to do the request, I am also using fakeweb to test actions after the response.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

可可 2024-11-17 11:31:18

我建议使用 webmock 并包含应创建的存根请求:

在您的 Gemfile 中:

group :test do
  gem 'webmock'
end

在您的规范中:

stub_request(:post, 
             "https://external.api.com")
             .with(:body => {:message => {:foo => 'bar'}}, 
                  :headers => {'Accept'=>'application/json'})

I recommend using webmock and include the stub request that should be created:

In your Gemfile:

group :test do
  gem 'webmock'
end

In your spec:

stub_request(:post, 
             "https://external.api.com")
             .with(:body => {:message => {:foo => 'bar'}}, 
                  :headers => {'Accept'=>'application/json'})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文