From aa7da0471f7fcf2adbbc26c37a25914d8493928d Mon Sep 17 00:00:00 2001 From: George Claghorn Date: Fri, 17 May 2019 16:42:21 -0400 Subject: Deduplicate ActionText::RichText embeds Fix that an ActiveRecord::RecordNotUnique error would be raised when saving rich-text content with the same file attached multiple times. --- actiontext/test/unit/model_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'actiontext/test') diff --git a/actiontext/test/unit/model_test.rb b/actiontext/test/unit/model_test.rb index af53f88caa..c2c3ccaaec 100644 --- a/actiontext/test/unit/model_test.rb +++ b/actiontext/test/unit/model_test.rb @@ -44,6 +44,15 @@ class ActionText::ModelTest < ActiveSupport::TestCase assert_equal [ActiveStorage::Attachment], message.content.embeds.map(&:class) end + test "embed extraction deduplicates file attachments" do + blob = create_file_blob(filename: "racecar.jpg", content_type: "image/jpg") + content = ActionText::Content.new("Hello world").append_attachables([ blob, blob ]) + + assert_nothing_raised do + Message.create!(subject: "Greetings", content: content) + end + end + test "saving content" do message = Message.create!(subject: "Greetings", content: "

Hello world

") assert_equal "Hello world", message.content.to_plain_text -- cgit v1.2.3