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
Showing
4 changed files
with
152 additions
and
22 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 |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/* eslint-env mocha */ | ||
/* eslint max-nested-callbacks: ["error", 8] */ | ||
|
||
'use strict' | ||
|
||
const expect = require('chai').expect | ||
const series = require('run-series') | ||
|
||
module.exports = (common) => { | ||
describe('.swarm', () => { | ||
let ipfsA | ||
let ipfsB | ||
|
||
before(function (done) { | ||
// CI takes longer to instantiate the daemon, | ||
// so we need to increase the timeout for the | ||
// before step | ||
this.timeout(20 * 1000) | ||
|
||
common.setup((err, factory) => { | ||
expect(err).to.not.exist | ||
series([ | ||
(cb) => { | ||
factory.spawnNode((err, node) => { | ||
expect(err).to.not.exist | ||
ipfsA = node | ||
cb() | ||
}) | ||
}, | ||
(cb) => { | ||
factory.spawnNode((err, node) => { | ||
expect(err).to.not.exist | ||
ipfsB = node | ||
cb() | ||
}) | ||
} | ||
], done) | ||
}) | ||
}) | ||
|
||
after((done) => { | ||
common.teardown(done) | ||
}) | ||
|
||
describe('callback API', () => { | ||
it('.connect', (done) => { | ||
ipfsB.id((err, id) => { | ||
expect(err).to.not.exist | ||
const ipfsBAddr = id.addresses[0] | ||
ipfsA.swarm.connect(ipfsBAddr, done) | ||
}) | ||
}) | ||
|
||
it('.peers', (done) => { | ||
ipfsA.swarm.peers((err, multiaddrs) => { | ||
expect(err).to.not.exist | ||
expect(multiaddrs).to.have.length.above(0) | ||
done() | ||
}) | ||
}) | ||
|
||
it('.addrs', (done) => { | ||
ipfsA.swarm.addrs((err, multiaddrs) => { | ||
expect(err).to.not.exist | ||
expect(multiaddrs).to.have.length.above(0) | ||
done() | ||
}) | ||
}) | ||
|
||
it('.localAddrs', (done) => { | ||
ipfsA.swarm.localAddrs((err, multiaddrs) => { | ||
expect(err).to.not.exist | ||
expect(multiaddrs).to.have.length.above(0) | ||
done() | ||
}) | ||
}) | ||
|
||
it('.disconnect', (done) => { | ||
ipfsB.id((err, id) => { | ||
expect(err).to.not.exist | ||
const ipfsBAddr = id.addresses[0] | ||
ipfsA.swarm.disconnect(ipfsBAddr, done) | ||
}) | ||
}) | ||
}) | ||
|
||
describe('promise API', () => { | ||
it('.connect', () => { | ||
return ipfsB.id() | ||
.then((id) => { | ||
const ipfsBAddr = id.addresses[0] | ||
return ipfsA.swarm.connect(ipfsBAddr) | ||
}) | ||
}) | ||
|
||
it('.peers', () => { | ||
return ipfsA.swarm.peers().then((multiaddrs) => { | ||
expect(multiaddrs).to.have.length.above(0) | ||
}) | ||
}) | ||
|
||
it('.addrs', () => { | ||
return ipfsA.swarm.addrs().then((multiaddrs) => { | ||
expect(multiaddrs).to.have.length.above(0) | ||
}) | ||
}) | ||
|
||
it('.localAddrs', () => { | ||
return ipfsA.swarm.localAddrs().then((multiaddrs) => { | ||
expect(multiaddrs).to.have.length.above(0) | ||
}) | ||
}) | ||
|
||
it('.disconnect', () => { | ||
return ipfsB.id() | ||
.then((id) => { | ||
const ipfsBAddr = id.addresses[0] | ||
return ipfsA.swarm.disconnect(ipfsBAddr) | ||
}) | ||
}) | ||
}) | ||
}) | ||
} |