4

我一直在尝试应用Square 将 Resque 包含在他们的集成测试中的方法,但运气不佳。我不确定 Resque 和/或 Cucumber 自 2010 年 8 月以来是否发生了很大变化。

您可以在下面找到我采用的方法,也许您可​​以:

  1. 告诉我哪里出错了,我该如何解决
  2. 推荐一种将 Resque 集成到 Cucumber 功能中的全新方式

我做了什么来安装它

Square 的博客文章没有关于如何安装它的明确步骤,所以这就是我所做的:

  1. 将他们的要点下载到features/support/cucumber_external_resque_worker.rb
  2. 创建了一个 Rails 初始化程序config/initializers/cucumber_external_resque.rb,执行以下操作:
    1. require 'features/support/cucumber_external_resque_worker'
    2. CucumberExternalResqueWorker.install_hooks_on_startup
  3. 在中,我更改了tocucumber_external_resque_worker.rb的实例,因为 Cucumber 正在环境中运行这些功能(我做了一些确定。Rails.env.cucumber?Rails.env.test?testputs Rails.envcucumber_external_resque_worker.rb
  4. 我运行这些功能。在这一点上,我被卡住了,因为我得到了错误uninitialized constant WorkerBase (NameError)。也许 Resque 改变了它命名事物的方式。

提前致谢!

4

3 回答 3

6

您可以通过设置同步运行 Resque 作业

Resque.inline = true

我将此行添加到我的config/initializers/resque.rb

Resque.inline = Rails.env.test?

它比帖子中建议的其他方法更简洁。因为是同步的,所以会慢一些。

于 2012-11-11T16:01:18.893 回答
3

我今天花了一段时间玩弄这个,我想我有一个解决方案。

这是一个更新的Gist,它消除了对 WorkerBase 的需求。

它还包括使事情正常运行所需的配置更改(与您发现的更改相同)。


# This is adapted from this gist: https://gist.github.com/532100 by Square
# The main difference is that it doesn't require Bluth for WorkerBase
# It also calls prune_dead_workers on start so it doesn't hang on every other run
# It does not do anything special to avoid connecting to your main redis instance; you should be
# doing that elsewhere

class CucumberExternalResqueWorker
  DEFAULT_STARTUP_TIMEOUT = 1.minute
  COUNTER_KEY = "cucumber:counter"

  class << self
    attr_accessor :pid, :startup_timeout

    def start
      # Call from a Cucumber support file so it is run on startup
      return unless Rails.env.test?
      if self.pid = fork
        start_parent
        wait_for_worker_to_start
      else
        start_child
      end
    end

    def install_hooks_on_startup
      # Call from a Rails initializer
      return unless Rails.env.test?
      # Because otherwise crashed workers cause a fork and we pause the actual worker forever
      Resque::Worker.all.each { |worker| worker.prune_dead_workers }
      install_pause_on_start_hook
      install_worker_base_counter_patch
    end

    def process_all
      # Call from a Cucumber step
      unpause
      sleep 1 until done?
      pause
    end

    def incr
      Resque.redis.incr(COUNTER_KEY)
    end

    def decr
      Resque.redis.decr(COUNTER_KEY)
    end

    def reset_counter
      Resque.redis.set(COUNTER_KEY, 0)
    end

    private

    def done?
      Resque.redis.get(CucumberExternalResqueWorker::COUNTER_KEY).to_i.zero?
    end

    def pause(pid = self.pid)
      return unless Rails.env.test?
      Process.kill("USR2", pid)
    end

    def unpause
      return unless Rails.env.test?
      Process.kill("CONT", pid)
    end

    def start_parent
      at_exit do
        #reset_counter
        Process.kill("KILL", pid) if pid
      end
    end

    def start_child
      # Array form of exec() is required here, otherwise the worker is not a direct child process of cucumber.
      # If it's not the direct child process then the PID returned from fork() is wrong, which means we can't
      # communicate with the worker.
      exec('rake', 'resque:work', "QUEUE=*", "RAILS_ENV=test", "VVERBOSE=1")
    end

    def wait_for_worker_to_start
      self.startup_timeout ||= DEFAULT_STARTUP_TIMEOUT
      start = Time.now.to_i
      while (Time.now.to_i - start) < startup_timeout
        return if worker_started?
        sleep 1
      end

      raise "Timeout while waiting for the worker to start. Waited #{startup_timeout} seconds."
    end

    def worker_started?
      Resque.info[:workers].to_i > 0
    end

    def install_pause_on_start_hook
      Resque.before_first_fork do
        #reset_counter
        pause(Process.pid)
      end
    end

    def install_worker_base_counter_patch
      Resque.class_eval do
        class << self
          def enqueue_with_counters(*args, &block)
            CucumberExternalResqueWorker.incr
            enqueue_without_counters(*args, &block)
          end
          alias_method_chain :enqueue, :counters
        end
      end
      Resque::Job.class_eval do
        def perform_with_counters(*args, &block)
          perform_without_counters(*args, &block)
        ensure
          CucumberExternalResqueWorker.decr
        end
        alias_method_chain :perform, :counters
      end
    end
  end
end

在 Cucumber 环境文件中features/support/env.rb

后:

require 'cucumber/rails'

添加:

require 'lib/cucumber_external_resque_worker'
CucumberExternalResqueWorker.start

改变:

  DatabaseCleaner.strategy = :transaction

到:

  DatabaseCleaner.strategy = :truncation

另外,创建一个文件:config/initializers/cucumber_external_resque.rb

require 'lib/cucumber_external_resque_worker'
CucumberExternalResqueWorker.install_hooks_on_startup
# In my controller, I have:
  def start
    if params[:job] then
      Resque.enqueue(DemoJob, j.id)
    end
    redirect_to :action => :index
  end
# DemoJob:
class DemoJob
  def self.queue
    :demojob
  end
  def perform(job_id)
    j = Job.find(job_id)
    j.value = "done"
    j.save
  end
# In your actual Cucumber step file, for instance:
When /I click the start button for "([^"]*)"/ do |jobname|
  CucumberExternalResqueWorker.reset_counter
  Resque.remove_queue(DemoJob.queue)
  click_button(jobname)
end
When /all open jobs are processed/ do
  CucumberExternalResqueWorker.process_all
end

# And you cucumber feature file looks like:
# Scenario: Starting a job
#   When I click the start button for "Test Job 1"
#     And all open jobs are processed
#   Then I am on the job index page
#     And I should see an entry for "Test Job 1" with a value of "done".
于 2011-09-07T23:46:41.077 回答
0

我正在尝试这里描述的方法:

黄瓜和 Resque 工作

它同步执行resque处理。就我而言,我对测试 Resque 不感兴趣,我只想测试我的应用程序中的功能。

于 2011-08-05T06:05:48.117 回答