const proxyquire = require('proxyquire'); const React = require('react'); const ReactTestUtils = require('react-dom/test-utils'); const { Contact, Message, File, AttachmentStore, MessageBodyProcessor, } = require('mailspring-exports'); class EmailFrameStub extends React.Component { render() { return
; } } const file = new File({ id: 'file_1_id', filename: 'a.png', contentType: 'image/png', size: 10, }); const file_not_downloaded = new File({ id: 'file_2_id', filename: 'b.png', contentType: 'image/png', size: 10, }); const file_inline = new File({ id: 'file_inline_id', filename: 'c.png', contentId: 'file_inline_id', contentType: 'image/png', size: 10, }); const file_inline_downloading = new File({ id: 'file_inline_downloading_id', filename: 'd.png', contentId: 'file_inline_downloading_id', contentType: 'image/png', size: 10, }); const file_inline_not_downloaded = new File({ id: 'file_inline_not_downloaded_id', filename: 'e.png', contentId: 'file_inline_not_downloaded_id', contentType: 'image/png', size: 10, }); const 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, }); const file_cid_but_not_referenced_or_image = new File({ id: 'file_cid_but_not_referenced_or_image', filename: 'ansible notes.txt', contentId: 'file_cid_but_not_referenced_or_image', contentType: 'text/plain', size: 300, }); const file_without_filename = new File({ id: 'file_without_filename', contentType: 'image/png', size: 10, }); const download = { fileId: 'file_1_id' }; const download_inline = { fileId: 'file_inline_downloading_id' }; const user_1 = new Contact({ name: 'User One', email: 'user1@nylas.com', }); const user_2 = new Contact({ name: 'User Two', email: 'user2@nylas.com', }); const user_3 = new Contact({ name: 'User Three', email: 'user3@nylas.com', }); const user_4 = new Contact({ name: 'User Four', email: 'user4@nylas.com', }); const MessageItemBody = proxyquire('../lib/message-item-body', { './email-frame': { default: EmailFrameStub }, }); xdescribe('MessageItem', function() { beforeEach(function() { spyOn(AttachmentStore, 'pathForFile').andCallFake(function(f) { if (f.id === file.id) { return '/fake/path.png'; } if (f.id === file_inline.id) { return '/fake/path-inline.png'; } if (f.id === file_inline_downloading.id) { return '/fake/path-downloading.png'; } return null; }); spyOn(MessageBodyProcessor, '_addToCache').andCallFake(function() {}); this.downloads = { file_1_id: download, file_inline_downloading_id: download_inline, }; this.message = new Message({ id: '111', from: [user_1], to: [user_2], cc: [user_3, user_4], bcc: null, body: 'Body One', date: new Date(1415814587), draft: false, files: [], unread: false, snippet: 'snippet one...', subject: 'Subject One', threadId: 'thread_12345', accountId: window.TEST_ACCOUNT_ID, }); // Generate the test component. Should be called after @message is configured // for the test, since MessageItem assumes attributes of the message will not // change after getInitialState runs. this.createComponent = param => { if (param == null) { param = {}; } let { collapsed } = param; if (collapsed == null) { collapsed = false; } this.component = ReactTestUtils.renderIntoDocument(Quoted message\ `; this.createComponent(); this.toggle = ReactTestUtils.findRenderedDOMComponentWithClass( this.component, 'quoted-text-control' ); }); it('should be rendered', function() { expect(this.toggle).toBeDefined(); }); }); it('should be initialized to true if the message contains `Forwarded`...', function() { this.message.body = `\ Hi guys, take a look at this. Very relevant. -mg
Quoted message\ `; this.createComponent(); this.component.state.showQuotedText = true; waitsFor(() => { return ReactTestUtils.scryRenderedComponentsWithType(this.component, EmailFrameStub) .length; }); }); describe('quoted text control toggle button', function() { beforeEach(function() { this.toggle = ReactTestUtils.findRenderedDOMComponentWithClass( this.component, 'quoted-text-control' ); }); it('should be rendered', function() { expect(this.toggle).toBeDefined(); }); }); it('should pass the value into the EmailFrame', function() { runs(() => { const frame = ReactTestUtils.findRenderedComponentWithType( this.component, EmailFrameStub ); expect(frame.props.showQuotedText).toBe(true); }); }); }); }); });