mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
0c8aa06617
T2874
51 lines
2.3 KiB
CoffeeScript
51 lines
2.3 KiB
CoffeeScript
File = require '../../src/flux/models/file'
|
|
|
|
test_file_path = "/path/to/file.jpg"
|
|
|
|
describe "File", ->
|
|
it "attempts to generate a new file upload task on creation", ->
|
|
# File.create(test_file_path)
|
|
|
|
describe "displayName", ->
|
|
it "should return the filename if populated", ->
|
|
f = new File(filename: 'Hello world.jpg', contentType: 'image/jpg')
|
|
expect(f.displayName()).toBe('Hello world.jpg')
|
|
f = new File(filename: 'a', contentType: 'image/jpg')
|
|
expect(f.displayName()).toBe('a')
|
|
|
|
it "should return a good default name if a content type is populated", ->
|
|
f = new File(filename: '', contentType: 'image/jpg')
|
|
expect(f.displayName()).toBe('Unnamed Image.jpg')
|
|
f = new File(filename: null, contentType: 'image/jpg')
|
|
expect(f.displayName()).toBe('Unnamed Image.jpg')
|
|
f = new File(filename: null, contentType: 'text/calendar')
|
|
expect(f.displayName()).toBe('Event.ics')
|
|
|
|
it "should return Unnamed Attachment otherwise", ->
|
|
f = new File(filename: '', contentType: null)
|
|
expect(f.displayName()).toBe('Unnamed Attachment')
|
|
f = new File(filename: null, contentType: '')
|
|
expect(f.displayName()).toBe('Unnamed Attachment')
|
|
f = new File(filename: null, contentType: null)
|
|
expect(f.displayName()).toBe('Unnamed Attachment')
|
|
|
|
describe "displayExtension", ->
|
|
it "should return an extension based on the filename when populated", ->
|
|
f = new File(filename: 'Hello world.jpg', contentType: 'image/jpg')
|
|
expect(f.displayExtension()).toBe('jpg')
|
|
f = new File(filename: 'a', contentType: 'image/jpg')
|
|
expect(f.displayExtension()).toBe('')
|
|
|
|
it "should ignore the case of the extension i nthe filename", ->
|
|
f = new File(filename: 'Hello world.JPG', contentType: 'image/jpg')
|
|
expect(f.displayExtension()).toBe('jpg')
|
|
f = new File(filename: 'Hello world.Jpg', contentType: 'image/jpg')
|
|
expect(f.displayExtension()).toBe('jpg')
|
|
f = new File(filename: 'Hello world.jpg', contentType: 'image/jpg')
|
|
expect(f.displayExtension()).toBe('jpg')
|
|
|
|
it "should return an extension based on the default filename otherwise", ->
|
|
f = new File(filename: '', contentType: 'image/jpg')
|
|
expect(f.displayExtension()).toBe('jpg')
|
|
f = new File(filename: null, contentType: 'text/calendar')
|
|
expect(f.displayExtension()).toBe('ics')
|