mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
ed2a5c90d9
Summary: Things still to come: - General tab - Signatures tab (potentially remove and land) Adding emacs things to gitignore Adding progress. iterating on html/css is incredibly painful Added layout for accounts page. Adding layout for appearance page layout for shortcuts preferences page adding layount for notifications menu Adding signatures layout WIP WIP - tab switching, accounts tab WIP ALL THE THINGS Keymap template support (Gmail / outlook, etc.) Test Plan: No tests atm Reviewers: evan Differential Revision: https://phab.nylas.com/D1890
68 lines
2.6 KiB
CoffeeScript
68 lines
2.6 KiB
CoffeeScript
_ = require 'underscore'
|
|
Thread = require '../../src/flux/models/thread'
|
|
Message = require '../../src/flux/models/message'
|
|
FocusedContentStore = require '../../src/flux/stores/focused-content-store'
|
|
MessageStore = require '../../src/flux/stores/message-store'
|
|
DatabaseStore = require '../../src/flux/stores/database-store'
|
|
ChangeUnreadTask = require '../../src/flux/tasks/change-unread-task'
|
|
Actions = require '../../src/flux/actions'
|
|
|
|
testThread = new Thread(id: '123')
|
|
testMessage1 = new Message(id: 'a', body: '123', files: [])
|
|
testMessage2 = new Message(id: 'b', body: '123', files: [])
|
|
|
|
describe "MessageStore", ->
|
|
describe "when thread focus changes", ->
|
|
beforeEach ->
|
|
@focus = null
|
|
spyOn(FocusedContentStore, 'focused').andCallFake (collection) =>
|
|
if collection is 'thread'
|
|
@focus
|
|
else
|
|
null
|
|
|
|
spyOn(FocusedContentStore, 'focusedId').andCallFake (collection) =>
|
|
if collection is 'thread'
|
|
@focus?.id
|
|
else
|
|
null
|
|
|
|
spyOn(DatabaseStore, 'findAll').andCallFake ->
|
|
include: -> @
|
|
waitForAnimations: -> @
|
|
then: (callback) -> callback([testMessage1, testMessage2])
|
|
|
|
it "should retrieve the focused thread", ->
|
|
@focus = testThread
|
|
FocusedContentStore.trigger({impactsCollection: -> true})
|
|
expect(DatabaseStore.findAll).toHaveBeenCalled()
|
|
expect(DatabaseStore.findAll.mostRecentCall.args[0]).toBe(Message)
|
|
|
|
describe "when the thread is unread", ->
|
|
beforeEach ->
|
|
@focus = null
|
|
FocusedContentStore.trigger({impactsCollection: -> true})
|
|
testThread.unread = true
|
|
spyOn(Actions, 'queueTask')
|
|
spyOn(atom.config, 'get').andCallFake (key) =>
|
|
if key is 'core.reading.markAsReadDelay'
|
|
return 600
|
|
|
|
it "should queue a task to mark the thread as read", ->
|
|
@focus = testThread
|
|
FocusedContentStore.trigger({impactsCollection: -> true})
|
|
advanceClock(500)
|
|
expect(Actions.queueTask).not.toHaveBeenCalled()
|
|
advanceClock(500)
|
|
expect(Actions.queueTask).toHaveBeenCalled()
|
|
expect(Actions.queueTask.mostRecentCall.args[0] instanceof ChangeUnreadTask).toBe(true)
|
|
|
|
it "should not queue a task to mark the thread as read if the thread is no longer selected 500msec later", ->
|
|
@focus = testThread
|
|
FocusedContentStore.trigger({impactsCollection: -> true})
|
|
advanceClock(500)
|
|
expect(Actions.queueTask).not.toHaveBeenCalled()
|
|
@focus = null
|
|
FocusedContentStore.trigger({impactsCollection: -> true})
|
|
advanceClock(500)
|
|
expect(Actions.queueTask).not.toHaveBeenCalled()
|