aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test
diff options
context:
space:
mode:
authorJavan Makhmali <javan@javan.us>2019-01-26 09:04:47 -0500
committerGitHub <noreply@github.com>2019-01-26 09:04:47 -0500
commitd90593d0deabb90ac5cfdf767f2f037337bb4d31 (patch)
tree669f7b661cf7298b2771224e2e385f8f82bad660 /actiontext/test
parent5fe6d3747efd37d7d8c6c9d6557d7b623e0398e8 (diff)
parent48c6ef9a7236a17799bb5d217fef721afdf06f44 (diff)
downloadrails-d90593d0deabb90ac5cfdf767f2f037337bb4d31.tar.gz
rails-d90593d0deabb90ac5cfdf767f2f037337bb4d31.tar.bz2
rails-d90593d0deabb90ac5cfdf767f2f037337bb4d31.zip
Merge pull request #35057 from javan/actiontext/blob-embeds-only
Fix error saving Action Text content containing non-blob attachables
Diffstat (limited to 'actiontext/test')
-rw-r--r--actiontext/test/unit/model_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/actiontext/test/unit/model_test.rb b/actiontext/test/unit/model_test.rb
index 122a20700b..d56363adc0 100644
--- a/actiontext/test/unit/model_test.rb
+++ b/actiontext/test/unit/model_test.rb
@@ -35,6 +35,15 @@ class ActionText::ModelTest < ActiveSupport::TestCase
assert_equal "racecar.jpg", message.content.embeds.first.filename.to_s
end
+ test "embed extraction only extracts file attachments" do
+ remote_image_html = '<action-text-attachment content-type="image" url="http://example.com/cat.jpg"></action-text-attachment>'
+ blob = create_file_blob(filename: "racecar.jpg", content_type: "image/jpg")
+ content = ActionText::Content.new(remote_image_html).append_attachables(blob)
+ message = Message.create!(subject: "Greetings", content: content)
+ assert_equal [ActionText::Attachables::RemoteImage, ActiveStorage::Blob], message.content.body.attachables.map(&:class)
+ assert_equal [ActiveStorage::Attachment], message.content.embeds.map(&:class)
+ end
+
test "saving content" do
message = Message.create!(subject: "Greetings", content: "<h1>Hello world</h1>")
assert_equal "Hello world", message.content.to_plain_text