Testing a method defined in a rake task

蹲街弑〆低调 提交于 2019-12-10 12:39:20

问题


I want to test a method defined in a rake task.

rake file

#lib/tasks/simple_task.rake
namespace :xyz do
    task :simple_task => :environment do
        begin
            if task_needs_to_run?
                puts "Lets run this..."
                #some code which I don't wish to test
                ...
            end
        end
    end
    def task_needs_to_run?
        # code that needs testing
        return 2 > 1
    end

end

Now, I want to test this method, task_needs_to_run? in a test file How do I do this ?

Additional note: I would ideally want test another private method in the rake task as well... But I can worry about that later.


回答1:


You can just do this:

require 'rake'
load 'simple_task.rake'
task_needs_to_run?
=> true

I tried this myself... defining a method inside a Rake namespace is the same as defining it at the top level.

loading a Rakefile doesn't run any of the tasks... it just defines them. So there is no harm in loading your Rakefile inside a test script, so you can test associated methods.




回答2:


The usual way to do this is to move all actual code into a module and leave the task implementation to be only:

require 'that_new_module'

namespace :xyz do
  task :simple_task => :environment do
    ThatNewModule.doit!
  end
end

If you use environmental variables or command argument, just pass them in:

ThatNewModule.doit!(ENV['SOMETHING'], ARGV[1])

This way you can test and refactor the implementation without touching the rake task at all.




回答3:


When working within a project with a rake context (something like this) already defined:

describe 'my_method(my_method_argument)' do
  include_context 'rake'

  it 'calls my method' do
     expect(described_class.send(:my_method, my_method_argument)).to eq(expected_results)
  end
end


来源:https://stackoverflow.com/questions/8940349/testing-a-method-defined-in-a-rake-task

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!