2013-06-05 16:27:56 +02:00
|
|
|
#-- copyright
|
2020-01-15 11:31:26 +01:00
|
|
|
# OpenProject is an open source project management software.
|
2024-07-30 13:42:36 +02:00
|
|
|
# Copyright (C) the OpenProject GmbH
|
2013-06-05 16:27:56 +02:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
|
|
|
#
|
2013-09-16 17:59:31 +02:00
|
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
2021-01-13 17:47:45 +01:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2013-09-16 17:59:31 +02:00
|
|
|
# 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.
|
|
|
|
|
#
|
2021-09-02 21:49:06 +02:00
|
|
|
# See COPYRIGHT and LICENSE files for more details.
|
2013-06-05 16:27:56 +02:00
|
|
|
#++
|
|
|
|
|
|
2013-04-16 12:27:57 +02:00
|
|
|
# Run all core and plugins specs via
|
2014-10-30 16:39:02 +01:00
|
|
|
# rake spec_all
|
2013-04-16 12:27:57 +02:00
|
|
|
#
|
|
|
|
|
# Run plugins specs via
|
|
|
|
|
# rake spec_plugins
|
|
|
|
|
#
|
2013-03-28 10:34:05 +01:00
|
|
|
# A plugin must register for tests via config variable 'plugins_to_test_paths'
|
|
|
|
|
#
|
|
|
|
|
# e.g.
|
|
|
|
|
# class Engine < ::Rails::Engine
|
|
|
|
|
# initializer 'register_path_to_rspec' do |app|
|
|
|
|
|
# app.config.plugins_to_test_paths << self.root
|
|
|
|
|
# end
|
|
|
|
|
# end
|
|
|
|
|
#
|
|
|
|
|
|
2013-04-16 17:37:18 +02:00
|
|
|
begin
|
2014-11-03 22:13:00 +01:00
|
|
|
require "rspec/core/rake_task"
|
2013-04-16 12:27:57 +02:00
|
|
|
|
2013-04-17 09:38:24 +02:00
|
|
|
namespace :spec do
|
2014-11-03 22:13:00 +01:00
|
|
|
desc "Run core and plugin specs"
|
2018-06-22 08:23:39 +02:00
|
|
|
RSpec::Core::RakeTask.new(all: [:environment]) do |t|
|
2015-11-02 12:27:42 +01:00
|
|
|
t.pattern = [Rails.root.join("spec").to_s] + Plugins::LoadPathHelper.spec_load_paths
|
2013-04-16 12:27:57 +02:00
|
|
|
end
|
|
|
|
|
|
2014-11-03 22:13:00 +01:00
|
|
|
desc "Run plugin specs"
|
2018-06-22 08:23:39 +02:00
|
|
|
RSpec::Core::RakeTask.new(plugins: [:environment]) do |t|
|
2015-11-02 12:27:42 +01:00
|
|
|
t.pattern = Plugins::LoadPathHelper.spec_load_paths
|
2015-10-28 16:15:39 +01:00
|
|
|
|
|
|
|
|
# in case we want to run plugins' specs and there are none
|
|
|
|
|
# we exit with positive message
|
2015-11-02 12:27:42 +01:00
|
|
|
if t.pattern.empty?
|
2015-10-28 16:15:39 +01:00
|
|
|
puts
|
|
|
|
|
puts "##### There are no specs for OpenProject plugins to be run."
|
|
|
|
|
puts
|
|
|
|
|
exit(0)
|
|
|
|
|
end
|
2013-03-28 10:34:05 +01:00
|
|
|
end
|
|
|
|
|
end
|
2013-04-16 17:37:18 +02:00
|
|
|
rescue LoadError
|
2013-03-28 10:34:05 +01:00
|
|
|
end
|