This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e6baa0
commit 60e089d
Showing
3 changed files
with
58 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,50 @@ | ||
/* eslint-env mocha */ | ||
'use strict' | ||
|
||
const { spawnNodesWithId } = require('../utils/spawn') | ||
const { getDescribe, getIt, expect } = require('../utils/mocha') | ||
const { connect } = require('../utils/swarm') | ||
|
||
module.exports = (createCommon, options) => { | ||
const describe = getDescribe(options) | ||
const it = getIt(options) | ||
const common = createCommon() | ||
|
||
describe('.dht.put', function () { | ||
this.timeout(80 * 1000) | ||
|
||
let nodeA | ||
let nodeB | ||
|
||
before(function (done) { | ||
// CI takes longer to instantiate the daemon, so we need to increase the | ||
// timeout for the before step | ||
this.timeout(60 * 1000) | ||
|
||
common.setup((err, factory) => { | ||
expect(err).to.not.exist() | ||
done() | ||
|
||
spawnNodesWithId(2, factory, (err, nodes) => { | ||
expect(err).to.not.exist() | ||
|
||
nodeA = nodes[0] | ||
nodeB = nodes[1] | ||
connect(nodeA, nodeB.peerId.addresses[0], done) | ||
}) | ||
}) | ||
}) | ||
|
||
after((done) => common.teardown(done)) | ||
|
||
it.skip('should put a value on the DHT', (done) => { | ||
// TODO: implement me | ||
it('should put a value on the DHT and it become provided by the peer', (done) => { | ||
this.timeout(80 * 1000) | ||
const key = Buffer.from('QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn') | ||
const data = Buffer.from('data') | ||
|
||
nodeA.dht.put(key, data, (err) => { | ||
expect(err).to.not.exist() | ||
done() | ||
}) | ||
}) | ||
}) | ||
} |