2019-03-16 15:03:47 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2011-07-04 17:03:04 +00:00
|
|
|
# Redmine - project management software
|
2023-01-01 06:19:35 +00:00
|
|
|
# Copyright (C) 2006-2023 Jean-Philippe Lang
|
2011-07-04 17:03:04 +00:00
|
|
|
#
|
|
|
|
|
# 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.
|
2011-08-31 13:08:28 +00:00
|
|
|
#
|
2011-07-04 17:03:04 +00:00
|
|
|
# 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.
|
2011-08-31 13:08:28 +00:00
|
|
|
#
|
2011-07-04 17:03:04 +00:00
|
|
|
# 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.
|
|
|
|
|
|
2023-01-01 07:13:39 +00:00
|
|
|
require_relative '../test_helper'
|
2009-01-26 01:47:51 +00:00
|
|
|
|
2016-07-14 09:35:49 +00:00
|
|
|
class IssueRelationsControllerTest < Redmine::ControllerTest
|
2009-01-27 19:33:03 +00:00
|
|
|
fixtures :projects,
|
|
|
|
|
:users,
|
|
|
|
|
:roles,
|
|
|
|
|
:members,
|
2009-05-10 10:54:31 +00:00
|
|
|
:member_roles,
|
2009-01-27 19:33:03 +00:00
|
|
|
:issues,
|
|
|
|
|
:issue_statuses,
|
2009-11-07 08:44:56 +00:00
|
|
|
:issue_relations,
|
2009-01-27 19:33:03 +00:00
|
|
|
:enabled_modules,
|
|
|
|
|
:enumerations,
|
2013-02-24 10:05:58 +00:00
|
|
|
:trackers,
|
|
|
|
|
:projects_trackers
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2009-01-27 19:33:03 +00:00
|
|
|
def setup
|
|
|
|
|
User.current = nil
|
2012-07-19 17:07:43 +00:00
|
|
|
@request.session[:user_id] = 3
|
2009-01-27 19:33:03 +00:00
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2011-07-04 17:03:04 +00:00
|
|
|
def test_create
|
2009-01-27 19:33:03 +00:00
|
|
|
assert_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '2',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2009-01-27 19:33:03 +00:00
|
|
|
end
|
2014-01-10 04:11:53 +00:00
|
|
|
relation = IssueRelation.order('id DESC').first
|
2012-04-11 17:27:11 +00:00
|
|
|
assert_equal 1, relation.issue_from_id
|
|
|
|
|
assert_equal 2, relation.issue_to_id
|
|
|
|
|
assert_equal 'relates', relation.relation_type
|
2009-01-27 19:33:03 +00:00
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2014-12-05 08:16:29 +00:00
|
|
|
def test_create_on_invalid_issue
|
|
|
|
|
assert_no_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 999,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '2',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2014-12-05 08:16:29 +00:00
|
|
|
assert_response 404
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2011-07-04 17:03:04 +00:00
|
|
|
def test_create_xhr
|
2011-01-27 21:38:47 +00:00
|
|
|
assert_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 3,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '1',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
:xhr => true
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2012-07-19 17:06:30 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'text/javascript', response.media_type
|
2011-01-27 21:38:47 +00:00
|
|
|
end
|
2014-01-10 04:11:53 +00:00
|
|
|
relation = IssueRelation.order('id DESC').first
|
2017-12-06 09:01:07 +00:00
|
|
|
assert_equal 1, relation.issue_from_id
|
|
|
|
|
assert_equal 3, relation.issue_to_id
|
2012-07-19 17:06:30 +00:00
|
|
|
|
2016-07-18 21:26:30 +00:00
|
|
|
assert_include 'Bug #1', response.body
|
2011-01-27 21:38:47 +00:00
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2011-07-04 17:03:04 +00:00
|
|
|
def test_create_should_accept_id_with_hash
|
2010-02-12 18:35:31 +00:00
|
|
|
assert_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '#2',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2010-02-12 18:35:31 +00:00
|
|
|
end
|
2014-01-10 04:11:53 +00:00
|
|
|
relation = IssueRelation.order('id DESC').first
|
2012-04-11 17:27:11 +00:00
|
|
|
assert_equal 2, relation.issue_to_id
|
2010-02-12 18:35:31 +00:00
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2012-04-11 17:25:05 +00:00
|
|
|
def test_create_should_strip_id
|
|
|
|
|
assert_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => ' 2 ',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2012-04-11 17:25:05 +00:00
|
|
|
end
|
2014-01-10 04:11:53 +00:00
|
|
|
relation = IssueRelation.order('id DESC').first
|
2012-04-11 17:25:05 +00:00
|
|
|
assert_equal 2, relation.issue_to_id
|
|
|
|
|
end
|
|
|
|
|
|
2011-07-04 17:03:04 +00:00
|
|
|
def test_create_should_not_break_with_non_numerical_id
|
2010-02-12 18:35:31 +00:00
|
|
|
assert_no_difference 'IssueRelation.count' do
|
|
|
|
|
assert_nothing_raised do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => 'foo',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2010-02-12 18:35:31 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2013-02-24 09:59:45 +00:00
|
|
|
def test_create_follows_relation_should_update_relations_list
|
2020-12-11 14:17:20 +00:00
|
|
|
issue1 = Issue.generate!(:subject => 'Followed issue',
|
|
|
|
|
:start_date => Date.yesterday,
|
|
|
|
|
:due_date => Date.today)
|
2013-02-24 09:59:45 +00:00
|
|
|
issue2 = Issue.generate!
|
|
|
|
|
|
|
|
|
|
assert_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => issue2.id,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => issue1.id,
|
|
|
|
|
:relation_type => 'follows',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
:xhr => true
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2013-02-24 09:59:45 +00:00
|
|
|
end
|
2016-07-18 21:26:30 +00:00
|
|
|
assert_include 'Followed issue', response.body
|
2013-02-24 09:59:45 +00:00
|
|
|
end
|
|
|
|
|
|
2009-01-27 19:33:03 +00:00
|
|
|
def test_should_create_relations_with_visible_issues_only
|
2020-12-11 14:18:33 +00:00
|
|
|
with_settings :cross_project_issue_relations => '1' do
|
|
|
|
|
assert_nil Issue.visible(User.find(3)).find_by_id(4)
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2020-12-11 14:18:33 +00:00
|
|
|
assert_no_difference 'IssueRelation.count' do
|
|
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
|
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '4',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
2017-05-31 17:32:34 +00:00
|
|
|
}
|
2020-12-11 14:18:33 +00:00
|
|
|
)
|
|
|
|
|
end
|
2009-01-27 19:33:03 +00:00
|
|
|
end
|
|
|
|
|
end
|
2011-06-26 12:47:15 +00:00
|
|
|
|
2012-07-19 17:06:30 +00:00
|
|
|
def test_create_xhr_with_failure
|
|
|
|
|
assert_no_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:issue_id => 3,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '999',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
:xhr => true
|
2020-11-08 13:01:30 +00:00
|
|
|
)
|
2012-07-19 17:06:30 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'text/javascript', response.media_type
|
2012-07-19 17:06:30 +00:00
|
|
|
end
|
2016-07-18 21:26:30 +00:00
|
|
|
assert_include 'Related issue cannot be blank', response.body
|
2012-07-19 17:06:30 +00:00
|
|
|
end
|
|
|
|
|
|
2021-08-10 19:35:53 +00:00
|
|
|
def test_create_duplicated_follows_relations_should_not_raise_exception
|
|
|
|
|
IssueRelation.create(
|
|
|
|
|
:issue_from => Issue.find(1), :issue_to => Issue.find(2),
|
|
|
|
|
:relation_type => IssueRelation::TYPE_PRECEDES
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
assert_no_difference 'IssueRelation.count' do
|
|
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
|
|
|
|
:issue_id => 2,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => 1,
|
|
|
|
|
:relation_type => 'follows',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
:xhr => true
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_response :success
|
|
|
|
|
assert_include 'has already been taken', response.body
|
|
|
|
|
end
|
|
|
|
|
|
2020-12-25 02:25:41 +00:00
|
|
|
def test_bulk_create_with_multiple_issue_to_id_issues
|
|
|
|
|
assert_difference 'IssueRelation.count', +3 do
|
2022-06-30 09:30:03 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
|
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
# js autocomplete adds a comma at the end
|
|
|
|
|
# issue to id should accept both id and hash with id
|
|
|
|
|
:issue_to_id => '2,3,#7, ',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
:xhr => true
|
|
|
|
|
)
|
2020-12-25 02:25:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_response :success
|
|
|
|
|
relations = IssueRelation.where(:issue_from_id => 1, :issue_to_id => [2, 3, 7])
|
|
|
|
|
assert_equal 3, relations.count
|
|
|
|
|
# all relations types should be 'relates'
|
|
|
|
|
relations.map {|r| assert_equal 'relates', r.relation_type}
|
|
|
|
|
|
|
|
|
|
# no error messages should be returned in the response
|
|
|
|
|
assert_not_include 'id=\"errorExplanation\"', response.body
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_bulk_create_should_show_errors
|
2022-01-13 01:20:43 +00:00
|
|
|
with_settings :cross_project_issue_relations => '0' do
|
|
|
|
|
assert_difference 'IssueRelation.count', +3 do
|
2022-06-30 09:30:03 +00:00
|
|
|
post(
|
|
|
|
|
:create,
|
|
|
|
|
:params => {
|
|
|
|
|
:issue_id => 1,
|
|
|
|
|
:relation => {
|
|
|
|
|
:issue_to_id => '1,2,3,4,5,7',
|
|
|
|
|
:relation_type => 'relates',
|
|
|
|
|
:delay => ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
:xhr => true
|
|
|
|
|
)
|
2022-01-13 01:20:43 +00:00
|
|
|
end
|
2020-12-25 02:25:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_response :success
|
|
|
|
|
assert_equal 'text/javascript', response.media_type
|
|
|
|
|
# issue #1 is invalid
|
|
|
|
|
assert_include 'Related issue is invalid: #1', response.body
|
|
|
|
|
# issues #4 and #5 can't be related by default
|
|
|
|
|
assert_include 'Related issue cannot be blank', response.body
|
|
|
|
|
assert_include 'Related issue doesn't belong to the same project', response.body
|
|
|
|
|
end
|
|
|
|
|
|
2009-11-07 08:44:56 +00:00
|
|
|
def test_destroy
|
|
|
|
|
assert_difference 'IssueRelation.count', -1 do
|
2020-11-08 13:01:30 +00:00
|
|
|
delete(:destroy, :params => {:id => '2'})
|
2009-11-07 08:44:56 +00:00
|
|
|
end
|
|
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2014-12-05 08:16:29 +00:00
|
|
|
def test_destroy_invalid_relation
|
|
|
|
|
assert_no_difference 'IssueRelation.count' do
|
2020-11-08 13:01:30 +00:00
|
|
|
delete(:destroy, :params => {:id => '999'})
|
2014-12-05 08:16:29 +00:00
|
|
|
assert_response 404
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2011-01-27 21:38:47 +00:00
|
|
|
def test_destroy_xhr
|
|
|
|
|
IssueRelation.create!(:relation_type => IssueRelation::TYPE_RELATES) do |r|
|
|
|
|
|
r.issue_from_id = 3
|
|
|
|
|
r.issue_to_id = 1
|
|
|
|
|
end
|
2011-08-31 13:08:28 +00:00
|
|
|
|
2011-01-27 21:38:47 +00:00
|
|
|
assert_difference 'IssueRelation.count', -1 do
|
2023-10-29 07:31:01 +00:00
|
|
|
delete(:destroy, :params => {:id => '2', :issue_id => '2'}, :xhr => true)
|
2012-07-19 17:06:30 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'text/javascript', response.media_type
|
2016-07-18 21:26:30 +00:00
|
|
|
assert_include 'relation-2', response.body
|
2011-01-27 21:38:47 +00:00
|
|
|
end
|
|
|
|
|
end
|
2009-01-26 01:47:51 +00:00
|
|
|
end
|