0

我正在使用自动测试,并添加了钩子来运行我的集成测试。在工作时,只要我做出影响任何集成测试的更改,所有集成测试都会重新运行。如果可能的话,这是我想改变的行为。(我使用 rspec 和 webrat 进行测试,没有黄瓜)

对于非集成测试,模式是如果您更改测试或其描述内容,它会在同一个规范文件(或描述块?)中重新运行测试。所以,假设我们有 page_controller.rb 和 page_controller_spec.rb。autotest 知道,如果您更改其中一个文件,它只会运行 page_controller_spec 中的测试,然后,如果它通过,它会运行所有测试。我想对我的集成测试进行类似的测试——只需先在文件中运行测试失败的测试,然后运行所有测试(如果它们通过)。

我的 .autotest 文件看起来像这样

require "autotest/growl"
require "autotest/fsevent"

Autotest.add_hook :initialize do |autotest|
  autotest.add_mapping(/^spec\/integration\/.*_spec\.rb$/) do
    autotest.files_matching(/^spec\/integration\/.*_spec\.rb$/)
  end  
end
4

2 回答 2

1

.autotest是问题的根源:) 它基本上说对于目录中的任何文件,应该运行它们。您应该只返回匹配的文件名,如下所示:/spec/integration

require "autotest/growl"
require "autotest/fsevent"

Autotest.add_hook :initialize do |autotest|
  autotest.add_mapping(/^spec\/integration\/.*_spec\.rb$/) do |filename|
    filename
  end  
end
于 2012-04-14T14:31:58.207 回答
-1

抱歉,我没有时间完全解决您的问题,但我想您可以在阅读 Autotest#add_mapping 方法的评论时自行解决。你必须玩一点正则表达式。注意“+proc+ 传递了一个匹配的文件名和 Regexp.last_match”。这是完整的评论:

  # Adds a file mapping, optionally prepending the mapping to the
  # front of the list if +prepend+ is true. +regexp+ should match a
  # file path in the codebase. +proc+ is passed a matched filename and
  # Regexp.last_match. +proc+ should return an array of tests to run.
  #
  # For example, if test_helper.rb is modified, rerun all tests:
  #
  #   at.add_mapping(/test_helper.rb/) do |f, _|
  #     at.files_matching(/^test.*rb$/)
  #   end

  def add_mapping regexp, prepend = false, &proc
于 2011-03-01T18:59:49.847 回答