2011-07-04 21:03:04 +04:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# 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 17:08:28 +04:00
|
|
|
#
|
2011-07-04 21:03:04 +04: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 17:08:28 +04:00
|
|
|
#
|
2011-07-04 21:03:04 +04: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.
|
|
|
|
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2009-01-26 04:47:51 +03:00
|
|
|
require 'issue_relations_controller'
|
|
|
|
|
|
|
|
# Re-raise errors caught by the controller.
|
|
|
|
class IssueRelationsController; def rescue_action(e) raise e end; end
|
|
|
|
|
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class IssueRelationsControllerTest < ActionController::TestCase
|
2009-01-27 22:33:03 +03:00
|
|
|
fixtures :projects,
|
|
|
|
:users,
|
|
|
|
:roles,
|
|
|
|
:members,
|
2009-05-10 14:54:31 +04:00
|
|
|
:member_roles,
|
2009-01-27 22:33:03 +03:00
|
|
|
:issues,
|
|
|
|
:issue_statuses,
|
2009-11-07 11:44:56 +03:00
|
|
|
:issue_relations,
|
2009-01-27 22:33:03 +03:00
|
|
|
:enabled_modules,
|
|
|
|
:enumerations,
|
|
|
|
:trackers
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2009-01-27 22:33:03 +03:00
|
|
|
def setup
|
|
|
|
@controller = IssueRelationsController.new
|
|
|
|
@request = ActionController::TestRequest.new
|
|
|
|
@response = ActionController::TestResponse.new
|
|
|
|
User.current = nil
|
|
|
|
end
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2011-07-04 21:03:04 +04:00
|
|
|
def test_create
|
2009-01-27 22:33:03 +03:00
|
|
|
assert_difference 'IssueRelation.count' do
|
|
|
|
@request.session[:user_id] = 3
|
2011-08-31 17:08:28 +04:00
|
|
|
post :create, :issue_id => 1,
|
2009-01-27 22:33:03 +03:00
|
|
|
:relation => {:issue_to_id => '2', :relation_type => 'relates', :delay => ''}
|
|
|
|
end
|
|
|
|
end
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2011-07-04 21:03:04 +04:00
|
|
|
def test_create_xhr
|
2011-01-28 00:38:47 +03:00
|
|
|
assert_difference 'IssueRelation.count' do
|
|
|
|
@request.session[:user_id] = 3
|
2011-07-04 21:03:04 +04:00
|
|
|
xhr :post, :create,
|
2011-08-31 17:08:28 +04:00
|
|
|
:issue_id => 3,
|
2011-01-28 00:38:47 +03:00
|
|
|
:relation => {:issue_to_id => '1', :relation_type => 'relates', :delay => ''}
|
|
|
|
assert_select_rjs 'relations' do
|
|
|
|
assert_select 'table', 1
|
|
|
|
assert_select 'tr', 2 # relations
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2011-07-04 21:03:04 +04:00
|
|
|
def test_create_should_accept_id_with_hash
|
2010-02-12 21:35:31 +03:00
|
|
|
assert_difference 'IssueRelation.count' do
|
|
|
|
@request.session[:user_id] = 3
|
2011-08-31 17:08:28 +04:00
|
|
|
post :create, :issue_id => 1,
|
2010-02-12 21:35:31 +03:00
|
|
|
:relation => {:issue_to_id => '#2', :relation_type => 'relates', :delay => ''}
|
|
|
|
end
|
|
|
|
end
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2011-07-04 21:03:04 +04:00
|
|
|
def test_create_should_not_break_with_non_numerical_id
|
2010-02-12 21:35:31 +03:00
|
|
|
assert_no_difference 'IssueRelation.count' do
|
|
|
|
assert_nothing_raised do
|
|
|
|
@request.session[:user_id] = 3
|
2011-08-31 17:08:28 +04:00
|
|
|
post :create, :issue_id => 1,
|
2010-02-12 21:35:31 +03:00
|
|
|
:relation => {:issue_to_id => 'foo', :relation_type => 'relates', :delay => ''}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2009-01-27 22:33:03 +03:00
|
|
|
def test_should_create_relations_with_visible_issues_only
|
|
|
|
Setting.cross_project_issue_relations = '1'
|
|
|
|
assert_nil Issue.visible(User.find(3)).find_by_id(4)
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2009-01-27 22:33:03 +03:00
|
|
|
assert_no_difference 'IssueRelation.count' do
|
|
|
|
@request.session[:user_id] = 3
|
2011-08-31 17:08:28 +04:00
|
|
|
post :create, :issue_id => 1,
|
2009-01-27 22:33:03 +03:00
|
|
|
:relation => {:issue_to_id => '4', :relation_type => 'relates', :delay => ''}
|
|
|
|
end
|
|
|
|
end
|
2011-06-26 16:47:15 +04:00
|
|
|
|
|
|
|
should "prevent relation creation when there's a circular dependency"
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2009-11-07 11:44:56 +03:00
|
|
|
def test_destroy
|
|
|
|
assert_difference 'IssueRelation.count', -1 do
|
|
|
|
@request.session[:user_id] = 3
|
2011-07-05 20:47:34 +04:00
|
|
|
delete :destroy, :id => '2'
|
2009-11-07 11:44:56 +03:00
|
|
|
end
|
|
|
|
end
|
2011-08-31 17:08:28 +04:00
|
|
|
|
2011-01-28 00:38:47 +03: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 17:08:28 +04:00
|
|
|
|
2011-01-28 00:38:47 +03:00
|
|
|
assert_difference 'IssueRelation.count', -1 do
|
|
|
|
@request.session[:user_id] = 3
|
2011-07-05 20:47:34 +04:00
|
|
|
xhr :delete, :destroy, :id => '2'
|
|
|
|
assert_select_rjs :remove, 'relation-2'
|
2011-01-28 00:38:47 +03:00
|
|
|
end
|
|
|
|
end
|
2009-01-26 04:47:51 +03:00
|
|
|
end
|