summaryrefslogtreecommitdiff
path: root/rake_tasks/test.rake
blob: 80c557fa3aa54ed506d9ac3ea3a7275543a66599 (plain)
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
namespace :test do
  desc 'run all sample tests'
  task :samples do
    ruby "./sample/suite.rb"
  end
  
  desc 'run functional tests'
  task :functional do
    ruby "./test/functional/suite.rb"
  end
  
  namespace :functional do
    desc 'run all functional tests on all supported Ruby platforms'
    task :all do
      $stdout.sync = true
      for task in %w(test:functional 19 test:functional jruby test:functional ee test:functional)
        if task == 'test:functional'
          puts "\n\nTesting with #{RUBY}..."
          Rake::Task['test:functional'].reenable
          Rake::Task['test:functional'].invoke
        else
          Rake::Task[task].invoke
        end
      end
    end
  end
  
  desc 'run for_redcloth tests'
  task :for_redcloth do
    ruby "./test/functional/for_redcloth.rb"
  end
  
  desc 'run all scanner tests'
  task :scanners do
    ruby "./test/scanners/suite.rb"
  end
  
  namespace :scanner do
    Dir['./test/scanners/*'].each do |scanner|
      next unless File.directory? scanner
      lang = File.basename(scanner)
      desc "run all scanner tests for #{lang}"
      task lang do
        ruby "./test/scanners/suite.rb #{lang}"
      end
    end
  end
  
  desc 'clean test output files'
  task :clean do
    for file in Dir['test/scanners/**/*.actual.*']
      rm file
    end
    for file in Dir['test/scanners/**/*.debug.diff']
      rm file
    end
    for file in Dir['test/scanners/**/*.debug.diff.html']
      rm file
    end
    for file in Dir['test/scanners/**/*.expected.html']
      rm file
    end
  end
  
  desc 'run all tests on all supported Ruby platforms'
  task :all do
    $stdout.sync = true
    for task in %w(test 19 test jruby test)
      if task == 'test'
        print "\n\nTesting with "
        ruby '-v'
        Rake::Task['test'].reenable
        Rake::Task['test:functional'].reenable
        Rake::Task['test:for_redcloth'].reenable
        Rake::Task['test:scanners'].reenable
        Rake::Task['test'].invoke
      else
        Rake::Task[task].invoke
      end
    end
  end
  
end

task :test => %w( test:functional test:for_redcloth test:scanners )
task :samples => 'test:samples'