fix(attachments): T427 - show attachments with contentIds not in body

Summary: Resolves an issue where an attachment with a contentId was excluded from the attachments list on the message, even though the cid was not found in the message body.

Test Plan: New test case

Reviewers: evan

Reviewed By: evan

Maniphest Tasks: T427

Differential Revision: https://review.inboxapp.com/D1293
This commit is contained in:
Ben Gotow 2015-03-13 10:55:28 -07:00
parent 0c2bcd3fba
commit fa69b07eaa
2 changed files with 45 additions and 37 deletions

View file

@ -164,8 +164,10 @@ MessageItem = React.createClass
_attachmentComponents: -> _attachmentComponents: ->
AttachmentComponent = @state.AttachmentComponent AttachmentComponent = @state.AttachmentComponent
attachments = _.filter @props.message.files, (f) -> attachments = _.filter @props.message.files, (f) =>
not f.contentId? and f.filename.length > 0 inBody = f.contentId? and @props.message.body.indexOf(f.contentId) > 0
not inBody and f.filename.length > 0
attachments.map (file) => attachments.map (file) =>
<AttachmentComponent file={file} key={file.id} download={@state.downloads[file.id]}/> <AttachmentComponent file={file} key={file.id} download={@state.downloads[file.id]}/>

View file

@ -38,6 +38,12 @@ file_inline_not_downloaded = new File
contentId: 'file_inline_not_downloaded_id' contentId: 'file_inline_not_downloaded_id'
contentType: 'image/png' contentType: 'image/png'
size: 10 size: 10
file_cid_but_not_referenced = new File
id: 'file_cid_but_not_referenced'
filename: 'f.png'
contentId: 'file_cid_but_not_referenced'
contentType: 'image/png'
size: 10
download = download =
fileId: 'file_1_id' fileId: 'file_1_id'
@ -153,34 +159,17 @@ describe "MessageItem", ->
it "should not have the `collapsed` class", -> it "should not have the `collapsed` class", ->
expect(@component.getDOMNode().className.indexOf('collapsed') >= 0).toBe(false) expect(@component.getDOMNode().className.indexOf('collapsed') >= 0).toBe(false)
describe "when the message contains attachments", -> describe "when the message contains attachments", ->
beforeEach ->
@message.files = [file, file_not_downloaded]
@createComponent()
it "should include the attachments area", ->
attachments = ReactTestUtils.findRenderedDOMComponentWithClass(@component, 'attachments-area')
expect(attachments).toBeDefined()
it "should render the registered AttachmentComponent for each attachment", ->
attachments = ReactTestUtils.scryRenderedComponentsWithType(@component, AttachmentStub)
expect(attachments.length).toEqual(2)
expect(attachments[0].props.file).toBe(file)
expect(attachments[1].props.file).toBe(file_not_downloaded)
it "should provide file download state to each AttachmentComponent", ->
attachments = ReactTestUtils.scryRenderedComponentsWithType(@component, AttachmentStub)
expect(attachments[0].props.download).toBe(download)
expect(attachments[1].props.download).toBe(undefined)
describe "when the message contains inline attachments", ->
beforeEach -> beforeEach ->
@message.files = [ @message.files = [
file, file,
file_not_downloaded,
file_cid_but_not_referenced,
file_inline, file_inline,
file_inline_downloading, file_inline_downloading,
file_inline_not_downloaded file_inline_not_downloaded,
] ]
@message.body = """ @message.body = """
<img alt=\"A\" src=\"cid:#{file_inline.contentId}\"/> <img alt=\"A\" src=\"cid:#{file_inline.contentId}\"/>
@ -190,23 +179,40 @@ describe "MessageItem", ->
""" """
@createComponent() @createComponent()
it "should never include src=cid:// in the message body", -> it "should include the attachments area", ->
body = @component._formatBody() attachments = ReactTestUtils.findRenderedDOMComponentWithClass(@component, 'attachments-area')
expect(body.indexOf('cid')).toEqual(-1) expect(attachments).toBeDefined()
it "should replace cid://<file.contentId> with the FileDownloadStore's path for the file", -> it "should render the registered AttachmentComponent for each attachment", ->
body = @component._formatBody()
expect(body.indexOf('alt="A" src="/fake/path-inline.png"')).toEqual(@message.body.indexOf('alt="A"'))
it "should not replace cid://<file.contentId> with the FileDownloadStore's path if the download is in progress", ->
body = @component._formatBody()
expect(body.indexOf('/fake/path-downloading.png')).toEqual(-1)
it "should not include them in the attachments area", ->
attachments = ReactTestUtils.scryRenderedComponentsWithType(@component, AttachmentStub) attachments = ReactTestUtils.scryRenderedComponentsWithType(@component, AttachmentStub)
expect(attachments.length).toEqual(1)
expect(attachments[0].props.file).toBe(file) expect(attachments[0].props.file).toBe(file)
it "should list attachments that are not mentioned in the body via cid", ->
attachments = ReactTestUtils.scryRenderedComponentsWithType(@component, AttachmentStub)
expect(attachments.length).toEqual(3)
expect(attachments[0].props.file).toBe(file)
expect(attachments[1].props.file).toBe(file_not_downloaded)
expect(attachments[2].props.file).toBe(file_cid_but_not_referenced)
it "should provide file download state to each AttachmentComponent", ->
attachments = ReactTestUtils.scryRenderedComponentsWithType(@component, AttachmentStub)
expect(attachments[0].props.download).toBe(download)
expect(attachments[1].props.download).toBe(undefined)
describe "inline", ->
it "should never leave src=cid:// in the message body", ->
body = @component._formatBody()
expect(body.indexOf('cid')).toEqual(-1)
it "should replace cid://<file.contentId> with the FileDownloadStore's path for the file", ->
body = @component._formatBody()
expect(body.indexOf('alt="A" src="/fake/path-inline.png"')).toEqual(@message.body.indexOf('alt="A"'))
it "should not replace cid://<file.contentId> with the FileDownloadStore's path if the download is in progress", ->
body = @component._formatBody()
expect(body.indexOf('/fake/path-downloading.png')).toEqual(-1)
describe "showQuotedText", -> describe "showQuotedText", ->
it "should be initialized to false", -> it "should be initialized to false", ->
@createComponent() @createComponent()