1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# frozen_string_literal: true
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_not_nil attachable.to_trix_content_attachment_partial_path
assert_not_nil trix_attachment.attributes["content"]
end
test "converts to TrixAttachment with content" do
attachable = Person.create! name: "Javan"
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
test "converts to plain text" do
assert_equal "[Vroom vroom]", ActionText::Attachment.from_attachable(attachable, caption: "Vroom vroom").to_plain_text
assert_equal "[racecar.jpg]", ActionText::Attachment.from_attachable(attachable).to_plain_text
end
test "defaults trix partial to model partial" do
attachable = Page.create! title: "Homepage"
assert_equal "pages/page", attachable.to_trix_content_attachment_partial_path
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
|