aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/Rakefile
blob: e918428459d70a82bf6eaa5963333e9a7fd53dda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
require 'rake/testtask'
require 'rubygems/package_task'

dir = File.dirname(__FILE__)

def run_without_aborting(*tasks)
  errors = []

  tasks.each do |task|
    begin
      Rake::Task[task].invoke
    rescue Exception
      errors << task
    end
  end

  abort "Errors running #{errors.join(', ')}" if errors.any?
end

task default: :test

ACTIVEJOB_ADAPTERS = %w(inline delayed_job qu que queue_classic resque sidekiq sneakers sucker_punch backburner)
ACTIVEJOB_ADAPTERS -= %w(queue_classic) if defined?(JRUBY_VERSION)

desc 'Run all adapter tests'
task :test do
  tasks = ACTIVEJOB_ADAPTERS.map{|a| "test_#{a}" }
  run_without_aborting(*tasks)
end

namespace :test do
  desc 'Run all adapter tests in isolation'
  task :isolated do
    tasks = ACTIVEJOB_ADAPTERS.map{|a| "isolated_test_#{a}" }
    run_without_aborting(*tasks)
  end

  desc 'Run all adapter integration tests'
  task :integration do
    tasks = ACTIVEJOB_ADAPTERS.map{|a| "integration_test_#{a}" }
    run_without_aborting(*tasks)
  end
end


ACTIVEJOB_ADAPTERS.each do |adapter|
  namespace :test do
    Rake::TestTask.new(adapter => "#{adapter}:env") do |t|
      t.description = ""
      t.libs << 'test'
      t.test_files = FileList['test/cases/**/*_test.rb']
      t.verbose = true
    end

    namespace :isolated do
      task adapter => "#{adapter}:env" do
        Dir.glob("#{dir}/test/cases/**/*_test.rb").all? do |file|
          sh(Gem.ruby, '-w', "-I#{dir}/lib", "-I#{dir}/test", file)
        end or raise 'Failures'
      end
    end

    namespace :integration do
      Rake::TestTask.new(adapter => "#{adapter}:env") do |t|
        t.description = ""
        t.libs << 'test'
        t.test_files = FileList['test/integration/**/*_test.rb']
        t.verbose = true
      end
    end
  end

  namespace adapter do
    task test: "test_#{adapter}"
    task isolated_test: "isolated_test_#{adapter}"

    task(:env) { ENV['AJADAPTER'] = adapter }

    namespace :isolated do
      task(:env) { ENV['AJADAPTER'] = adapter }
    end

    namespace :integration do
      task(:env) do
        ENV['AJADAPTER'] = adapter
        ENV['AJ_INTEGRATION_TESTS'] = "1"
      end
    end
  end


  desc "Run #{adapter} tests"
  task "test_#{adapter}" => ["#{adapter}:env", "test:#{adapter}"]

  desc "Run #{adapter} tests in isolation"
  task "isolated_test_#{adapter}" => ["#{adapter}:isolated:env", "test:isolated:#{adapter}"]

  desc "Run #{adapter} integration tests"
  task "integration_test_#{adapter}" => ["#{adapter}:integration:env", "test:integration:#{adapter}"]
end


spec = eval(File.read('activejob.gemspec'))

Gem::PackageTask.new(spec) do |p|
  p.gem_spec = spec
end

desc 'Release to rubygems'
task release: :package do
  require 'rake/gemcutter'
  Rake::Gemcutter::Tasks.new(spec).define
  Rake::Task['gem:push'].invoke
end