Initial Redmine tooling and local plugin forks

This commit is contained in:
Jason Thistlethwaite
2026-04-24 22:01:18 +00:00
commit 9f682af0eb
683 changed files with 56878 additions and 0 deletions
@@ -0,0 +1,150 @@
# encoding: utf-8
#
# This file is a part of Redmine CRM (redmine_contacts) plugin,
# customer relationship management plugin for Redmine
#
# Copyright (C) 2010-2018 RedmineUP
# http://www.redmineup.com/
#
# redmine_contacts 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 3 of the License, or
# (at your option) any later version.
#
# redmine_contacts 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 redmine_contacts. If not, see <http://www.gnu.org/licenses/>.
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')
def redmine_contacts_fixture_files_path
"#{Rails.root}/plugins/redmine_contacts/test/fixtures/files/"
end
# Engines::Testing.set_fixture_path
module RedmineContacts
module TestHelper
def compatible_request(type, action, parameters = {})
return send(type, action, :params => parameters) if Rails.version >= '5.1'
send(type, action, parameters)
end
def compatible_xhr_request(type, action, parameters = {})
return send(type, action, :params => parameters, :xhr => true) if Rails.version >= '5.1'
xhr type, action, parameters
end
def compatible_api_request(type, action, parameters = {}, headers = {})
return send(type, action, :params => parameters, :headers => headers) if Rails.version >= '5.1'
send(type, action, parameters, headers)
end
def issues_in_list
ids = css_select('tr.issue td.id').map{ |tag| tag['text'].to_i }
Issue.where(:id => ids).sort_by { |issue| ids.index(issue.id) }
end
def contacts_in_list
ids = css_select('table.contacts #selected_contacts_').map { |tag| tag['value'].to_i }
Contact.where(:id => ids).sort_by { |contact| ids.index(contact.id) }
end
def deals_in_list
ids = css_select('.deal_list #ids_').map { |tag| tag['value'].to_i }
Deal.where(:id => ids).sort_by { |contact| ids.index(contact.id) }
end
def with_contacts_settings(options, &block)
Setting.plugin_redmine_contacts.stubs(:[]).returns(nil)
options.each { |k, v| Setting.plugin_redmine_contacts.stubs(:[]).with(k).returns(v) }
yield
ensure
options.each { |_k, _v| Setting.plugin_redmine_contacts.unstub(:[]) }
end
end
end
class RedmineContacts::TestCase
include ActionDispatch::TestProcess
def self.plugin_fixtures(plugin, *fixture_names)
plugin_fixture_path = "#{Redmine::Plugin.find(plugin).directory}/test/fixtures"
if fixture_names.first == :all
fixture_names = Dir["#{plugin_fixture_path}/**/*.{yml}"]
fixture_names.map! { |f| f[(plugin_fixture_path.size + 1)..-5] }
else
fixture_names = fixture_names.flatten.map { |n| n.to_s }
end
ActiveRecord::Fixtures.create_fixtures(plugin_fixture_path, fixture_names)
end
def uploaded_test_file(name, mime)
ActionController::TestUploadedFile.new(ActiveSupport::TestCase.fixture_path + "/files/#{name}", mime, true)
end
def self.is_arrays_equal(a1, a2)
(a1 - a2) - (a2 - a1) == []
end
def self.create_fixtures(fixtures_directory, table_names, class_names = {})
if ActiveRecord::VERSION::MAJOR >= 4
ActiveRecord::FixtureSet.create_fixtures(fixtures_directory, table_names, class_names)
else
ActiveRecord::Fixtures.create_fixtures(fixtures_directory, table_names, class_names)
end
end
def self.prepare
# User 2 Manager (role 1) in project 1, email jsmith@somenet.foo
# User 3 Developer (role 2) in project 1
Role.where(:id => [1, 2, 3, 4]).each do |r|
r.permissions << :view_contacts
r.save
end
Role.where(:id => [1, 2]).each do |r|
#user_2, user_3
r.permissions << :add_contacts
r.save
end
Role.where(:id => 1).each do |r|
#user_2
r.permissions << :add_deals
r.permissions << :save_contacts_queries
r.save
end
Role.where(:id => [1, 2]).each do |r|
r.permissions << :edit_contacts
r.save
end
Role.where(:id => [1, 2, 3]).each do |r|
r.permissions << :view_deals
r.save
end
Role.where(:id => 2).each do |r|
r.permissions << :edit_deals
r.permissions << :manage_contact_issue_relations
r.save
end
Role.where(:id => [1, 2]).each do |r|
r.permissions << :manage_public_contacts_queries
r.save
end
Project.where(:id => [1, 2, 3, 4, 5]).each do |project|
EnabledModule.create(:project => project, :name => 'contacts')
EnabledModule.create(:project => project, :name => 'deals')
end
end
end
include RedmineContacts::TestHelper