This repository has been 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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(block-core): add compliance with interface-ipfs-core on block-API
- Loading branch information
Showing
5 changed files
with
73 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,77 +1,20 @@ | ||
/* eslint-env mocha */ | ||
'use strict' | ||
|
||
const expect = require('chai').expect | ||
const base58 = require('bs58') | ||
const fs = require('fs') | ||
const IPFS = require('../../../src/core') | ||
const Block = require('ipfs-block') | ||
const path = require('path') | ||
|
||
const isNode = require('detect-node') | ||
|
||
const fileA = isNode | ||
? fs.readFileSync(path.join(__dirname, '../../go-ipfs-repo/blocks/12207028/122070286b9afa6620a66f715c7020d68af3d10e1a497971629c07606bfdb812303d.data')) | ||
: require('buffer!./../../go-ipfs-repo/blocks/12207028/122070286b9afa6620a66f715c7020d68af3d10e1a497971629c07606bfdb812303d.data') | ||
|
||
// TODO use arrow funtions again when https://github.com/webpack/webpack/issues/1944 is fixed | ||
describe('block', function () { | ||
var ipfs | ||
|
||
before((done) => { | ||
ipfs = new IPFS(require('../../utils/repo-path')) | ||
ipfs.load(done) | ||
}) | ||
'use strict' | ||
|
||
it('get', function (done) { | ||
const b58mh = 'QmVtU7ths96fMgZ8YSZAbKghyieq7AjxNdcqyVzxTt3qVe' | ||
const mh = new Buffer(base58.decode(b58mh)) | ||
ipfs.block.get(mh, (err, block) => { | ||
expect(err).to.not.exist | ||
const eq = fileA.equals(block.data) | ||
expect(eq).to.equal(true) | ||
done() | ||
}) | ||
}) | ||
const test = require('interface-ipfs-core') | ||
const IPFSFactory = require('../../utils/factory-core') | ||
|
||
it('put', (done) => { | ||
var b = new Block('random data') | ||
ipfs.block.put(b, function (err) { | ||
expect(err).to.not.exist | ||
ipfs.block.get(b.key, function (err, block) { | ||
expect(err).to.not.exist | ||
expect(b.data.equals(block.data)).to.equal(true) | ||
expect(b.key.equals(block.key)).to.equal(true) | ||
done() | ||
}) | ||
}) | ||
}) | ||
let factory | ||
|
||
it('rm', (done) => { | ||
var b = new Block('I will not last long enough') | ||
ipfs.block.put(b, function (err) { | ||
expect(err).to.not.exist | ||
ipfs.block.get(b.key, function (err, block) { | ||
expect(err).to.not.exist | ||
ipfs.block.del(b.key, function (err) { | ||
expect(err).to.not.exist | ||
ipfs.block.get(b.key, function (err, block) { | ||
expect(err).to.exist | ||
done() | ||
}) | ||
}) | ||
}) | ||
}) | ||
}) | ||
const common = { | ||
setup: function (cb) { | ||
factory = new IPFSFactory() | ||
cb(null, factory) | ||
}, | ||
teardown: function (cb) { | ||
factory.dismantle(cb) | ||
} | ||
} | ||
|
||
it('stat', function (done) { | ||
const mh = new Buffer(base58 | ||
.decode('QmVtU7ths96fMgZ8YSZAbKghyieq7AjxNdcqyVzxTt3qVe')) | ||
ipfs.block.stat(mh, (err, stats) => { | ||
expect(err).to.not.exist | ||
expect(stats.Key.equals(mh)).to.equal(true) | ||
expect(stats.Size).to.equal(309) | ||
done() | ||
}) | ||
}) | ||
}) | ||
test.block(common) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* eslint-env mocha */ | ||
|
||
'use strict' | ||
|
||
const test = require('interface-ipfs-core') | ||
const FactoryClient = require('./../../utils/factory-http') | ||
|
||
let fc | ||
|
||
const common = { | ||
setup: function (callback) { | ||
fc = new FactoryClient() | ||
callback(null, fc) | ||
}, | ||
teardown: function (callback) { | ||
fc.dismantle(callback) | ||
} | ||
} | ||
|
||
test.block(common) |