forked from ipfs-inactive/js-ipfs-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.spec.js
398 lines (345 loc) · 10.6 KB
/
files.spec.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
/* eslint-env mocha */
/* eslint max-nested-callbacks: ["error", 8] */
'use strict'
const chai = require('chai')
const dirtyChai = require('dirty-chai')
const expect = chai.expect
chai.use(dirtyChai)
const isNode = require('detect-node')
const loadFixture = require('aegir/fixtures')
const mh = require('multihashes')
const CID = require('cids')
const FactoryClient = require('./ipfs-factory/client')
const testfile = isNode
? loadFixture(__dirname, '/fixtures/testfile.txt')
: loadFixture(__dirname, 'fixtures/testfile.txt')
// TODO: Test against all algorithms Object.keys(mh.names)
// This subset is known to work with both go-ipfs and js-ipfs as of 2017-09-05
const HASH_ALGS = [
'sha1',
'sha2-256',
'sha2-512',
'keccak-224',
'keccak-256',
'keccak-384',
'keccak-512'
]
describe('.files (the MFS API part)', function () {
this.timeout(120 * 1000)
let ipfs
let fc
const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
before((done) => {
fc = new FactoryClient()
fc.spawnNode((err, node) => {
expect(err).to.not.exist()
ipfs = node
done()
})
})
after((done) => fc.dismantle(done))
describe('Callback API', function () {
this.timeout(120 * 1000)
it('add file for testing', (done) => {
ipfs.files.add(testfile, (err, res) => {
expect(err).to.not.exist()
expect(res).to.have.length(1)
expect(res[0].hash).to.equal(expectedMultihash)
expect(res[0].path).to.equal(expectedMultihash)
done()
})
})
it('files.add with cid-version=1 and raw-leaves=false', (done) => {
const expectedCid = 'zdj7Wh9x6gXdg4UAqhRYnjBTw9eJF7hvzUU4HjpnZXHYQz9jK'
const options = { 'cid-version': 1, 'raw-leaves': false }
ipfs.files.add(testfile, options, (err, res) => {
expect(err).to.not.exist()
expect(res).to.have.length(1)
expect(res[0].hash).to.equal(expectedCid)
expect(res[0].path).to.equal(expectedCid)
done()
})
})
it('files.add with options', (done) => {
ipfs.files.add(testfile, { pin: false }, (err, res) => {
expect(err).to.not.exist()
expect(res).to.have.length(1)
expect(res[0].hash).to.equal(expectedMultihash)
expect(res[0].path).to.equal(expectedMultihash)
done()
})
})
HASH_ALGS.forEach((name) => {
it(`files.add with hash=${name} and raw-leaves=false`, (done) => {
const content = String(Math.random() + Date.now())
const file = {
path: content + '.txt',
content: Buffer.from(content)
}
const options = { hash: name, 'raw-leaves': false }
ipfs.files.add([file], options, (err, res) => {
if (err) return done(err)
expect(res).to.have.length(1)
const cid = new CID(res[0].hash)
expect(mh.decode(cid.multihash).name).to.equal(name)
done()
})
})
})
it('files.mkdir', (done) => {
ipfs.files.mkdir('/test-folder', done)
})
it('files.cp', (done) => {
ipfs.files.cp([
'/ipfs/Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',
'/test-folder/test-file'
], (err) => {
expect(err).to.not.exist()
done()
})
})
it('files.ls', (done) => {
ipfs.files.ls('/test-folder', (err, res) => {
expect(err).to.not.exist()
expect(res.Entries.length).to.equal(1)
done()
})
})
it('files.write', (done) => {
ipfs.files
.write('/test-folder/test-file-2.txt', Buffer.from('hello world'), {create: true}, (err) => {
expect(err).to.not.exist()
ipfs.files.read('/test-folder/test-file-2.txt', (err, stream) => {
expect(err).to.not.exist()
let buf = ''
stream
.on('error', (err) => expect(err).to.not.exist())
.on('data', (data) => {
buf += data
})
.on('end', () => {
expect(buf).to.be.equal('hello world')
done()
})
})
})
})
it('files.write without options', (done) => {
ipfs.files
.write('/test-folder/test-file-2.txt', Buffer.from('hello world'), (err) => {
expect(err).to.not.exist()
ipfs.files.read('/test-folder/test-file-2.txt', (err, stream) => {
expect(err).to.not.exist()
let buf = ''
stream
.on('error', (err) => {
expect(err).to.not.exist()
})
.on('data', (data) => {
buf += data
})
.on('end', () => {
expect(buf).to.be.equal('hello world')
done()
})
})
})
})
it('files.stat', (done) => {
ipfs.files.stat('/test-folder/test-file', (err, res) => {
expect(err).to.not.exist()
expect(res).to.deep.equal({
Hash: 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',
Size: 12,
CumulativeSize: 20,
Blocks: 0,
Type: 'file'
})
done()
})
})
it('files.stat file that does not exist()', (done) => {
ipfs.files.stat('/test-folder/does-not-exist()', (err, res) => {
expect(err).to.exist()
if (err.code === 0) {
return done()
}
throw err
})
})
it('files.read', (done) => {
if (!isNode) {
return done()
}
ipfs.files.read('/test-folder/test-file', (err, stream) => {
expect(err).to.not.exist()
let buf = ''
stream
.on('error', (err) => {
expect(err).to.not.exist()
})
.on('data', (data) => {
buf += data
})
.on('end', () => {
expect(Buffer.from(buf)).to.deep.equal(testfile)
done()
})
})
})
it('files.rm without options', (done) => {
ipfs.files.rm('/test-folder/test-file-2.txt', done)
})
it('files.rm', (done) => {
ipfs.files.rm('/test-folder', {recursive: true}, done)
})
})
describe('Promise API', function () {
this.timeout(120 * 1000)
it('files.add', () => {
return ipfs.files.add(testfile)
.then((res) => {
expect(res).to.have.length(1)
expect(res[0].hash).to.equal(expectedMultihash)
expect(res[0].path).to.equal(expectedMultihash)
})
})
it('files.add with cid-version=1 and raw-leaves=false', () => {
const expectedHash = 'zdj7Wh9x6gXdg4UAqhRYnjBTw9eJF7hvzUU4HjpnZXHYQz9jK'
const options = { 'cid-version': 1, 'raw-leaves': false }
return ipfs.files.add(testfile, options)
.then((res) => {
expect(res).to.have.length(1)
expect(res[0].hash).to.equal(expectedHash)
expect(res[0].path).to.equal(expectedHash)
})
})
it('files.add with options', () => {
return ipfs.files.add(testfile, { pin: false })
.then((res) => {
expect(res).to.have.length(1)
expect(res[0].hash).to.equal(expectedMultihash)
expect(res[0].path).to.equal(expectedMultihash)
})
})
HASH_ALGS.forEach((name) => {
it(`files.add with hash=${name} and raw-leaves=false`, () => {
const content = String(Math.random() + Date.now())
const file = {
path: content + '.txt',
content: Buffer.from(content)
}
const options = { hash: name, 'raw-leaves': false }
return ipfs.files.add([file], options)
.then((res) => {
expect(res).to.have.length(1)
const cid = new CID(res[0].hash)
expect(mh.decode(cid.multihash).name).to.equal(name)
})
})
})
it('files.mkdir', () => {
return ipfs.files.mkdir('/test-folder')
})
it('files.cp', () => {
return ipfs.files
.cp([
'/ipfs/Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',
'/test-folder/test-file'
])
})
it('files.ls', () => {
return ipfs.files.ls('/test-folder')
.then((res) => {
expect(res.Entries.length).to.equal(1)
})
})
it('files.write', (done) => {
ipfs.files
.write('/test-folder/test-file-2.txt', Buffer.from('hello world'), {create: true})
.then(() => {
return ipfs.files.read('/test-folder/test-file-2.txt')
})
.then((stream) => {
let buf = ''
stream
.on('error', (err) => {
expect(err).to.not.exist()
})
.on('data', (data) => {
buf += data
})
.on('end', () => {
expect(buf).to.be.equal('hello world')
done()
})
})
.catch(done)
})
it('files.write without options', (done) => {
ipfs.files
.write('/test-folder/test-file-2.txt', Buffer.from('hello world'))
.then(() => {
return ipfs.files.read('/test-folder/test-file-2.txt')
})
.then((stream) => {
let buf = ''
stream
.on('error', (err) => {
expect(err).to.not.exist()
})
.on('data', (data) => {
buf += data
})
.on('end', () => {
expect(buf).to.be.equal('hello world')
done()
})
})
.catch(done)
})
it('files.stat', () => {
return ipfs.files.stat('/test-folder/test-file')
.then((res) => {
expect(res).to.deep.equal({
Hash: 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',
Size: 12,
CumulativeSize: 20,
Blocks: 0,
Type: 'file'
})
})
})
it('files.stat file that does not exist()', () => {
return ipfs.files.stat('/test-folder/does-not-exist()')
.catch((err) => {
expect(err).to.exist()
expect(err.code).to.be.eql(0)
})
})
it('files.read', (done) => {
if (!isNode) { return done() }
ipfs.files.read('/test-folder/test-file')
.then((stream) => {
let buf = ''
stream
.on('error', (err) => {
expect(err).to.not.exist()
})
.on('data', (data) => {
buf += data
})
.on('end', () => {
expect(Buffer.from(buf)).to.eql(testfile)
done()
})
})
})
it('files.rm without options', () => {
return ipfs.files.rm('/test-folder/test-file-2.txt')
})
it('files.rm', () => {
return ipfs.files.rm('/test-folder', { recursive: true })
})
})
})