mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-02 05:19:31 +08:00
71 lines
2.5 KiB
CoffeeScript
71 lines
2.5 KiB
CoffeeScript
NylasAPI = require '../../src/flux/nylas-api'
|
|
Actions = require '../../src/flux/actions'
|
|
{APIError} = require '../../src/flux/errors'
|
|
MarkMessageReadTask = require '../../src/flux/tasks/mark-message-read'
|
|
DatabaseStore = require '../../src/flux/stores/database-store'
|
|
Message = require '../../src/flux/models/message'
|
|
_ = require 'underscore'
|
|
|
|
describe "MarkMessageReadTask", ->
|
|
beforeEach ->
|
|
@message = new Message
|
|
id: '1233123AEDF1'
|
|
accountId: 'A12ADE'
|
|
subject: 'New Message'
|
|
unread: true
|
|
to:
|
|
name: 'Dummy'
|
|
email: 'dummy@nylas.com'
|
|
@task = new MarkMessageReadTask(@message)
|
|
|
|
describe "performLocal", ->
|
|
it "should mark the message as read", ->
|
|
@task.performLocal()
|
|
expect(@message.unread).toBe(false)
|
|
|
|
it "should trigger an action to persist the change", ->
|
|
spyOn(DatabaseStore, 'persistModel').andCallFake -> Promise.resolve()
|
|
@task.performLocal()
|
|
expect(DatabaseStore.persistModel).toHaveBeenCalled()
|
|
|
|
describe "performRemote", ->
|
|
it "should make the PUT request to the message endpoint", ->
|
|
spyOn(NylasAPI, 'makeRequest').andCallFake => new Promise (resolve,reject) ->
|
|
@task.performRemote()
|
|
options = NylasAPI.makeRequest.mostRecentCall.args[0]
|
|
expect(options.path).toBe("/messages/#{@message.id}")
|
|
expect(options.accountId).toBe(@message.accountId)
|
|
expect(options.method).toBe('PUT')
|
|
expect(options.body.unread).toBe(false)
|
|
|
|
describe "when the remote API request fails", ->
|
|
beforeEach ->
|
|
spyOn(DatabaseStore, 'persistModel').andCallFake -> Promise.resolve()
|
|
spyOn(NylasAPI, 'makeRequest').andCallFake -> Promise.reject(new APIError(body: '', statusCode: 400))
|
|
|
|
it "should not mark the message as unread if it was not unread initially", ->
|
|
message = new Message
|
|
id: '1233123AEDF1'
|
|
accountId: 'A12ADE'
|
|
subject: 'New Message'
|
|
unread: false
|
|
to:
|
|
name: 'Dummy'
|
|
email: 'dummy@nylas.com'
|
|
@task = new MarkMessageReadTask(message)
|
|
@task.performLocal()
|
|
@task.performRemote()
|
|
advanceClock()
|
|
expect(message.unread).toBe(false)
|
|
|
|
it "should mark the message as unread", ->
|
|
@task.performLocal()
|
|
@task.performRemote()
|
|
advanceClock()
|
|
expect(@message.unread).toBe(true)
|
|
|
|
it "should trigger an action to persist the change", ->
|
|
@task.performLocal()
|
|
@task.performRemote()
|
|
advanceClock()
|
|
expect(DatabaseStore.persistModel).toHaveBeenCalled()
|