}.freeze
validates_presence_of :issue_from, :issue_to, :relation_type
- validates_inclusion_of :relation_type, :in => [TYPE_RELATES, TYPE_DUPLICATES, TYPE_BLOCKS, TYPE_PRECEDES]
+ validates_inclusion_of :relation_type, :in => TYPES.keys
validates_numericality_of :delay, :allow_nil => true
validates_uniqueness_of :issue_to_id, :scope => :issue_from_id
attr_protected :issue_from_id, :issue_to_id
- before_validation :reverse_if_needed
-
def validate
if issue_from && issue_to
errors.add :issue_to_id, :invalid if issue_from_id == issue_to_id
end
def before_save
+ reverse_if_needed
+
if TYPE_PRECEDES == relation_type
self.delay ||= 0
else
assert_equal to, relation.issue_from
assert_equal from, relation.issue_to
end
+
+ def test_follows_relation_should_not_be_reversed_if_validation_fails
+ from = Issue.find(1)
+ to = Issue.find(2)
+
+ relation = IssueRelation.new :issue_from => from, :issue_to => to, :relation_type => IssueRelation::TYPE_FOLLOWS, :delay => 'xx'
+ assert !relation.save
+ assert_equal IssueRelation::TYPE_FOLLOWS, relation.relation_type
+ assert_equal from, relation.issue_from
+ assert_equal to, relation.issue_to
+ end
end