mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
886328ff7a
Great breakdown of React changes here: https://github.com/facebook/react/blob/master/CHANGELOG.md#0140-october-7-2015 Due to deprecation warnings, I don't think this will break third-party extensions unless they were doing really bad things.
117 lines
4.2 KiB
JavaScript
117 lines
4.2 KiB
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import ReactTestUtils from 'react-addons-test-utils';
|
|
|
|
import {renderIntoDocument} from '../../../spec/nylas-test-utils';
|
|
import Contenteditable from '../../../src/components/contenteditable/contenteditable';
|
|
import EmojiComposerExtension from '../lib/emoji-composer-extension';
|
|
|
|
describe('EmojiComposerExtension', ()=> {
|
|
beforeEach(()=> {
|
|
spyOn(EmojiComposerExtension, 'onContentChanged').andCallThrough()
|
|
spyOn(EmojiComposerExtension, '_onSelectEmoji').andCallThrough()
|
|
const html = 'Testing!'
|
|
const onChange = jasmine.createSpy('onChange')
|
|
this.component = renderIntoDocument(
|
|
<Contenteditable html={html} onChange={onChange} extensions={[EmojiComposerExtension]}/>
|
|
)
|
|
this.editableNode = ReactDOM.findDOMNode(this.component).querySelector('[contenteditable]');
|
|
})
|
|
|
|
describe('when emoji trigger is typed', ()=> {
|
|
beforeEach(()=> {
|
|
this._performEdit = (newHTML) => {
|
|
this.editableNode.innerHTML = newHTML;
|
|
const sel = document.getSelection()
|
|
const textNode = this.editableNode.childNodes[0];
|
|
sel.setBaseAndExtent(textNode, textNode.nodeValue.length, textNode, textNode.nodeValue.length);
|
|
}
|
|
})
|
|
|
|
it('should show the emoji picker', ()=> {
|
|
runs(()=> {
|
|
this._performEdit('Testing! :h');
|
|
});
|
|
waitsFor(()=> {
|
|
return ReactTestUtils.scryRenderedDOMComponentsWithClass(this.component, 'emoji-picker').length > 0
|
|
});
|
|
})
|
|
|
|
it('should be focused on the first emoji in the list', ()=> {
|
|
runs(()=> {
|
|
this._performEdit('Testing! :h');
|
|
});
|
|
waitsFor(()=> {
|
|
return ReactTestUtils.scryRenderedDOMComponentsWithClass(this.component, 'emoji-option').length > 0
|
|
});
|
|
runs(()=> {
|
|
expect(ReactDOM.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithClass(this.component, 'emoji-option')).textContent === "💇 :haircut:").toBe(true);
|
|
});
|
|
})
|
|
|
|
it('should insert an emoji on enter', ()=> {
|
|
runs(()=> {
|
|
this._performEdit('Testing! :h');
|
|
});
|
|
waitsFor(()=> {
|
|
return ReactTestUtils.scryRenderedDOMComponentsWithClass(this.component, 'emoji-picker').length > 0
|
|
});
|
|
runs(()=> {
|
|
ReactTestUtils.Simulate.keyDown(this.editableNode, {key: "Enter", keyCode: 13, which: 13});
|
|
});
|
|
waitsFor(()=> {
|
|
return EmojiComposerExtension._onSelectEmoji.calls.length > 0
|
|
})
|
|
runs(()=> {
|
|
expect(this.editableNode.textContent === "Testing! 💇").toBe(true);
|
|
});
|
|
})
|
|
|
|
it('should insert an emoji on click', ()=> {
|
|
runs(()=> {
|
|
this._performEdit('Testing! :h');
|
|
});
|
|
waitsFor(()=> {
|
|
return ReactTestUtils.scryRenderedDOMComponentsWithClass(this.component, 'emoji-picker').length > 0
|
|
});
|
|
runs(()=> {
|
|
const button = ReactDOM.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithClass(this.component, 'emoji-option'))
|
|
ReactTestUtils.Simulate.mouseDown(button);
|
|
expect(EmojiComposerExtension._onSelectEmoji).toHaveBeenCalled()
|
|
});
|
|
waitsFor(()=> {
|
|
return EmojiComposerExtension._onSelectEmoji.calls.length > 0
|
|
})
|
|
runs(()=> {
|
|
expect(this.editableNode.textContent).toEqual("Testing! 💇");
|
|
});
|
|
})
|
|
|
|
it('should move to the next emoji on arrow down', ()=> {
|
|
runs(()=> {
|
|
this._performEdit('Testing! :h');
|
|
});
|
|
waitsFor(()=> {
|
|
return ReactTestUtils.scryRenderedDOMComponentsWithClass(this.component, 'emoji-option').length > 0
|
|
});
|
|
runs(()=> {
|
|
ReactTestUtils.Simulate.keyDown(this.editableNode, {key: "ArrowDown", keyCode: 40, which: 40});
|
|
});
|
|
waitsFor(()=> {
|
|
return EmojiComposerExtension.onContentChanged.calls.length > 1
|
|
});
|
|
runs(()=> {
|
|
expect(ReactDOM.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithClass(this.component, 'emoji-option')).textContent).toEqual("🍔 :hamburger:");
|
|
});
|
|
})
|
|
|
|
it('should be able to insert two emoji next to each other', ()=> {
|
|
runs(()=> {
|
|
this._performEdit('Testing! 🍔 :h');
|
|
});
|
|
waitsFor(()=> {
|
|
return ReactTestUtils.scryRenderedDOMComponentsWithClass(this.component, 'emoji-picker').length > 0
|
|
});
|
|
})
|
|
})
|
|
})
|