#-- encoding: UTF-8 #-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2015 the OpenProject Foundation (OPF) # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # See doc/COPYRIGHT.rdoc for more details. #++ namespace :parallel do namespace :plugins do desc 'Run plugin specs in parallel' task spec: [:environment] do ParallelTests::Tasks.check_for_pending_migrations num_cpus = ENV['GROUP_SIZE'] group = ENV['GROUP'] runtime_log = ENV['RUNTIME_LOG'] || 'tmp/parallel_runtime_plugins_rspec.log' group_options = num_cpus ? "-n #{num_cpus}" : '' group_options += " --only-group #{group}" if group runtime_log_option = "--runtime-log #{runtime_log}" spec_folders = Plugins::LoadPathHelper.spec_load_paths.join(' ') # Change this if changed in spec/support/rspec_failures.rb if File.exist? 'tmp/rspec-examples.txt' sh 'rm tmp/rspec-examples.txt' end cmd = "bundle exec parallel_test --type rspec #{runtime_log_option} #{group_options} #{spec_folders} || \ bundle exec rspec --only-failures" sh cmd end desc 'Run plugin cucumber features in parallel' task cucumber: [:environment] do ParallelTests::Tasks.check_for_pending_migrations num_cpus = ENV['GROUP_SIZE'] group = ENV['GROUP'] runtime_log = ENV['RUNTIME_LOG'] || 'tmp/parallel_runtime_plugins_cucumber.log' group_options = num_cpus ? "-n #{num_cpus}" : '' group_options += " --only-group #{group}" if group runtime_log_option = "--runtime-log #{runtime_log}" support_files = [Rails.root.join('features').to_s] + Plugins::LoadPathHelper.cucumber_load_paths support_files = support_files.map { |path| ['-r', Shellwords.escape(path)] }.flatten.join(' ') feature_folders = Plugins::LoadPathHelper.cucumber_load_paths.join(' ') cucumber_options = "-o '#{support_files}'" cmd = "bundle exec parallel_test --type cucumber #{cucumber_options} #{runtime_log_option} #{group_options} #{feature_folders}" sh cmd end end desc 'Run all suites in parallel (one after another)' task all: [:spec, :cucumber, :spec_legacy, 'parallel:plugins:spec', 'parallel:plugins:cucumber'] desc 'Run legacy specs in parallel' task :spec_legacy do sh "bundle exec parallel_test --type rspec -o '-I spec_legacy' spec_legacy || \ bundle exec rspec -I spec_legacy spec_legacy" end desc 'Run cucumber features in parallel (custom task)' task :cucumber do sh "bundle exec parallel_test --type cucumber -o '-r features' features" end end