]> source.dussan.org Git - redmine.git/commitdiff
Merged r17056 to 3.3-stable (#27663).
authorGo MAEDA <maeda@farend.jp>
Wed, 6 Dec 2017 13:24:49 +0000 (13:24 +0000)
committerGo MAEDA <maeda@farend.jp>
Wed, 6 Dec 2017 13:24:49 +0000 (13:24 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@17058 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue_relation.rb
test/functional/issue_relations_controller_test.rb
test/unit/issue_relation_test.rb

index ee3a642a1502e5bb18d25f2d3a45e8a5599a7fc8..51d97f6a0c93141ba804b557611d87f86117a500 100644 (file)
@@ -204,13 +204,19 @@ class IssueRelation < ActiveRecord::Base
 
   # Reverses the relation if needed so that it gets stored in the proper way
   # Should not be reversed before validation so that it can be displayed back
-  # as entered on new relation form
+  # as entered on new relation form.
+  #
+  # Orders relates relations by ID, so that uniqueness index in DB is triggered
+  # on concurrent access.
   def reverse_if_needed
     if TYPES.has_key?(relation_type) && TYPES[relation_type][:reverse]
       issue_tmp = issue_to
       self.issue_to = issue_from
       self.issue_from = issue_tmp
       self.relation_type = TYPES[relation_type][:reverse]
+
+    elsif relation_type == TYPE_RELATES && issue_from_id > issue_to_id
+      self.issue_to, self.issue_from = issue_from, issue_to
     end
   end
 
@@ -225,6 +231,8 @@ class IssueRelation < ActiveRecord::Base
       issue_from.blocks? issue_to
     when 'blocks'
       issue_to.blocks? issue_from
+    when 'relates'
+      self.class.where(issue_from_id: issue_to, issue_to_id: issue_from).present?
     else
       false
     end
index d389fa164ba964599f7551dbe04d86fff672baf8..b0e5f95fbc3cd87a707f2c81478df8525767501d 100644 (file)
@@ -63,8 +63,8 @@ class IssueRelationsControllerTest < ActionController::TestCase
       assert_equal 'text/javascript', response.content_type
     end
     relation = IssueRelation.order('id DESC').first
-    assert_equal 3, relation.issue_from_id
-    assert_equal 1, relation.issue_to_id
+    assert_equal 1, relation.issue_from_id
+    assert_equal 3, relation.issue_to_id
 
     assert_match /Bug #1/, response.body
   end
index f46a29cac3192777572e4d3784aa408dbe02644d..9d2ede58b319e06f69bd55ce91099e1377e3c3a6 100644 (file)
@@ -65,6 +65,20 @@ class IssueRelationTest < ActiveSupport::TestCase
     assert_equal from, relation.issue_to
   end
 
+  def test_cannot_create_inverse_relates_relations
+    from = Issue.find(1)
+    to = Issue.find(2)
+
+    relation1 = IssueRelation.new :issue_from => from, :issue_to => to,
+                                  :relation_type => IssueRelation::TYPE_RELATES
+    assert relation1.save
+
+    relation2 = IssueRelation.new :issue_from => to, :issue_to => from,
+                                  :relation_type => IssueRelation::TYPE_RELATES
+    assert !relation2.save
+    assert_not_equal [], relation2.errors[:base]
+  end
+
   def test_follows_relation_should_not_be_reversed_if_validation_fails
     from = Issue.find(1)
     to = Issue.find(2)