This repository was archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathadd.js
429 lines (344 loc) · 13.7 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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/* eslint-env mocha, browser */
'use strict'
const { fixtures } = require('./utils')
const { Readable } = require('readable-stream')
const { supportsFileReader } = require('ipfs-utils/src/supports')
const urlSource = require('ipfs-utils/src/files/url-source')
const { isNode } = require('ipfs-utils/src/env')
const { getDescribe, getIt, expect } = require('./utils/mocha')
const testTimeout = require('./utils/test-timeout')
const echoUrl = (text) => `${process.env.ECHO_SERVER}/download?data=${encodeURIComponent(text)}`
const redirectUrl = (url) => `${process.env.ECHO_SERVER}/redirect?to=${encodeURI(url)}`
const uint8ArrayFromString = require('uint8arrays/from-string')
const last = require('it-last')
/** @typedef { import("ipfsd-ctl/src/factory") } Factory */
/**
* @param {Factory} common
* @param {Object} options
*/
module.exports = (common, options) => {
const describe = getDescribe(options)
const it = getIt(options)
describe('.add', function () {
this.timeout(120 * 1000)
let ipfs
async function testMode (mode, expectedMode) {
const content = String(Math.random() + Date.now())
const file = await ipfs.add({
content,
mode
})
expect(file).to.have.property('mode', expectedMode)
const stats = await ipfs.files.stat(`/ipfs/${file.cid}`)
expect(stats).to.have.property('mode', expectedMode)
}
async function testMtime (mtime, expectedMtime) {
const content = String(Math.random() + Date.now())
const file = await ipfs.add({
content,
mtime
})
expect(file).to.have.deep.property('mtime', expectedMtime)
const stats = await ipfs.files.stat(`/ipfs/${file.cid}`)
expect(stats).to.have.deep.property('mtime', expectedMtime)
}
before(async () => { ipfs = (await common.spawn()).api })
after(() => common.clean())
it('should respect timeout option when adding a file', () => {
return testTimeout(() => ipfs.add('Hello', {
timeout: 1
}))
})
it('should add a File', async function () {
if (!supportsFileReader) return this.skip('skip in node')
const fileAdded = await ipfs.add(new self.File(['should add a File'], 'filename.txt', { type: 'text/plain' }))
expect(fileAdded.cid.toString()).to.be.eq('QmTVfLxf3qXiJgr4KwG6UBckcNvTqBp93Rwy5f7h3mHsVC')
})
it('should add a File as tuple', async function () {
if (!supportsFileReader) return this.skip('skip in node')
const tuple = {
path: 'filename.txt',
content: new self.File(['should add a File'], 'filename.txt', { type: 'text/plain' })
}
const fileAdded = await ipfs.add(tuple)
expect(fileAdded.cid.toString()).to.be.eq('QmTVfLxf3qXiJgr4KwG6UBckcNvTqBp93Rwy5f7h3mHsVC')
})
it('should add a Uint8Array', async () => {
const file = await ipfs.add(fixtures.smallFile.data)
expect(file.cid.toString()).to.equal(fixtures.smallFile.cid)
expect(file.path).to.equal(fixtures.smallFile.cid)
// file.size counts the overhead by IPLD nodes and unixfs protobuf
expect(file.size).greaterThan(fixtures.smallFile.data.length)
})
it('should add a BIG Uint8Array', async () => {
const file = await ipfs.add(fixtures.bigFile.data)
expect(file.cid.toString()).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)
})
it('should add a BIG Uint8Array with progress enabled', async () => {
let progCalled = false
let accumProgress = 0
function handler (p) {
progCalled = true
accumProgress = p
}
const file = await ipfs.add(fixtures.bigFile.data, { progress: handler })
expect(file.cid.toString()).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)
})
it('should add an empty file with progress enabled', async () => {
let progCalled = false
let accumProgress = 0
function handler (p) {
progCalled = true
accumProgress = p
}
const file = await ipfs.add(fixtures.emptyFile.data, { progress: handler })
expect(file.cid.toString()).to.equal(fixtures.emptyFile.cid)
expect(file.path).to.equal(fixtures.emptyFile.cid)
expect(progCalled).to.be.true()
expect(accumProgress).to.equal(fixtures.emptyFile.data.length)
})
it('should receive file name from progress event', async () => {
let receivedName
function handler (p, name) {
receivedName = name
}
await ipfs.add({
content: 'hello',
path: 'foo.txt'
}, { progress: handler })
expect(receivedName).to.equal('foo.txt')
})
it('should add an empty file without progress enabled', async () => {
const file = await ipfs.add(fixtures.emptyFile.data)
expect(file.cid.toString()).to.equal(fixtures.emptyFile.cid)
expect(file.path).to.equal(fixtures.emptyFile.cid)
})
it('should add a Uint8Array as tuple', async () => {
const tuple = { path: 'testfile.txt', content: fixtures.smallFile.data }
const file = await ipfs.add(tuple)
expect(file.cid.toString()).to.equal(fixtures.smallFile.cid)
expect(file.path).to.equal('testfile.txt')
})
it('should add a string', async () => {
const data = 'a string'
const expectedCid = 'QmQFRCwEpwQZ5aQMqCsCaFbdjNLLHoyZYDjr92v1F7HeqX'
const file = await ipfs.add(data)
expect(file).to.have.property('path', expectedCid)
expect(file).to.have.property('size', 16)
expect(`${file.cid}`).to.equal(expectedCid)
})
it('should add a TypedArray', async () => {
const data = Uint8Array.from([1, 3, 8])
const expectedCid = 'QmRyUEkVCuHC8eKNNJS9BDM9jqorUvnQJK1DM81hfngFqd'
const file = await ipfs.add(data)
expect(file).to.have.property('path', expectedCid)
expect(file).to.have.property('size', 11)
expect(`${file.cid}`).to.equal(expectedCid)
})
it('should add readable stream', async function () {
if (!isNode) this.skip()
const expectedCid = 'QmVv4Wz46JaZJeH5PMV4LGbRiiMKEmszPYY3g6fjGnVXBS'
const rs = new Readable()
rs.push(uint8ArrayFromString('some data'))
rs.push(null)
const file = await ipfs.add(rs)
expect(file).to.have.property('path', expectedCid)
expect(file).to.have.property('size', 17)
expect(`${file.cid}`).to.equal(expectedCid)
})
it('should fail when passed invalid input', async () => {
const nonValid = 138
await expect(ipfs.add(nonValid)).to.eventually.be.rejected()
})
it('should wrap content in a directory', async () => {
const data = { path: 'testfile.txt', content: fixtures.smallFile.data }
const wrapper = await ipfs.add(data, { wrapWithDirectory: true })
expect(wrapper.path).to.equal('')
const stats = await ipfs.files.stat(`/ipfs/${wrapper.cid}/testfile.txt`)
expect(`${stats.cid}`).to.equal(fixtures.smallFile.cid)
})
it('should add with only-hash=true', async function () {
this.slow(10 * 1000)
const content = String(Math.random() + Date.now())
const file = await ipfs.add(content, { onlyHash: true })
await expect(ipfs.object.get(file.cid, { timeout: 4000 }))
.to.eventually.be.rejected()
.and.to.have.property('name').that.equals('TimeoutError')
})
it('should add with mode as string', async function () {
this.slow(10 * 1000)
const mode = '0777'
await testMode(mode, parseInt(mode, 8))
})
it('should add with mode as number', async function () {
this.slow(10 * 1000)
const mode = parseInt('0777', 8)
await testMode(mode, mode)
})
it('should add with mtime as Date', async function () {
this.slow(10 * 1000)
const mtime = new Date(5000)
await testMtime(mtime, {
secs: 5,
nsecs: 0
})
})
it('should add with mtime as { nsecs, secs }', async function () {
this.slow(10 * 1000)
const mtime = {
secs: 5,
nsecs: 0
}
await testMtime(mtime, mtime)
})
it('should add with mtime as timespec', async function () {
this.slow(10 * 1000)
await testMtime({
Seconds: 5,
FractionalNanoseconds: 0
}, {
secs: 5,
nsecs: 0
})
})
it('should add with mtime as hrtime', async function () {
this.slow(10 * 1000)
const mtime = process.hrtime()
await testMtime(mtime, {
secs: mtime[0],
nsecs: mtime[1]
})
})
it('should add from a HTTP URL', async () => {
const text = `TEST${Math.random()}`
const url = echoUrl(text)
const [result, expectedResult] = await Promise.all([
ipfs.add(urlSource(url)),
ipfs.add(text)
])
expect(result.err).to.not.exist()
expect(expectedResult.err).to.not.exist()
expect(result.cid.toString()).to.equal(expectedResult.cid.toString())
expect(result.size).to.equal(expectedResult.size)
})
it('should add from a HTTP URL with redirection', async () => {
const text = `TEST${Math.random()}`
const url = echoUrl(text)
const [result, expectedResult] = await Promise.all([
ipfs.add(urlSource(redirectUrl(url))),
ipfs.add(text)
])
expect(result.err).to.not.exist()
expect(expectedResult.err).to.not.exist()
expect(result.cid.toString()).to.equal(expectedResult.cid.toString())
expect(result.size).to.equal(expectedResult.size)
})
it('should add from a URL with only-hash=true', async function () {
const text = `TEST${Math.random()}`
const url = echoUrl(text)
const res = await ipfs.add(urlSource(url), { onlyHash: true })
await expect(ipfs.object.get(res.cid, { timeout: 500 }))
.to.eventually.be.rejected()
.and.to.have.property('name').that.equals('TimeoutError')
})
it('should add from a URL with wrap-with-directory=true', async () => {
const filename = `TEST${Date.now()}.txt` // also acts as data
const url = echoUrl(filename)
const addOpts = { wrapWithDirectory: true }
const [result, expectedResult] = await Promise.all([
ipfs.add(urlSource(url), addOpts),
ipfs.add({ path: 'download', content: filename }, addOpts)
])
expect(result.err).to.not.exist()
expect(expectedResult.err).to.not.exist()
expect(result).to.deep.equal(expectedResult)
})
it('should add from a URL with wrap-with-directory=true and URL-escaped file name', async () => {
const filename = `320px-Domažlice,_Jiráskova_43_(${Date.now()}).jpg` // also acts as data
const url = echoUrl(filename)
const addOpts = { wrapWithDirectory: true }
const [result, expectedResult] = await Promise.all([
ipfs.add(urlSource(url), addOpts),
ipfs.add([{ path: 'download', content: filename }], addOpts)
])
expect(result.err).to.not.exist()
expect(expectedResult.err).to.not.exist()
expect(result).to.deep.equal(expectedResult)
})
it('should not add from an invalid url', () => {
return expect(() => ipfs.add(urlSource('123http://invalid'))).to.throw()
})
it('should respect raw leaves when file is smaller than one block and no metadata is present', async () => {
const file = await ipfs.add(Uint8Array.from([0, 1, 2]), {
cidVersion: 1,
rawLeaves: true
})
expect(file.cid.toString()).to.equal('bafkreifojmzibzlof6xyh5auu3r5vpu5l67brf3fitaf73isdlglqw2t7q')
expect(file.cid.codec).to.equal('raw')
expect(file.size).to.equal(3)
})
it('should override raw leaves when file is smaller than one block and metadata is present', async () => {
const file = await ipfs.add({
content: Uint8Array.from([0, 1, 2]),
mode: 0o123,
mtime: {
secs: 1000,
nsecs: 0
}
}, {
cidVersion: 1,
rawLeaves: true
})
expect(file.cid.toString()).to.equal('bafybeifmayxiu375ftlgydntjtffy5cssptjvxqw6vyuvtymntm37mpvua')
expect(file.cid.codec).to.equal('dag-pb')
expect(file.size).to.equal(18)
})
it('should add a file with a v1 CID', async () => {
const file = await ipfs.add(Uint8Array.from([0, 1, 2]), {
cidVersion: 1
})
expect(file.cid.toString()).to.equal('bafkreifojmzibzlof6xyh5auu3r5vpu5l67brf3fitaf73isdlglqw2t7q')
expect(file.size).to.equal(3)
})
const testFiles = Array.from(Array(1005), (_, i) => ({
path: 'test-folder/' + i,
content: uint8ArrayFromString('some content ' + i)
}))
it('should be able to add dir without sharding', async () => {
const { path, cid } = await last(ipfs.addAll(testFiles))
expect(path).to.eql('test-folder')
expect(cid.toString()).to.eql('QmWWM8ZV6GPhqJ46WtKcUaBPNHN5yQaFsKDSQ1RE73w94Q')
})
describe('with sharding', () => {
let ipfs
before(async function () {
const ipfsd = await common.spawn({
ipfsOptions: {
EXPERIMENTAL: {
// enable sharding for js
sharding: true
},
config: {
// enable sharding for go
Experimental: {
ShardingEnabled: true
}
}
}
})
ipfs = ipfsd.api
})
it('should be able to add dir with sharding', async () => {
const { path, cid } = await last(ipfs.addAll(testFiles))
expect(path).to.eql('test-folder')
expect(cid.toString()).to.eql('Qmb3JNLq2KcvDTSGT23qNQkMrr4Y4fYMktHh6DtC7YatLa')
})
})
})
}