2017-08-14 13:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:28:46 -04:00
|
|
|
require "rake/testtask"
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2016-08-06 13:38:55 -04:00
|
|
|
task default: :test
|
2013-01-01 05:03:40 -05:00
|
|
|
|
2016-01-31 13:01:03 -05:00
|
|
|
task :package
|
|
|
|
|
2013-01-01 05:03:40 -05:00
|
|
|
desc "Run all unit tests"
|
2016-08-06 13:38:55 -04:00
|
|
|
task test: "test:isolated"
|
2007-09-25 21:24:07 -04:00
|
|
|
|
2009-11-10 19:50:15 -05:00
|
|
|
namespace :test do
|
|
|
|
task :isolated do
|
2017-09-02 09:15:16 -04:00
|
|
|
dash_i = [
|
|
|
|
"test",
|
|
|
|
"lib",
|
|
|
|
"../activesupport/lib",
|
|
|
|
"../actionpack/lib",
|
|
|
|
"../actionview/lib",
|
|
|
|
"../activemodel/lib"
|
|
|
|
].map { |dir| File.expand_path(dir, __dir__) }
|
|
|
|
|
|
|
|
dash_i.reverse_each do |x|
|
|
|
|
$:.unshift(x) unless $:.include?(x)
|
|
|
|
end
|
|
|
|
$-w = true
|
|
|
|
|
|
|
|
require "bundler/setup" unless defined?(Bundler)
|
|
|
|
require "active_support"
|
|
|
|
|
2017-09-02 09:45:43 -04:00
|
|
|
failing_files = []
|
|
|
|
|
2013-04-08 06:16:33 -04:00
|
|
|
dirs = (ENV["TEST_DIR"] || ENV["TEST_DIRS"] || "**").split(",")
|
2018-06-30 17:43:58 -04:00
|
|
|
test_options = ENV["TESTOPTS"].to_s.split(/[\s]+/)
|
|
|
|
|
2013-04-08 06:16:33 -04:00
|
|
|
test_files = dirs.map { |dir| "test/#{dir}/*_test.rb" }
|
|
|
|
Dir[*test_files].each do |file|
|
2017-09-02 09:15:16 -04:00
|
|
|
next true if file.start_with?("test/fixtures/")
|
|
|
|
|
|
|
|
fake_command = Shellwords.join([
|
|
|
|
FileUtils::RUBY,
|
|
|
|
"-w",
|
|
|
|
*dash_i.map { |dir| "-I#{Pathname.new(dir).relative_path_from(Pathname.pwd)}" },
|
|
|
|
file,
|
|
|
|
])
|
|
|
|
puts fake_command
|
|
|
|
|
|
|
|
# We could run these in parallel, but pretty much all of the
|
|
|
|
# railties tests already run in parallel, so ¯\_(⊙︿⊙)_/¯
|
2017-09-03 12:55:26 -04:00
|
|
|
Process.waitpid fork {
|
2018-06-30 17:43:58 -04:00
|
|
|
ARGV.clear.concat test_options
|
2017-09-03 12:55:26 -04:00
|
|
|
Rake.application = nil
|
|
|
|
|
|
|
|
load file
|
|
|
|
}
|
2017-09-02 09:15:16 -04:00
|
|
|
|
|
|
|
unless $?.success?
|
2017-09-02 09:45:43 -04:00
|
|
|
failing_files << file
|
2017-09-02 09:15:16 -04:00
|
|
|
end
|
2010-06-24 04:56:16 -04:00
|
|
|
end
|
2017-09-02 09:45:43 -04:00
|
|
|
|
|
|
|
unless failing_files.empty?
|
|
|
|
puts
|
|
|
|
puts "Failed in:"
|
|
|
|
failing_files.each do |file|
|
|
|
|
puts " #{file}"
|
|
|
|
end
|
|
|
|
puts
|
|
|
|
|
|
|
|
raise "Failure in isolated test runner"
|
|
|
|
end
|
2009-11-10 19:50:15 -05:00
|
|
|
end
|
2006-11-01 22:34:03 -05:00
|
|
|
end
|
|
|
|
|
2016-08-06 13:28:46 -04:00
|
|
|
Rake::TestTask.new("test:regular") do |t|
|
2017-05-15 10:17:28 -04:00
|
|
|
t.libs << "test" << "#{__dir__}/../activesupport/lib"
|
2016-08-06 13:28:46 -04:00
|
|
|
t.pattern = "test/**/*_test.rb"
|
2018-05-23 16:52:15 -04:00
|
|
|
t.warning = true
|
2006-08-29 05:15:28 -04:00
|
|
|
t.verbose = true
|
2014-09-27 10:37:44 -04:00
|
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
2006-08-29 05:15:28 -04:00
|
|
|
end
|