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.
65 lines
2.4 KiB
CoffeeScript
65 lines
2.4 KiB
CoffeeScript
React = require "react"
|
|
ReactDOM = require "react-dom"
|
|
ReactTestUtils = require 'react-addons-test-utils'
|
|
{Thread, FocusedContentStore, Actions, ChangeUnreadTask} = require "nylas-exports"
|
|
{ToggleStarredButton, ToggleUnreadButton} = require '../lib/thread-toolbar-buttons'
|
|
|
|
test_thread = (new Thread).fromJSON({
|
|
"id" : "thread_12345"
|
|
"account_id": TEST_ACCOUNT_ID
|
|
"subject" : "Subject 12345"
|
|
"starred": false
|
|
})
|
|
|
|
test_thread_starred = (new Thread).fromJSON({
|
|
"id" : "thread_starred_12345"
|
|
"account_id": TEST_ACCOUNT_ID
|
|
"subject" : "Subject 12345"
|
|
"starred": true
|
|
})
|
|
|
|
describe "ThreadToolbarButtons", ->
|
|
|
|
describe "Starring", ->
|
|
it "stars a thread if the star button is clicked and thread is unstarred", ->
|
|
spyOn(Actions, 'queueTask')
|
|
starButton = ReactTestUtils.renderIntoDocument(<ToggleStarredButton items={[test_thread]}/>)
|
|
|
|
ReactTestUtils.Simulate.click ReactDOM.findDOMNode(starButton)
|
|
|
|
expect(Actions.queueTask.mostRecentCall.args[0].threads).toEqual([test_thread])
|
|
expect(Actions.queueTask.mostRecentCall.args[0].starred).toEqual(true)
|
|
|
|
it "unstars a thread if the star button is clicked and thread is starred", ->
|
|
spyOn(Actions, 'queueTask')
|
|
starButton = ReactTestUtils.renderIntoDocument(<ToggleStarredButton items={[test_thread_starred]}/>)
|
|
|
|
ReactTestUtils.Simulate.click ReactDOM.findDOMNode(starButton)
|
|
|
|
expect(Actions.queueTask.mostRecentCall.args[0].threads).toEqual([test_thread_starred])
|
|
expect(Actions.queueTask.mostRecentCall.args[0].starred).toEqual(false)
|
|
|
|
describe "Marking as unread", ->
|
|
thread = null
|
|
markUnreadBtn = null
|
|
|
|
beforeEach ->
|
|
thread = new Thread(id: "thread-id-lol-123", accountId: TEST_ACCOUNT_ID, unread: false)
|
|
markUnreadBtn = ReactTestUtils.renderIntoDocument(
|
|
<ToggleUnreadButton items={[thread]} />
|
|
)
|
|
|
|
it "queues a task to change unread status to true", ->
|
|
spyOn Actions, "queueTask"
|
|
ReactTestUtils.Simulate.click ReactDOM.findDOMNode(markUnreadBtn).childNodes[0]
|
|
|
|
changeUnreadTask = Actions.queueTask.calls[0].args[0]
|
|
expect(changeUnreadTask instanceof ChangeUnreadTask).toBe true
|
|
expect(changeUnreadTask.unread).toBe true
|
|
expect(changeUnreadTask.threads[0].id).toBe thread.id
|
|
|
|
it "returns to the thread list", ->
|
|
spyOn Actions, "popSheet"
|
|
ReactTestUtils.Simulate.click ReactDOM.findDOMNode(markUnreadBtn).childNodes[0]
|
|
|
|
expect(Actions.popSheet).toHaveBeenCalled()
|