From a9626c697992fcd596726a4c16ba8c9757f6a0dd Mon Sep 17 00:00:00 2001 From: Jefferson Stachelski Date: Fri, 12 Feb 2016 17:58:45 -0200 Subject: attachments are only un-linked from emails but not deleted in soledad - removed backend delete of attachments - JS unit tests - Functional test Issue #549 --- .../test/spec/mail_view/ui/attachment_list.spec.js | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'web-ui/test') diff --git a/web-ui/test/spec/mail_view/ui/attachment_list.spec.js b/web-ui/test/spec/mail_view/ui/attachment_list.spec.js index 94559b63..eab605d6 100644 --- a/web-ui/test/spec/mail_view/ui/attachment_list.spec.js +++ b/web-ui/test/spec/mail_view/ui/attachment_list.spec.js @@ -120,6 +120,52 @@ describeMixin('mail_view/ui/attachment_list', function () { expect(uploadAccepted).toBe(true); }); }); + + describe('Remove attachment', function () { + it('should call the remove attachment method when triggered the removeAttachement event', function () { + var stubAttachment = {ident: 'whatever'}; + spyOn(this.component, 'removeAttachmentFromList'); + spyOn(this.component, 'destroyAttachmentElement'); + + $(document).trigger(Pixelated.events.mail.removeAttachment, stubAttachment); + + expect(this.component.removeAttachmentFromList).toHaveBeenCalledWith(stubAttachment); + expect(this.component.destroyAttachmentElement).toHaveBeenCalledWith(stubAttachment); + }); + + it('should remove the attachment item from the DOM', function () { + var stubAttachment = {ident: 'whatever'}; + this.setupComponent('
' + + '' + + '' + + '
'); + + expect(this.component.$node.find('li[data-ident=whatever]').length).toEqual(1); + + this.component.destroyAttachmentElement(stubAttachment); + + expect(this.component.$node.find('li[data-ident=whatever]').length).toEqual(0); + }); + + + it('should remove attachment from attachment list', function () { + var stubAttachment = {ident: 'whatever'}; + this.component.attr.attachments = [stubAttachment, {ident: 'another attachment'}]; + this.component.removeAttachmentFromList(stubAttachment); + + expect(this.component.attr.attachments).toEqual([{ident: 'another attachment'}]); + }); + + + it('when remove attachment that is not on the attachment list should not do anything', function () { + var stubAttachment = {ident: 'whatever'}; + this.component.attr.attachments = [stubAttachment]; + + this.component.removeAttachmentFromList({ident: 'different attachment'}); + + expect(this.component.attr.attachments).toEqual([stubAttachment]); + }); + }); }); }); }); -- cgit v1.2.3