This repository was 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
/
Copy pathget.js
73 lines (57 loc) · 2.25 KB
/
get.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* eslint-env mocha */
import { expect } from 'aegir/chai'
import { getDescribe, getIt } from '../utils/mocha.js'
import testTimeout from '../utils/test-timeout.js'
import { toString as uint8ArrayToString } from 'uint8arrays/to-string'
import drain from 'it-drain'
import all from 'it-all'
import { ensureReachable } from './utils.js'
/**
* @typedef {import('ipfsd-ctl').Factory} Factory
*/
/**
* @param {Factory} factory
* @param {object} options
*/
export function testGet (factory, options) {
const describe = getDescribe(options)
const it = getIt(options)
describe('.dht.get', function () {
this.timeout(80 * 1000)
/** @type {import('ipfs-core-types').IPFS} */
let nodeA
/** @type {import('ipfs-core-types').IPFS} */
let nodeB
before(async () => {
nodeA = (await factory.spawn()).api
nodeB = (await factory.spawn()).api
await ensureReachable(nodeA, nodeB)
})
after(() => factory.clean())
it('should respect timeout option when getting a value from the DHT', async () => {
const data = await nodeA.add('should put a value to the DHT')
const publish = await nodeA.name.publish(data.cid)
await testTimeout(() => drain(nodeB.dht.get(`/ipns/${publish.name}`, {
timeout: 1
})))
})
it('should error when getting a non-existent key from the DHT', async () => {
const key = '/ipns/k51qzi5uqu5dl0dbfddy2wb42nvbc6anyxnkrguy5l0h0bv9kaih6j6vqdskqk'
const events = await all(nodeA.dht.get(key))
// no value events found
expect(events.filter(event => event.name === 'VALUE')).to.be.empty()
// queryError events found
expect(events.filter(event => event.name === 'QUERY_ERROR')).to.not.be.empty()
})
it('should get a value after it was put on another node', async () => {
const data = await nodeA.add('should put a value to the DHT')
const publish = await nodeA.name.publish(data.cid)
const events = await all(nodeA.dht.get(`/ipns/${publish.name}`))
const valueEvent = events.filter(event => event.name === 'VALUE').pop()
if (!valueEvent || valueEvent.name !== 'VALUE') {
throw new Error('Value event not found')
}
expect(uint8ArrayToString(valueEvent.value)).to.contain(data.cid.toString())
})
})
}