mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
58 lines
2.3 KiB
Ruby
58 lines
2.3 KiB
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class ActionText::AttachmentTest < ActiveSupport::TestCase
|
||
|
test "from_attachable" do
|
||
|
attachment = ActionText::Attachment.from_attachable(attachable, caption: "Captioned")
|
||
|
assert_equal attachable, attachment.attachable
|
||
|
assert_equal "Captioned", attachment.caption
|
||
|
end
|
||
|
|
||
|
test "proxies missing methods to attachable" do
|
||
|
attachable.instance_eval { def proxied; "proxied"; end }
|
||
|
attachment = ActionText::Attachment.from_attachable(attachable)
|
||
|
assert_equal "proxied", attachment.proxied
|
||
|
end
|
||
|
|
||
|
test "proxies #to_param to attachable" do
|
||
|
attachment = ActionText::Attachment.from_attachable(attachable)
|
||
|
assert_equal attachable.to_param, attachment.to_param
|
||
|
end
|
||
|
|
||
|
# test "converts to TrixAttachment" do
|
||
|
# attachment = attachment_from_html(%Q(<action-text-attachment sgid="#{attachable.attachable_sgid}" caption="Captioned"></action-text-attachment>))
|
||
|
#
|
||
|
# trix_attachment = attachment.to_trix_attachment
|
||
|
# assert_kind_of ActionText::TrixAttachment, trix_attachment
|
||
|
#
|
||
|
# assert_equal attachable.attachable_sgid, trix_attachment.attributes["sgid"]
|
||
|
# assert_equal attachable.attachable_content_type, trix_attachment.attributes["contentType"]
|
||
|
# assert_equal attachable.filename.to_s, trix_attachment.attributes["filename"]
|
||
|
# assert_equal attachable.byte_size, trix_attachment.attributes["filesize"]
|
||
|
# assert_equal "Captioned", trix_attachment.attributes["caption"]
|
||
|
#
|
||
|
# assert_nil trix_attachment.attributes["content"]
|
||
|
# end
|
||
|
|
||
|
# test "converts to TrixAttachment with content" do
|
||
|
# attachment = attachment_from_html(%Q(<action-text-attachment sgid="#{attachable.attachable_sgid}"></action-text-attachment>))
|
||
|
#
|
||
|
# trix_attachment = attachment.to_trix_attachment
|
||
|
# assert_kind_of ActionText::TrixAttachment, trix_attachment
|
||
|
#
|
||
|
# assert_equal attachable.attachable_sgid, trix_attachment.attributes["sgid"]
|
||
|
# assert_equal attachable.attachable_content_type, trix_attachment.attributes["contentType"]
|
||
|
#
|
||
|
# assert_not_nil attachable.to_trix_content_attachment_partial_path
|
||
|
# assert_not_nil trix_attachment.attributes["content"]
|
||
|
# end
|
||
|
|
||
|
private
|
||
|
def attachment_from_html(html)
|
||
|
ActionText::Content.new(html).attachments.first
|
||
|
end
|
||
|
|
||
|
def attachable
|
||
|
@attachment ||= create_file_blob(filename: "racecar.jpg", content_type: "image/jpg")
|
||
|
end
|
||
|
end
|