testing.rake 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
TEST_CHANGES_SINCE = Time.now - 600

# Look up tests for recently modified sources.
def recent_tests(source_pattern, test_path, touched_since = 10.minutes.ago)
  FileList[source_pattern].map do |path|
    if File.mtime(path) > touched_since
      test = "#{test_path}/#{File.basename(path, '.rb')}_test.rb"
      test if File.exists?(test)
    end
  end.compact
end


14 15 16 17 18 19 20 21 22 23 24 25
# Recreated here from ActiveSupport because :uncommitted needs it before Rails is available
module Kernel
  def silence_stderr
    old_stderr = STDERR.dup
    STDERR.reopen(RUBY_PLATFORM =~ /mswin/ ? 'NUL:' : '/dev/null')
    STDERR.sync = true
    yield
  ensure
    STDERR.reopen(old_stderr)
  end
end

26 27
desc 'Test all units and functionals'
task :test do
28
  Rake::Task["test:units"].invoke       rescue got_error = true
29
  Rake::Task["test:functionals"].invoke rescue got_error = true
30 31 32 33 34
  
  if File.exist?("test/integration")
    Rake::Task["test:integration"].invoke rescue got_error = true
  end

35
  raise "Test failures" if got_error
36
end
37

38 39 40 41 42 43 44
namespace :test do
  desc 'Test recent changes'
  Rake::TestTask.new(:recent => "db:test:prepare") do |t|
    since = TEST_CHANGES_SINCE
    touched = FileList['test/**/*_test.rb'].select { |path| File.mtime(path) > since } +
      recent_tests('app/models/*.rb', 'test/unit', since) +
      recent_tests('app/controllers/*.rb', 'test/functional', since)
45

46 47 48
    t.libs << 'test'
    t.verbose = true
    t.test_files = touched.uniq
49
  end
50 51 52
  
  desc 'Test changes since last checkin (only Subversion)'
  Rake::TestTask.new(:uncommitted => "db:test:prepare") do |t|
53 54
    changed_since_checkin = silence_stderr { `svn status` }.map { |path| path.chomp[7 .. -1] }
    models = changed_since_checkin.select { |path| path =~ /app\/models\/.*\.rb/ }
55 56 57 58 59 60
    tests = models.map { |model| "test/unit/#{File.basename(model, '.rb')}_test.rb" }

    t.libs << 'test'
    t.verbose = true
    t.test_files = tests.uniq
  end
61

62 63 64 65 66 67 68 69 70 71 72 73 74 75
  desc "Run the unit tests in test/unit"
  Rake::TestTask.new(:units => "db:test:prepare") do |t|
    t.libs << "test"
    t.pattern = 'test/unit/**/*_test.rb'
    t.verbose = true
  end

  desc "Run the functional tests in test/functional"
  Rake::TestTask.new(:functionals => "db:test:prepare") do |t|
    t.libs << "test"
    t.pattern = 'test/functional/**/*_test.rb'
    t.verbose = true
  end

76 77 78 79 80 81 82
  desc "Run the integration tests in test/integration"
  Rake::TestTask.new(:integration => "db:test:prepare") do |t|
    t.libs << "test"
    t.pattern = 'test/integration/**/*_test.rb'
    t.verbose = true
  end

83 84 85 86 87 88 89 90 91 92 93 94
  desc "Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name)"
  Rake::TestTask.new(:plugins => :environment) do |t|
    t.libs << "test"

    if ENV['PLUGIN']
      t.pattern = "vendor/plugins/#{ENV['PLUGIN']}/test/**/*_test.rb"
    else
      t.pattern = 'vendor/plugins/**/test/**/*_test.rb'
    end

    t.verbose = true
  end
95
end