在 Rails 3 中使用 Cucumber/Capybara,如何设置自定义用户代理字符串? [英] Using Cucumber/Capybara in Rails 3, how do I set a custom User-Agent string?

查看:16
本文介绍了在 Rails 3 中使用 Cucumber/Capybara,如何设置自定义用户代理字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的 Rails 3 应用程序中,iPhone 和桌面浏览器的布局不同.我正在尝试使用 Cucumber/Capybara 测试 iPhone 布局.到目前为止,我在请求的 HTTP 标头中设置 iPhone 用户代理字符串的所有尝试都失败了.

In my Rails 3 app, I have different layouts for iPhone vs desktop browsers. I'm trying to test the iPhone layout using Cucumber/Capybara. So far, all my attempts at setting an iPhone User-Agent string in the request's HTTP header have failed.

我已遵循 测试自定义带有 Cucumber 和 Capybara 的 headers 和 ssl 教程,但它似乎没有在 HTTP 请求中设置 User-Agent 字符串.

I have followed the Testing custom headers and ssl with Cucumber and Capybara tutorial but it doesn't seem to set the User-Agent string in the HTTP request.

如果我只是使用我的 iPhone 浏览到我的 Rails 应用程序,我会得到正确的布局.我正在使用 Rack-Mobile-Detect 将 Rails request.format 设置为 :iphone.

If I just browse to my Rails app using my iPhone, I get the right layout. I am using Rack-Mobile-Detect to set the Rails request.format to :iphone.

关于如何完成这项工作的任何想法?我正准备放弃 Capybara 并返回 Webrat.

Any ideas on how to make this work? I'm about ready to ditch Capybara and go back to Webrat.

这是我目前所拥有的:

Feature: Detect Browser
  In order to have different layouts for iPhone vs. desktop browsers
  As a developer
  I want to show different layouts for different browsers

Scenario: Show home page with desktop layout 
  Given I am using "a desktop browser"
  When I go to "the home page"
  Then I should see "desktop browser"

Scenario: Show home page with iPhone layout
  Given I am using "mobile safari"
  When I go to "the home page"
  Then show me the page
  Then I should see "mobile safari"

Detect_browser_steps.rb

Detect_browser_steps.rb

Given /^(?:|I )am using (.+)$/ do |browser|
  case browser
  when "mobile safari"
    agent = "Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_2 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7D11 Safari/528.16"
    add_headers({'User-Agent' => agent})
  else
    # don't set a special User-Agent header
  end
end

headers_hack.rb

headers_hack.rb

# http://aflatter.de/2010/06/testing-headers-and-ssl-with-cucumber-and-capybara/
# The following solution will work only if you use the :rack_test driver.
module RackTestMixin

  def self.included(mod)
    mod.class_eval do
      # This is where we save additional entries.
      def hacked_env
        @hacked_env ||= {}
      end

      # Alias the original method for further use.
      alias_method  :original_env, :env

      # Override the method to merge additional headers.
      # Plus this implicitly makes it public.
      def env
        original_env.merge(hacked_env)
      end
    end
  end

end

Capybara::Driver::RackTest.send :include, RackTestMixin

module HeadersHackHelper

  def add_headers(headers)
    page.driver.hacked_env.merge!(headers)
  end

end

World(HeadersHackHelper)

推荐答案

不得不在这个问题上摆弄一下,但最后我设法通过添加:

Had to fiddle a bit on this, but in the end I managed to get it working just by adding:

# features/support/capybara_headers.rb:

module CapybaraHeadersHelper
  def add_headers(headers)
    headers.each do |name, value|
      page.driver.browser.header(name, value)
    end
  end
end
World(CapybaraHeadersHelper)

您可以在此 博文我写的,但基本上就是这样.

You can get more info in this blog post I wrote, but that's basically it.

这篇关于在 Rails 3 中使用 Cucumber/Capybara,如何设置自定义用户代理字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆