Merged r21090 from trunk to 4.2-stable (#35606).

git-svn-id: http://svn.redmine.org/redmine/branches/4.2-stable@21091 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2021-07-27 04:57:38 +00:00
parent ea9b7159da
commit ea05f03348
2 changed files with 11 additions and 1 deletions

View File

@@ -548,7 +548,7 @@ class Project < ActiveRecord::Base
# Returns a hash of project users/groups grouped by role
def principals_by_role
memberships.includes(:principal, :roles).inject({}) do |h, m|
memberships.active.includes(:principal, :roles).inject({}) do |h, m|
m.roles.each do |r|
h[r] ||= []
h[r] << m.principal

View File

@@ -475,6 +475,16 @@ class ProjectTest < ActiveSupport::TestCase
assert principals_by_role[role].include?(group)
end
def test_principals_by_role_should_only_return_active_users
#group = Group.find(10)
#Member.create!(:principal => group, :project_id => 1, :role_ids => [1])
principals_by_role = Project.find(1).principals_by_role
locked_user = User.find(5)
assert Project.find(1).memberships.map(&:principal).include?(locked_user)
assert_not principals_by_role.values.flatten.include?(locked_user)
end
def test_rolled_up_trackers
parent = Project.find(1)
parent.trackers = Tracker.find([1, 2])