Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 63179b9

Browse files
hacdiasdaviddias
authored andcommitted
feat: add onlyHash option to files.add (#259)
1 parent 647e399 commit 63179b9

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

SPEC/FILES.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ If no `content` is passed, then the path is treated as an empty directory
3030
- cid-version (integer, default 0): the CID version to use when storing the data (storage keys are based on the CID, including it's version)
3131
- progress (function): a function that will be called with the byte length of chunks as a file is added to ipfs.
3232
- recursive (boolean): for when a Path is passed, this option can be enabled to add recursively all the files.
33-
- hashAlg || hash (string): multihash hashing algorithm to use
34-
- wrapWithDirectory (boolean): adds a wrapping node around the content
33+
- hashAlg || hash (string): multihash hashing algorithm to use.
34+
- wrapWithDirectory (boolean): adds a wrapping node around the content.
35+
- onlyHash (boolean): doesn't actually add the file to IPFS, but rather calculates its hash.
3536

3637
`callback` must follow `function (err, res) {}` signature, where `err` is an error if the operation was not successful. `res` will be an array of:
3738

js/src/files.js

+14
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const path = require('path')
1919
const bl = require('bl')
2020
const isNode = require('detect-node')
2121
const CID = require('cids')
22+
const expectTimeout = require('./utils/expect-timeout')
2223

2324
module.exports = (common) => {
2425
describe('.files', function () {
@@ -334,6 +335,19 @@ module.exports = (common) => {
334335
expect(file.path).to.equal(smallFile.cid)
335336
})
336337
})
338+
339+
it('files.add with only-hash=true', () => {
340+
this.slow(10 * 1000)
341+
const content = String(Math.random() + Date.now())
342+
343+
return ipfs.files.add(Buffer.from(content), { onlyHash: true })
344+
.then(files => {
345+
expect(files).to.have.length(1)
346+
347+
// 'ipfs.object.get(<hash>)' should timeout because content wasn't actually added
348+
return expectTimeout(ipfs.object.get(files[0].hash), 4000)
349+
})
350+
})
337351
})
338352

339353
describe('.addReadableStream', () => {

js/src/utils/expect-timeout.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'use strict'
2+
3+
/**
4+
* Resolve if @param promise hangs for at least @param ms, throw otherwise
5+
* @param {Promise} promise promise that you expect to hang
6+
* @param {Number} ms millis to wait
7+
* @return {Promise}
8+
*/
9+
module.exports = (promise, ms) => {
10+
return Promise.race([
11+
promise.then((out) => {
12+
throw new Error('Expected Promise to timeout but it was successful.')
13+
}),
14+
new Promise((resolve, reject) => setTimeout(resolve, ms))
15+
])
16+
}

0 commit comments

Comments
 (0)