This repository was archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathadd.js
321 lines (261 loc) · 9.54 KB
/
add.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/* eslint-env mocha */
'use strict'
const { fixtures } = require('./utils')
const Readable = require('readable-stream').Readable
const pull = require('pull-stream')
const path = require('path')
const expectTimeout = require('../utils/expect-timeout')
const { getDescribe, getIt, expect } = require('../utils/mocha')
module.exports = (createCommon, options) => {
const describe = getDescribe(options)
const it = getIt(options)
const common = createCommon()
describe('.add', function () {
this.timeout(40 * 1000)
let ipfs
before(function (done) {
// CI takes longer to instantiate the daemon, so we need to increase the
// timeout for the before step
this.timeout(60 * 1000)
common.setup((err, factory) => {
expect(err).to.not.exist()
factory.spawnNode((err, node) => {
expect(err).to.not.exist()
ipfs = node
done()
})
})
})
after((done) => common.teardown(done))
it('should add a Buffer', (done) => {
ipfs.add(fixtures.smallFile.data, (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.have.length(1)
const file = filesAdded[0]
expect(file.hash).to.equal(fixtures.smallFile.cid)
expect(file.path).to.equal(fixtures.smallFile.cid)
expect(file.size).to.equal(fixtures.smallFile.data.length)
done()
})
})
it('should add a Buffer (promised)', () => {
return ipfs.add(fixtures.smallFile.data)
.then((filesAdded) => {
const file = filesAdded[0]
expect(file.hash).to.equal(fixtures.smallFile.cid)
expect(file.path).to.equal(fixtures.smallFile.cid)
})
})
it('should add a BIG Buffer', (done) => {
ipfs.add(fixtures.bigFile.data, (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.have.length(1)
const file = filesAdded[0]
expect(file.hash).to.equal(fixtures.bigFile.cid)
expect(file.path).to.equal(fixtures.bigFile.cid)
// file.size counts the overhead by IPLD nodes and unixfs protobuf
expect(file.size).greaterThan(fixtures.bigFile.data.length)
done()
})
})
it('should add a BIG Buffer with progress enabled', (done) => {
let progCalled = false
let accumProgress = 0
function handler (p) {
progCalled = true
accumProgress = p
}
ipfs.add(fixtures.bigFile.data, { progress: handler }, (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.have.length(1)
const file = filesAdded[0]
expect(file.hash).to.equal(fixtures.bigFile.cid)
expect(file.path).to.equal(fixtures.bigFile.cid)
expect(progCalled).to.be.true()
expect(accumProgress).to.equal(fixtures.bigFile.data.length)
done()
})
})
it('should add a Buffer as tuple', (done) => {
const tuple = { path: 'testfile.txt', content: fixtures.smallFile.data }
ipfs.add([
tuple
], (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.have.length(1)
const file = filesAdded[0]
expect(file.hash).to.equal(fixtures.smallFile.cid)
expect(file.path).to.equal('testfile.txt')
done()
})
})
it('should not be able to add by path', (done) => {
const validPath = path.join(process.cwd() + '/package.json')
ipfs.add(validPath, (err, res) => {
expect(err).to.exist()
done()
})
})
it('should not be able to add a string', (done) => {
const data = `TEST${Date.now()}`
ipfs.add(data, (err) => {
expect(err).to.exist()
expect(err.message).to.contain('invalid input')
done()
})
})
it('should not be able to add a non-Buffer TypedArray', (done) => {
const data = Uint8Array.from([Date.now()])
ipfs.add(data, (err) => {
expect(err).to.exist()
expect(err.message).to.contain('invalid input')
done()
})
})
it('should add readable stream', (done) => {
const expectedCid = 'bafkreiata6mq425fzikf5m26temcvg7mizjrxrkn35swuybmpah2ajan5y'
const rs = new Readable()
rs.push(Buffer.from('some data'))
rs.push(null)
ipfs.add(rs, (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.be.length(1)
const file = filesAdded[0]
expect(file.path).to.equal(expectedCid)
expect(file.size).to.equal(9)
expect(file.hash).to.equal(expectedCid)
done()
})
})
it('should add array of objects with readable stream content', (done) => {
const expectedCid = 'bafkreiata6mq425fzikf5m26temcvg7mizjrxrkn35swuybmpah2ajan5y'
const rs = new Readable()
rs.push(Buffer.from('some data'))
rs.push(null)
const tuple = { path: 'data.txt', content: rs }
ipfs.add([tuple], (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.be.length(1)
const file = filesAdded[0]
expect(file.path).to.equal('data.txt')
expect(file.size).to.equal(9)
expect(file.hash).to.equal(expectedCid)
done()
})
})
it('should add pull stream', (done) => {
const expectedCid = 'bafkreie7q3iidccmpvszul7kudcvvuavuo7u6gzlbobczuk5nqk3b4akba'
ipfs.add(pull.values([Buffer.from('test')]), (err, res) => {
if (err) return done(err)
expect(res).to.have.length(1)
expect(res[0]).to.deep.equal({ path: expectedCid, hash: expectedCid, size: 4 })
done()
})
})
it('should add pull stream (promised)', () => {
const expectedCid = 'bafkreie7q3iidccmpvszul7kudcvvuavuo7u6gzlbobczuk5nqk3b4akba'
return ipfs.add(pull.values([Buffer.from('test')]))
.then((res) => {
expect(res).to.have.length(1)
expect(res[0]).to.deep.equal({ path: expectedCid, hash: expectedCid, size: 4 })
})
})
it('should add array of objects with pull stream content (promised)', () => {
const expectedCid = 'bafkreie7q3iidccmpvszul7kudcvvuavuo7u6gzlbobczuk5nqk3b4akba'
return ipfs.add([{ content: pull.values([Buffer.from('test')]) }])
.then((res) => {
expect(res).to.have.length(1)
expect(res[0]).to.deep.equal({ path: expectedCid, hash: expectedCid, size: 4 })
})
})
it('should add a nested directory as array of tupples', function (done) {
const content = (name) => ({
path: `test-folder/${name}`,
content: fixtures.directory.files[name]
})
const emptyDir = (name) => ({ path: `test-folder/${name}` })
const dirs = [
content('pp.txt'),
content('holmes.txt'),
content('jungle.txt'),
content('alice.txt'),
emptyDir('empty-folder'),
content('files/hello.txt'),
content('files/ipfs.txt'),
emptyDir('files/empty')
]
ipfs.add(dirs, (err, res) => {
expect(err).to.not.exist()
const root = res[res.length - 1]
expect(root.path).to.equal('test-folder')
expect(root.hash).to.equal(fixtures.directory.cid)
done()
})
})
it('should add a nested directory as array of tupples with progress', function (done) {
const content = (name) => ({
path: `test-folder/${name}`,
content: fixtures.directory.files[name]
})
const emptyDir = (name) => ({ path: `test-folder/${name}` })
const dirs = [
content('pp.txt'),
content('holmes.txt'),
content('jungle.txt'),
content('alice.txt'),
emptyDir('empty-folder'),
content('files/hello.txt'),
content('files/ipfs.txt'),
emptyDir('files/empty')
]
const total = dirs.reduce((i, entry) => {
return i + (entry.content ? entry.content.length : 0)
}, 0)
let progCalled = false
let accumProgress = 0
const handler = (p) => {
progCalled = true
accumProgress += p
}
ipfs.add(dirs, { progress: handler }, (err, filesAdded) => {
expect(err).to.not.exist()
const root = filesAdded[filesAdded.length - 1]
expect(progCalled).to.be.true()
expect(accumProgress).to.be.at.least(total)
expect(root.path).to.equal('test-folder')
expect(root.hash).to.equal(fixtures.directory.cid)
done()
})
})
it('should fail when passed invalid input', (done) => {
const nonValid = 'sfdasfasfs'
ipfs.add(nonValid, (err, result) => {
expect(err).to.exist()
done()
})
})
it('should wrap content in a directory', (done) => {
const data = { path: 'testfile.txt', content: fixtures.smallFile.data }
ipfs.add(data, { wrapWithDirectory: true }, (err, filesAdded) => {
expect(err).to.not.exist()
expect(filesAdded).to.have.length(2)
const file = filesAdded[0]
const wrapped = filesAdded[1]
expect(file.hash).to.equal(fixtures.smallFile.cid)
expect(file.path).to.equal('testfile.txt')
expect(wrapped.path).to.equal('')
done()
})
})
it('should add with only-hash=true (promised)', function () {
this.slow(10 * 1000)
const content = String(Math.random() + Date.now())
return ipfs.add(Buffer.from(content), { onlyHash: true })
.then(files => {
expect(files).to.have.length(1)
// 'ipfs.object.get(<hash>)' should timeout because content wasn't actually added
return expectTimeout(ipfs.object.get(files[0].hash), 4000)
})
})
})
}