2016-08-07 01:28:46 +08:00
|
|
|
require "rake/testtask"
|
2008-01-22 01:20:51 +08:00
|
|
|
|
2017-06-11 20:59:23 +08:00
|
|
|
require_relative "test/config"
|
|
|
|
require_relative "test/support/config"
|
2008-04-21 12:40:16 +08:00
|
|
|
|
2009-08-28 02:04:08 +08:00
|
|
|
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
|
2004-11-24 09:04:44 +08:00
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Run mysql2, sqlite, and postgresql tests by default"
|
2016-08-07 01:37:57 +08:00
|
|
|
task default: :test
|
2004-11-24 09:04:44 +08:00
|
|
|
|
2016-02-01 02:01:03 +08:00
|
|
|
task :package
|
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Run mysql2, sqlite, and postgresql tests"
|
2009-08-28 02:04:08 +08:00
|
|
|
task :test do
|
|
|
|
tasks = defined?(JRUBY_VERSION) ?
|
|
|
|
%w(test_jdbcmysql test_jdbcsqlite3 test_jdbcpostgresql) :
|
2015-12-16 06:01:30 +08:00
|
|
|
%w(test_mysql2 test_sqlite3 test_postgresql)
|
2009-08-28 02:04:08 +08:00
|
|
|
run_without_aborting(*tasks)
|
|
|
|
end
|
|
|
|
|
2009-11-11 08:50:15 +08:00
|
|
|
namespace :test do
|
|
|
|
task :isolated do
|
|
|
|
tasks = defined?(JRUBY_VERSION) ?
|
|
|
|
%w(isolated_test_jdbcmysql isolated_test_jdbcsqlite3 isolated_test_jdbcpostgresql) :
|
2015-12-16 06:01:30 +08:00
|
|
|
%w(isolated_test_mysql2 isolated_test_sqlite3 isolated_test_postgresql)
|
2009-11-11 08:50:15 +08:00
|
|
|
run_without_aborting(*tasks)
|
|
|
|
end
|
2009-08-28 02:04:08 +08:00
|
|
|
end
|
2004-11-24 09:04:44 +08:00
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Build MySQL and PostgreSQL test databases"
|
2013-01-21 01:41:49 +08:00
|
|
|
namespace :db do
|
2016-08-07 01:37:57 +08:00
|
|
|
task create: ["db:mysql:build", "db:postgresql:build"]
|
|
|
|
task drop: ["db:mysql:drop", "db:postgresql:drop"]
|
2013-01-21 01:41:49 +08:00
|
|
|
end
|
|
|
|
|
2015-12-16 06:01:30 +08:00
|
|
|
%w( mysql2 postgresql sqlite3 sqlite3_mem db2 oracle jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb ).each do |adapter|
|
2014-05-04 02:15:11 +08:00
|
|
|
namespace :test do
|
|
|
|
Rake::TestTask.new(adapter => "#{adapter}:env") { |t|
|
2016-08-07 01:28:46 +08:00
|
|
|
adapter_short = adapter == "db2" ? adapter : adapter[/^[a-z0-9]+/]
|
|
|
|
t.libs << "test"
|
2016-10-29 11:05:58 +08:00
|
|
|
t.test_files = (Dir.glob("test/cases/**/*_test.rb").reject {
|
2016-08-07 01:28:46 +08:00
|
|
|
|x| x.include?("/adapters/")
|
2015-03-06 02:09:20 +08:00
|
|
|
} + Dir.glob("test/cases/adapters/#{adapter_short}/**/*_test.rb"))
|
2014-05-04 02:15:11 +08:00
|
|
|
|
|
|
|
t.warning = true
|
|
|
|
t.verbose = true
|
2014-09-27 22:37:44 +08:00
|
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
2014-05-04 02:15:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace :isolated do
|
|
|
|
task adapter => "#{adapter}:env" do
|
2016-08-07 01:28:46 +08:00
|
|
|
adapter_short = adapter == "db2" ? adapter : adapter[/^[a-z0-9]+/]
|
2014-05-04 02:15:11 +08:00
|
|
|
puts [adapter, adapter_short].inspect
|
|
|
|
(Dir["test/cases/**/*_test.rb"].reject {
|
2016-08-07 01:28:46 +08:00
|
|
|
|x| x.include?("/adapters/")
|
2014-05-04 02:15:11 +08:00
|
|
|
} + Dir["test/cases/adapters/#{adapter_short}/**/*_test.rb"]).all? do |file|
|
2016-10-29 11:05:58 +08:00
|
|
|
sh(Gem.ruby, "-w" , "-Itest", file)
|
2016-09-02 05:41:49 +08:00
|
|
|
end || raise("Failures")
|
2014-05-04 02:15:11 +08:00
|
|
|
end
|
|
|
|
end
|
2009-05-13 16:06:53 +08:00
|
|
|
end
|
|
|
|
|
2007-10-08 13:29:09 +08:00
|
|
|
namespace adapter do
|
2016-08-07 01:37:57 +08:00
|
|
|
task test: "test_#{adapter}"
|
|
|
|
task isolated_test: "isolated_test_#{adapter}"
|
2011-06-07 07:51:28 +08:00
|
|
|
|
|
|
|
# Set the connection environment for the adapter
|
2016-08-07 01:28:46 +08:00
|
|
|
task(:env) { ENV["ARCONN"] = adapter }
|
2007-10-08 13:29:09 +08:00
|
|
|
end
|
2011-06-07 07:51:28 +08:00
|
|
|
|
|
|
|
# Make sure the adapter test evaluates the env setting task
|
2014-05-04 02:15:11 +08:00
|
|
|
task "test_#{adapter}" => ["#{adapter}:env", "test:#{adapter}"]
|
|
|
|
task "isolated_test_#{adapter}" => ["#{adapter}:env", "test:isolated:#{adapter}"]
|
2005-03-27 22:10:42 +08:00
|
|
|
end
|
2005-02-07 22:06:00 +08:00
|
|
|
|
2014-05-04 02:15:11 +08:00
|
|
|
namespace :db do
|
|
|
|
namespace :mysql do
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Build the MySQL test databases"
|
2014-05-04 02:15:11 +08:00
|
|
|
task :build do
|
2016-08-07 01:28:46 +08:00
|
|
|
config = ARTest.config["connections"]["mysql2"]
|
|
|
|
%x( mysql --user=#{config["arunit"]["username"]} --password=#{config["arunit"]["password"]} -e "create DATABASE #{config["arunit"]["database"]} DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci ")
|
|
|
|
%x( mysql --user=#{config["arunit2"]["username"]} --password=#{config["arunit2"]["password"]} -e "create DATABASE #{config["arunit2"]["database"]} DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci ")
|
2014-05-04 02:15:11 +08:00
|
|
|
end
|
2014-05-04 02:08:15 +08:00
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Drop the MySQL test databases"
|
2014-05-04 02:15:11 +08:00
|
|
|
task :drop do
|
2016-08-07 01:28:46 +08:00
|
|
|
config = ARTest.config["connections"]["mysql2"]
|
|
|
|
%x( mysqladmin --user=#{config["arunit"]["username"]} --password=#{config["arunit"]["password"]} -f drop #{config["arunit"]["database"]} )
|
|
|
|
%x( mysqladmin --user=#{config["arunit2"]["username"]} --password=#{config["arunit2"]["password"]} -f drop #{config["arunit2"]["database"]} )
|
2014-05-04 02:15:11 +08:00
|
|
|
end
|
2005-11-20 15:45:04 +08:00
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Rebuild the MySQL test databases"
|
2016-08-07 01:37:57 +08:00
|
|
|
task rebuild: [:drop, :build]
|
2014-05-04 02:15:11 +08:00
|
|
|
end
|
2005-11-20 15:45:04 +08:00
|
|
|
|
2014-05-04 02:15:11 +08:00
|
|
|
namespace :postgresql do
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Build the PostgreSQL test databases"
|
2014-05-04 02:15:11 +08:00
|
|
|
task :build do
|
2016-08-07 01:28:46 +08:00
|
|
|
config = ARTest.config["connections"]["postgresql"]
|
|
|
|
%x( createdb -E UTF8 -T template0 #{config["arunit"]["database"]} )
|
|
|
|
%x( createdb -E UTF8 -T template0 #{config["arunit2"]["database"]} )
|
2014-05-04 02:15:11 +08:00
|
|
|
end
|
2007-10-08 13:29:09 +08:00
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Drop the PostgreSQL test databases"
|
2014-05-04 02:15:11 +08:00
|
|
|
task :drop do
|
2016-08-07 01:28:46 +08:00
|
|
|
config = ARTest.config["connections"]["postgresql"]
|
|
|
|
%x( dropdb #{config["arunit"]["database"]} )
|
|
|
|
%x( dropdb #{config["arunit2"]["database"]} )
|
2014-05-04 01:34:18 +08:00
|
|
|
end
|
2007-10-08 13:29:09 +08:00
|
|
|
|
2016-08-07 01:28:46 +08:00
|
|
|
desc "Rebuild the PostgreSQL test databases"
|
2016-08-07 01:37:57 +08:00
|
|
|
task rebuild: [:drop, :build]
|
2014-05-04 01:34:18 +08:00
|
|
|
end
|
2005-11-20 15:45:04 +08:00
|
|
|
end
|
|
|
|
|
2016-08-07 01:37:57 +08:00
|
|
|
task build_mysql_databases: "db:mysql:build"
|
|
|
|
task drop_mysql_databases: "db:mysql:drop"
|
|
|
|
task rebuild_mysql_databases: "db:mysql:rebuild"
|
2006-04-28 06:39:45 +08:00
|
|
|
|
2016-08-07 01:37:57 +08:00
|
|
|
task build_postgresql_databases: "db:postgresql:build"
|
|
|
|
task drop_postgresql_databases: "db:postgresql:drop"
|
|
|
|
task rebuild_postgresql_databases: "db:postgresql:rebuild"
|
2004-11-24 09:04:44 +08:00
|
|
|
|
2005-04-13 13:06:40 +08:00
|
|
|
task :lines do
|
2017-05-15 22:17:28 +08:00
|
|
|
load File.expand_path("../tools/line_statistics", __dir__)
|
2013-06-28 12:18:30 +08:00
|
|
|
files = FileList["lib/active_record/**/*.rb"]
|
|
|
|
CodeTools::LineStatistics.new(files).print_loc
|
2005-04-13 13:06:40 +08:00
|
|
|
end
|