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

Commit 2952672

Browse files
author
Alan Shaw
authored
fix: dht tests (#486)
closes #383 License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 74bccc2 commit 2952672

File tree

3 files changed

+33
-14
lines changed

3 files changed

+33
-14
lines changed

src/dht/get.js

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* eslint-env mocha */
22
'use strict'
33

4+
const hat = require('hat')
45
const waterfall = require('async/waterfall')
56
const { spawnNodesWithId } = require('../utils/spawn')
67
const { getDescribe, getIt, expect } = require('../utils/mocha')
@@ -43,7 +44,7 @@ module.exports = (createCommon, options) => {
4344
})
4445

4546
it('should error when getting a non-existent key from the DHT', (done) => {
46-
nodeA.dht.get('non-existing', { timeout: '100ms' }, (err, value) => {
47+
nodeA.dht.get('non-existing', { timeout: 100 }, (err, value) => {
4748
expect(err).to.be.an.instanceof(Error)
4849
done()
4950
})
@@ -52,17 +53,14 @@ module.exports = (createCommon, options) => {
5253
it('should get a value after it was put on another node', function (done) {
5354
this.timeout(80 * 1000)
5455

55-
// TODO - this test needs to keep tryingl instead of the setTimeout
56-
waterfall([
57-
(cb) => nodeB.object.new('unixfs-dir', cb),
58-
(dagNode, cb) => setTimeout(() => cb(null, dagNode), 20000),
59-
(dagNode, cb) => {
60-
const multihash = dagNode.toJSON().multihash
56+
const key = Buffer.from(hat())
57+
const value = Buffer.from(hat())
6158

62-
nodeA.dht.get(multihash, cb)
63-
},
59+
waterfall([
60+
cb => nodeB.dht.put(key, value, cb),
61+
cb => nodeA.dht.get(key, cb),
6462
(result, cb) => {
65-
expect(result).to.eql('')
63+
expect(result).to.eql(value)
6664
cb()
6765
}
6866
], done)

src/dht/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
const { createSuite } = require('../utils/suite')
33

44
const tests = {
5-
get: require('./get'),
65
put: require('./put'),
6+
get: require('./get'),
77
findPeer: require('./find-peer'),
88
provide: require('./provide'),
99
findProvs: require('./find-provs'),

src/dht/put.js

+24-3
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,50 @@
11
/* eslint-env mocha */
22
'use strict'
33

4+
const { spawnNodesWithId } = require('../utils/spawn')
45
const { getDescribe, getIt, expect } = require('../utils/mocha')
6+
const { connect } = require('../utils/swarm')
57

68
module.exports = (createCommon, options) => {
79
const describe = getDescribe(options)
810
const it = getIt(options)
911
const common = createCommon()
1012

1113
describe('.dht.put', function () {
14+
this.timeout(80 * 1000)
15+
16+
let nodeA
17+
let nodeB
18+
1219
before(function (done) {
1320
// CI takes longer to instantiate the daemon, so we need to increase the
1421
// timeout for the before step
1522
this.timeout(60 * 1000)
1623

1724
common.setup((err, factory) => {
1825
expect(err).to.not.exist()
19-
done()
26+
27+
spawnNodesWithId(2, factory, (err, nodes) => {
28+
expect(err).to.not.exist()
29+
30+
nodeA = nodes[0]
31+
nodeB = nodes[1]
32+
connect(nodeA, nodeB.peerId.addresses[0], done)
33+
})
2034
})
2135
})
2236

2337
after((done) => common.teardown(done))
2438

25-
it.skip('should put a value on the DHT', (done) => {
26-
// TODO: implement me
39+
it('should put a value to the DHT', (done) => {
40+
this.timeout(80 * 1000)
41+
const key = Buffer.from('QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn')
42+
const data = Buffer.from('data')
43+
44+
nodeA.dht.put(key, data, (err) => {
45+
expect(err).to.not.exist()
46+
done()
47+
})
2748
})
2849
})
2950
}

0 commit comments

Comments
 (0)