mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
101 lines
3.6 KiB
CoffeeScript
101 lines
3.6 KiB
CoffeeScript
File = require '../../src/flux/models/file'
|
|
Actions = require '../../src/flux/actions'
|
|
FileUploadStore = require '../../src/flux/stores/file-upload-store'
|
|
fs = require 'fs'
|
|
|
|
msgId = "local-123"
|
|
fpath = "/foo/bar/test123.jpg"
|
|
|
|
describe 'FileUploadStore', ->
|
|
beforeEach ->
|
|
@file = new File
|
|
id: "id_123"
|
|
filename: "test123.jpg"
|
|
size: 12345
|
|
@uploadData =
|
|
uploadTaskId: 123
|
|
messageClientId: msgId
|
|
filePath: fpath
|
|
fileSize: 12345
|
|
|
|
spyOn(NylasEnv, "showOpenDialog").andCallFake (props, callback) ->
|
|
callback(fpath)
|
|
|
|
spyOn(Actions, "queueTask")
|
|
|
|
describe 'attachFile', ->
|
|
it "throws if no messageClientId is provided", ->
|
|
expect( -> Actions.attachFile()).toThrow()
|
|
|
|
it "throws if the message id is blank", ->
|
|
spyOn(Actions, "attachFilePath")
|
|
spyOn(fs, 'stat').andCallFake (path, callback) ->
|
|
callback(null, {size: 1234, isDirectory: -> false})
|
|
|
|
Actions.attachFile(messageClientId: msgId)
|
|
expect(NylasEnv.showOpenDialog).toHaveBeenCalled()
|
|
expect(Actions.attachFilePath).toHaveBeenCalled()
|
|
args = Actions.attachFilePath.calls[0].args[0]
|
|
expect(args.messageClientId).toBe msgId
|
|
expect(args.path).toBe fpath
|
|
|
|
describe 'attachFilePath', ->
|
|
it "throws if no messageClientId or path is provided", ->
|
|
expect( -> Actions.attachFilePath()).toThrow()
|
|
|
|
it 'Creates a new file upload task', ->
|
|
spyOn(fs, 'stat').andCallFake (path, callback) ->
|
|
callback(null, {size: 1234, isDirectory: -> false})
|
|
Actions.attachFilePath
|
|
messageClientId: msgId
|
|
path: fpath
|
|
expect(Actions.queueTask).toHaveBeenCalled()
|
|
t = Actions.queueTask.calls[0].args[0]
|
|
expect(t.filePath).toBe fpath
|
|
expect(t.messageClientId).toBe msgId
|
|
|
|
it 'displays an error if the file path given is a directory', ->
|
|
spyOn(FileUploadStore, '_onAttachFileError')
|
|
spyOn(fs, 'stat').andCallFake (path, callback) ->
|
|
callback(null, {size: 1234, isDirectory: -> true})
|
|
Actions.attachFilePath
|
|
messageClientId: msgId
|
|
path: fpath
|
|
expect(Actions.queueTask).not.toHaveBeenCalled()
|
|
expect(FileUploadStore._onAttachFileError).toHaveBeenCalled()
|
|
|
|
it 'displays an error if the file is more than 25MB', ->
|
|
spyOn(FileUploadStore, '_onAttachFileError')
|
|
spyOn(fs, 'stat').andCallFake (path, callback) ->
|
|
callback(null, {size: 25*1000000+1, isDirectory: -> true})
|
|
Actions.attachFilePath
|
|
messageClientId: msgId
|
|
path: fpath
|
|
expect(Actions.queueTask).not.toHaveBeenCalled()
|
|
expect(FileUploadStore._onAttachFileError).toHaveBeenCalled()
|
|
|
|
describe 'when upload state changes', ->
|
|
it 'updates the uploadData', ->
|
|
Actions.uploadStateChanged(@uploadData)
|
|
expect(FileUploadStore._fileUploads[123]).toBe @uploadData
|
|
|
|
describe 'when a file has been uploaded', ->
|
|
it 'adds removes from uploads', ->
|
|
FileUploadStore._fileUploads[123] = @uploadData
|
|
Actions.fileUploaded
|
|
file: @file
|
|
uploadData: @uploadData
|
|
expect(FileUploadStore._fileUploads[123]).not.toBeDefined()
|
|
|
|
it 'adds to the linked files', ->
|
|
FileUploadStore._fileUploads[123] = @uploadData
|
|
Actions.linkFileToUpload
|
|
file: @file
|
|
uploadData: @uploadData
|
|
expect(FileUploadStore._linkedFiles["id_123"]).toBe @uploadData
|
|
|
|
describe 'when a file has been aborted', ->
|
|
it 'removes it from the uploads', ->
|
|
FileUploadStore._fileUploads[123] = @uploadData
|
|
Actions.fileAborted(@uploadData)
|
|
expect(FileUploadStore._fileUploads[123]).not.toBeDefined()
|