如何在Rails中的Mechanize上存根HTTP请求?

时间:2017-04-28 17:53:59

标签: ruby-on-rails ruby mechanize webmock

我有一些像这样的代码库,我想使用rspec测试favicon_href,但是如你所愿,favicon_href会调用页面函数,我知道我可以模拟页面函数,但是对于这个阶段我想模拟来自的HTTP请求给定的url,所以我使用WebMock gem的语法来存根HTTP请求,但似乎WebMock与Mechanize不兼容,它总是在下面显示错误尽管我已经做了存根,有人知道如何解决它或任何gem可以在Mechanize上存根HTTP请求吗?

代码

  def favicon_href
    @favicon_href ||= 
      begin
        page.at(FAVICON_DOM).attributes['href'].value # finding <link> elements
      rescue Exception
        '/favicon.ico' # there are some situation the favicon's not <link>'
      end
  end

  def page
    @page ||= mechanize.get(url)
  end

  def mechanize
    @mechanize ||= Mechanize.new
  end

错误

Failure/Error: @page ||= mechanize.get(valid_url(url))

 WebMock::NetConnectNotAllowedError:
   Real HTTP connections are disabled. Unregistered request: GET https://tsaohucn.wordpress.com/ with headers {'Accept'=>'*/*', 'Accept-Charset'=>'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'Accept-Encoding'=>'gzip,deflate,identity', 'Accept-Language'=>'en-us,en;q=0.5', 'Connection'=>'keep-alive', 'Host'=>'tsaohucn.wordpress.com', 'Keep-Alive'=>'300', 'User-Agent'=>'Mechanize/2.7.5 Ruby/2.3.1p112 (http://github.com/sparklemotion/mechanize/)'}

   You can stub this request with the following snippet:

   stub_request(:get, "https://tsaohucn.wordpress.com/").
     with(headers: {'Accept'=>'*/*', 'Accept-Charset'=>'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'Accept-Encoding'=>'gzip,deflate,identity', 'Accept-Language'=>'en-us,en;q=0.5', 'Connection'=>'keep-alive', 'Host'=>'tsaohucn.wordpress.com', 'Keep-Alive'=>'300', 'User-Agent'=>'Mechanize/2.7.5 Ruby/2.3.1p112 (http://github.com/sparklemotion/mechanize/)'}).
     to_return(status: 200, body: "", headers: {})

   registered request stubs:

   stub_request(:get, "https://tsaohucn.wordpress.com/").
     with(headers: {'Accept'=>'*/*', 'User-Agent'=>'Ruby'})
   stub_request(:any, "http://api.stripe.com/")
   stub_request(:any, "/api.stripe.com/")

   ============================================================

1 个答案:

答案 0 :(得分:0)

WebMock和net-http-persistent之间存在不兼容性。

请参阅 https://github.com/bblimke/webmock#connecting-on-nethttpstart

添加

WebMock.allow_net_connect!(:net_http_connect_on_start => true)

进行测试设置。