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

Async Crypto Endeavour #77

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "interface-ipfs-core",
"version": "0.15.0",
"description": "A test suite and interface you can use to implement a IPFS core interface.",
"main": "lib/index.js",
"main": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "exit(0)",
Expand All @@ -28,6 +28,7 @@
},
"homepage": "https://github.com/ipfs/interface-ipfs-core#readme",
"dependencies": {
"async": "^2.0.1",
"bl": "^1.1.2",
"bs58": "^3.0.0",
"chai": "^3.5.0",
Expand All @@ -36,6 +37,7 @@
"ipfs-block": "^0.3.0",
"ipfs-merkle-dag": "^0.7.0",
"multihashes": "^0.2.2",
"promisify-es6": "^1.0.2",
"readable-stream": "1.1.13",
"run-series": "^1.1.4"
},
Expand All @@ -51,4 +53,4 @@
"greenkeeperio-bot <support@greenkeeper.io>",
"nginnever <ginneversource@gmail.com>"
]
}
}
13 changes: 7 additions & 6 deletions src/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ module.exports = (common) => {

it('.put a block', (done) => {
const expectedHash = 'QmPv52ekjS75L4JmHpXVeuJ5uX2ecSfSZo88NSyxwA3rAQ'
const blob = new Block(new Buffer('blorb'))

ipfs.block.put(blob, (err, block) => {
Block.create(new Buffer('blorb'), (err, blob) => {
expect(err).to.not.exist
expect(block.key).to.eql(multihash.fromB58String(expectedHash))
expect(block.data).to.eql(new Buffer('blorb'))
done()
ipfs.block.put(blob, (err, block) => {
expect(err).to.not.exist
expect(block.key).to.eql(multihash.fromB58String(expectedHash))
expect(block.data).to.eql(new Buffer('blorb'))
done()
})
})
})

Expand Down
6 changes: 2 additions & 4 deletions src/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,9 @@ module.exports = (common) => {
})
})

it('errors on invalid key', (done) => {
it('errors on invalid key', () => {
const hash = 'somethingNotMultihash'
ipfs.files.get(hash)
.then((stream) => {})
return ipfs.files.get(hash)
.catch((err) => {
expect(err).to.exist
const errString = err.toString()
Expand All @@ -449,7 +448,6 @@ module.exports = (common) => {
if (errString === 'Error: Invalid Key') {
expect(err.toString()).to.contain('Error: Invalid Key')
}
done()
})
})
})
Expand Down
Loading