5

TL:DR - 如何让 Cucumber 通过应用程序请求页面,但假装请求来自“http://mysubdomain.mydomain.dev”,并正确运行 javascript?

好的,这可能需要一些时间来解释,但请多多包涵……

我是一个“相对”经验丰富的 Rails 开发人员,但直到最近才开始涉足完整的 BDD/TDD。

我在 cucumber 中测试的页面中有一些 javascript 用于创建一个新的嵌套对象(非常类似于这个RailsCast)。

现在的问题在于,我不仅有可变的子域,我也有可变的(只要相信我……)

因此,应用程序需要在后台查询所有内容request.host以找到current_domain和之前,它可以继续为应用程序的正确位提供服务。current_subdomain

我已经设法在后台步骤中使用host! domain和技术让所有测试顺利通过。Capybara.default_host = domain

但是,当我在测试带有 .js 的页面的功能上使用 @javascript 标记时,我让 Firefox 抓住焦点,然后尝试加载完整的 url。

现在,我也正在运行 Pow,并将这些 url 连接到开发服务器。不出所料,当用户尝试登录时,它们不起作用,它正在查看开发数据库。我在关闭 pow 服务器后尝试运行该套件,但它只是超时了。

当然,javascript webdriver 不应该实际访问 url,而只是运行应用程序本身并假装主机是我告诉它的?

我显然在这里遗漏了一些东西 - 我怎样才能让 Cucumber 在内部构建页面,但假装请求来自“http://mysubdomain.mydomain.dev”?

编辑: Jason - 可变域技巧的实现与子域完全相同...如果您可以基于 查询 db 的帐户request.subdomains.first,则可以通过request.domain. 你只需要仔细检查一些东西,比如大小写等,以尽量减少格式错误的 url 破坏东西的风险,显然你需要首先确保域记录存在于数据库中......

哦 - 并小心缓存域记录请求......

这意味着您可以提供相同的应用程序,但具有不同的样式和登录页面等。对于拥有广泛客户群的 PaaS 应用程序很有用 - 您可以重新命名它并将其作为针对某一组问题的特定解决方案出售,即使它是下面同样的胆量。

4

1 回答 1

4

我想做一些非常相似的事情。我考虑添加一个额外的 pow 目录进行测试,然后使用 pow 指令覆盖环境。我认为这是在您的应用程序目录中的“.powenv”中完成的。这是一个快速修复的示例:

echo export RAILS_ENV=cucumber > .powenv && touch tmp/restart.txt

但是最好做一些动态的事情,这样在开始测试之前,您可以告诉 pow 要运行什么环境,然后在完成切换后,甚至可以在不同的端口上临时运行测试服务器。Pow 是迄今为止我所知道的处理子域的唯一出色解决方案。

已编辑:我现在在我的环境中使用此功能,并在我的features/support/env.rb文件中添加了以下内容。

# Switch Pow to For Cucumber Tests
Capybara.default_driver = :selenium # Subdomain testing will only work with pow and selenium
pow_config = "#{Rails.root}/.powenv" # Dont change, this is the Config Files Location.
pow_config_stash = "#{Rails.root}/.powenv_original" # This is what the config will be stashed as during testing.

Before do

  # Set the default host
  Capybara.app_host = "http://www.resipsa.dev"

  # Stash the existing config
  File.rename(pow_config,pow_config_stash) if File.exists? pow_config

  # Write the new pow config
  f = File.new("#{Rails.root}/.powenv", "w")
  f.write "export RAILS_ENV=test"
  f.close

  # Touch tmp/restart.txt to force a restart
  FileUtils.touch "#{Rails.root}/tmp/restart.txt"

end

After do

  # Delete the temp config
  File.delete(pow_config)

  # Restore the Original Config
  File.rename(pow_config_stash,pow_config) if File.exists? pow_config_stash

  # Touch tmp/restart.txt to force a restart
  FileUtils.touch "#{Rails.root}/tmp/restart.txt"

end
于 2012-05-21T23:12:13.327 回答