-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPromiseFileReader_test.js
105 lines (91 loc) · 3.08 KB
/
PromiseFileReader_test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const {expect, assert} = require('chai')
const sinon = require('sinon')
const {readAsDataURL, readAsText, readAsArrayBuffer} = require('./PromiseFileReader')
describe('PromiseFileReader', () => {
beforeEach(() => {
Blob = class Blob{}
File = class File extends Blob{}
FileReader = class FileReader{
onload() {}
onerror() {}
readAsDataURL() {}
readAsText() {}
readAsArrayBuffer() {}
}
})
describe('readAsDataURL', () => {
it('should be a function', () => {
expect(readAsDataURL).to.be.a('function')
})
it('should return a promise', () => {
Blob = class Files{}
expect(readAsDataURL(new Blob())).to.be.a('promise')
})
it('should require a Blob or File', () => {
class MockClass {}
expect(readAsDataURL).to.throw()
expect(() => readAsDataURL(new MockClass())).to.throw()
expect(() => readAsDataURL(new Blob())).to.not.throw()
expect(() => readAsDataURL(new File())).to.not.throw()
})
it('should call the original function', () => {
const callback = sinon.spy();
FileReader.prototype.readAsDataURL = callback
const mockBlob = new Blob()
mockBlob.id = 1
readAsDataURL(mockBlob)
sinon.assert.calledOnce(callback);
sinon.assert.calledWith(callback, mockBlob)
})
})
describe('readAsText', () => {
it('should be a function', () => {
expect(readAsText).to.be.a('function')
})
it('should return a promise', () => {
Blob = class Files{}
expect(readAsText(new Blob())).to.be.a('promise')
})
it('should require a Blob or File', () => {
class MockClass {}
expect(readAsText).to.throw()
expect(() => readAsText(new MockClass())).to.throw()
expect(() => readAsText(new Blob())).to.not.throw()
expect(() => readAsText(new File())).to.not.throw()
})
it('should call the original function', () => {
const callback = sinon.spy();
FileReader.prototype.readAsText = callback
const mockBlob = new Blob()
mockBlob.id = 1
readAsText(mockBlob)
sinon.assert.calledOnce(callback);
sinon.assert.calledWith(callback, mockBlob)
})
})
describe('readAsArrayBuffer', () => {
it('should be a function', () => {
expect(readAsArrayBuffer).to.be.a('function')
})
it('should return a promise', () => {
Blob = class Files{}
expect(readAsArrayBuffer(new Blob())).to.be.a('promise')
})
it('should require a Blob or File', () => {
class MockClass {}
expect(readAsArrayBuffer).to.throw()
expect(() => readAsArrayBuffer(new MockClass())).to.throw()
expect(() => readAsArrayBuffer(new Blob())).to.not.throw()
expect(() => readAsArrayBuffer(new File())).to.not.throw()
})
it('should call the original function', () => {
const callback = sinon.spy();
FileReader.prototype.readAsArrayBuffer = callback
const mockBlob = new Blob()
mockBlob.id = 1
readAsArrayBuffer(mockBlob)
sinon.assert.calledOnce(callback);
sinon.assert.calledWith(callback, mockBlob)
})
})
})