FIX: Check type of existing reviewables when new reviewable is created (#13662)

This commit is contained in:
Mark VanLandingham 2021-07-07 11:45:00 -05:00 committed by GitHub
parent 9969631cef
commit 14a13dc192
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -139,8 +139,8 @@ class Reviewable < ActiveRecord::Base
)
reviewable.created_new!
if target.blank?
# If there is no target there's no chance of a conflict
if target.blank? || !Reviewable.where(target: target, type: reviewable.type).exists?
# If there is no target, or no existing reviewable with matching target and type, there's no chance of a conflict
reviewable.save!
else
# In this case, a reviewable might already exist for this (type, target_id) index.

View File

@ -78,6 +78,14 @@ RSpec.describe Reviewable, type: :model do
expect(r1.pending?).to eq(true)
expect(r0.pending?).to eq(false)
end
it "will create a new reviewable when an existing reviewable exists the same target with different type" do
r0 = Fabricate(:reviewable_queued_post)
r0.perform(admin, :approve_post)
r1 = ReviewableFlaggedPost.needs_review!(created_by: admin, target: r0.target)
expect(r1.pending?).to eq(true)
end
end
context ".list_for" do