forked from browsermedia/browsercms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
104 lines (84 loc) · 2.57 KB
/
Rakefile
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
#!/usr/bin/env rake
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
require 'rdoc/task'
rescue LoadError
require 'rdoc/rdoc'
require 'rake/rdoctask'
RDoc::Task = Rake::RDocTask
end
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'
Bundler::GemHelper.install_tasks
require 'rake/testtask'
Rake::TestTask.new('test:units' => 'app:test:prepare') do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/unit/**/*_test.rb'
t.verbose = false
end
Rake::TestTask.new('test:functionals' => 'app:test:prepare') do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/functional/**/*_test.rb'
t.verbose = false
end
Rake::TestTask.new('test:integration') do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/integration/**/*_test.rb'
t.verbose = false
end
require 'cucumber'
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --format progress"
end
Cucumber::Rake::Task.new('features:fast') do |t|
t.cucumber_opts = "features --format progress --tags ~@cli"
end
desc "Run everything but the command line (slow) tests"
task 'test:fast' => %w{test:units test:functionals test:integration features:fast}
desc 'Runs all the tests'
task :test => 'app:test:prepare' do
tests_to_run = ENV['TEST'] ? ["test:single"] : %w(test:units test:functionals test:integration features)
errors = tests_to_run.collect do |task|
begin
Rake::Task[task].invoke
nil
rescue => e
{ :task => task, :exception => e }
end
end.compact
if errors.any?
puts errors.map { |e| "Errors running #{e[:task]}! #{e[:exception].inspect}" }.join("\n")
abort
end
end
task :default => :test
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.options = ['--output-dir', 'doc/api/']
end
begin
require 'cucumber/rake/task'
namespace :cucumber do
Cucumber::Rake::Task.new({:launch => 'db:test:prepare'}, 'Run features opening failures in the browser') do |t|
t.fork = true # You may get faster startup if you set this to false
t.profile = 'default'
t.cucumber_opts = ["-f", "Debug::Formatter"]
end
end
end
load 'lib/tasks/core_tasks.rake'
# Sample tasks to load sample data. This is unworking pseudocode at the moment.
#task 'db:load' do
# `mysql --user=root --password name_of_database < test/dummy/db/backups/name_of_file.sql`
#end
#task 'db:dump' do
# `mysqldump --user=name_of_user --password --database name_of_database > name_of_file.sql`
#end