Mailspring/internal_packages/composer-signature/spec/signature-composer-extension-spec.es6
Annie 848b4ef8a1 fix(signatures): Added alias to accounts rendered in dropdown
Summary:
Extended default signatures to also be associated with aliases in the signature
preference page. Also fixed some styling with the signature dropdown button in its blurred
state on the popout composer.
fix(signatures): Fixed styling for signature compuser button on popout when blurred

test(signatures): Updated tests to support and cover extending signatures to alias

Test Plan: Modified existing tests to work with these changes

Reviewers: juan

Reviewed By: juan

Differential Revision: https://phab.nylas.com/D3111
2016-07-21 11:33:15 -07:00

81 lines
3.1 KiB
JavaScript

import {Message, SignatureStore} from 'nylas-exports';
import SignatureComposerExtension from '../lib/signature-composer-extension';
const TEST_ID = 1
const TEST_SIGNATURE = {
id: TEST_ID,
title: 'test-sig',
body: '<div class="something">This is my signature.</div>',
}
const TEST_SIGNATURES = {}
TEST_SIGNATURES[TEST_ID] = TEST_SIGNATURE
describe('SignatureComposerExtension', function signatureComposerExtension() {
describe("prepareNewDraft", () => {
describe("when a signature is defined", () => {
beforeEach(() => {
spyOn(NylasEnv.config, 'get').andCallFake(() => TEST_SIGNATURES);
spyOn(SignatureStore, 'signatureForEmail').andReturn(TEST_SIGNATURE)
SignatureStore.activate()
});
it("should insert the signature at the end of the message or before the first quoted text block and have a newline", () => {
const a = new Message({
draft: true,
from: ['one@nylas.com'],
accountId: TEST_ACCOUNT_ID,
body: 'This is a test! <div class="gmail_quote">Hello world</div>',
});
const b = new Message({
draft: true,
from: ['one@nylas.com'],
accountId: TEST_ACCOUNT_ID,
body: 'This is a another test.',
});
SignatureComposerExtension.prepareNewDraft({draft: a});
expect(a.body).toEqual(`This is a test! <signature>${TEST_SIGNATURE.body}</signature><div class="gmail_quote">Hello world</div>`);
SignatureComposerExtension.prepareNewDraft({draft: b});
expect(b.body).toEqual(`This is a another test.<br><br><signature>${TEST_SIGNATURE.body}</signature>`);
});
const scenarios = [
{
name: 'With blockquote',
body: `This is a test! <signature><div>SIG</div></signature><div class="gmail_quote">Hello world</div>`,
expected: `This is a test! <signature>${TEST_SIGNATURE.body}</signature><div class="gmail_quote">Hello world</div>`,
},
{
name: 'Populated signature div',
body: `This is a test! <signature><div>SIG</div></signature>`,
expected: `This is a test! <signature>${TEST_SIGNATURE.body}</signature>`,
},
{
name: 'Empty signature div',
body: 'This is a test! <signature></signature>',
expected: `This is a test! <signature>${TEST_SIGNATURE.body}</signature>`,
},
{
name: 'With newlines',
body: 'This is a test!<br/> <signature>\n<br>\n<div>SIG</div>\n</signature>',
expected: `This is a test!<br/> <signature>${TEST_SIGNATURE.body}</signature>`,
},
]
scenarios.forEach((scenario) => {
it(`should replace the signature if a signature is already present (${scenario.name})`, () => {
const message = new Message({
draft: true,
from: ['one@nylas.com'],
body: scenario.body,
accountId: TEST_ACCOUNT_ID,
})
SignatureComposerExtension.prepareNewDraft({draft: message});
expect(message.body).toEqual(scenario.expected)
});
});
});
});
});