diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-12 18:35:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-12 18:35:31 +0000 |
commit | 55a3ac764f191c097e80345d413bde3da92ce615 (patch) | |
tree | 66c2d885a1be3c24f67e0f04232d4286d0c461fd /test/functional/issue_relations_controller_test.rb | |
parent | 541d830d2a968f36d73add2b1e3693eab09136ed (diff) | |
download | redmine-55a3ac764f191c097e80345d413bde3da92ce615.tar.gz redmine-55a3ac764f191c097e80345d413bde3da92ce615.zip |
Issue relation: fixes error with postgres when entering a non-numeric id (#4820) + accept hash (#) before id.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3413 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/issue_relations_controller_test.rb')
-rw-r--r-- | test/functional/issue_relations_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/issue_relations_controller_test.rb b/test/functional/issue_relations_controller_test.rb index cd7af4eb9..e8834f1b7 100644 --- a/test/functional/issue_relations_controller_test.rb +++ b/test/functional/issue_relations_controller_test.rb @@ -40,6 +40,24 @@ class IssueRelationsControllerTest < ActionController::TestCase end end + def test_new_should_accept_id_with_hash + assert_difference 'IssueRelation.count' do + @request.session[:user_id] = 3 + post :new, :issue_id => 1, + :relation => {:issue_to_id => '#2', :relation_type => 'relates', :delay => ''} + end + end + + def test_new_should_not_break_with_non_numerical_id + assert_no_difference 'IssueRelation.count' do + assert_nothing_raised do + @request.session[:user_id] = 3 + post :new, :issue_id => 1, + :relation => {:issue_to_id => 'foo', :relation_type => 'relates', :delay => ''} + end + end + end + 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) |