2019-11-14 11:52:06 +01:00
|
|
|
/* eslint-env mocha */
|
|
|
|
'use strict'
|
|
|
|
|
2020-07-03 15:48:12 +02:00
|
|
|
const { EventEmitter } = require('events')
|
|
|
|
|
2019-11-14 11:52:06 +01:00
|
|
|
const tests = require('../../src/topology/tests/multicodec-topology')
|
|
|
|
const MulticodecTopology = require('../../src/topology/multicodec-topology')
|
|
|
|
const MockPeerStore = require('./mock-peer-store')
|
|
|
|
|
|
|
|
describe('multicodec topology compliance tests', () => {
|
|
|
|
tests({
|
|
|
|
setup (properties, registrar) {
|
|
|
|
const multicodecs = ['/echo/1.0.0']
|
|
|
|
const handlers = {
|
|
|
|
onConnect: () => { },
|
|
|
|
onDisconnect: () => { }
|
|
|
|
}
|
|
|
|
|
|
|
|
const topology = new MulticodecTopology({
|
|
|
|
multicodecs,
|
|
|
|
handlers,
|
|
|
|
...properties
|
|
|
|
})
|
|
|
|
|
|
|
|
if (!registrar) {
|
2020-04-17 17:23:31 +02:00
|
|
|
const peers = new Map()
|
|
|
|
const peerStore = new MockPeerStore(peers)
|
2020-07-03 15:48:12 +02:00
|
|
|
const connectionManager = new EventEmitter()
|
2019-11-14 11:52:06 +01:00
|
|
|
|
|
|
|
registrar = {
|
|
|
|
peerStore,
|
2020-07-03 15:48:12 +02:00
|
|
|
connectionManager,
|
2019-11-14 11:52:06 +01:00
|
|
|
getConnection: () => { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
topology.registrar = registrar
|
|
|
|
|
|
|
|
return topology
|
|
|
|
},
|
|
|
|
teardown () {
|
|
|
|
// cleanup resources created by setup()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|