This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tests): add closing tests, make sure errors are propagated
- Loading branch information
1 parent
5069679
commit c06da3b
Showing
3 changed files
with
169 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
/* eslint-env mocha */ | ||
'use strict' | ||
|
||
const chai = require('chai') | ||
chai.use(require('chai-checkmark')) | ||
const expect = chai.expect | ||
const pair = require('pull-pair/duplex') | ||
const pull = require('pull-stream') | ||
const parallel = require('run-parallel') | ||
const series = require('run-series') | ||
const Tcp = require('libp2p-tcp') | ||
const multiaddr = require('multiaddr') | ||
|
||
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090') | ||
|
||
function closeAndWait (stream) { | ||
pull( | ||
pull.empty(), | ||
stream, | ||
pull.onEnd((err) => { | ||
expect(err).to.not.exist.mark() | ||
}) | ||
) | ||
} | ||
|
||
module.exports = (common) => { | ||
describe.only('close', () => { | ||
let muxer | ||
|
||
beforeEach((done) => { | ||
common.setup((err, _muxer) => { | ||
if (err) return done(err) | ||
muxer = _muxer | ||
done() | ||
}) | ||
}) | ||
|
||
it('closing underlying closes streams (tcp)', (done) => { | ||
expect(2).checks(done) | ||
|
||
const tcp = new Tcp() | ||
const tcpListener = tcp.createListener((socket) => { | ||
const listener = muxer.listen(socket) | ||
listener.on('stream', (stream) => { | ||
pull(stream, stream) | ||
}) | ||
}) | ||
|
||
tcpListener.listen(mh, () => { | ||
const dialer = muxer.dial(tcp.dial(mh, () => { | ||
tcpListener.close() | ||
})) | ||
|
||
const s1 = dialer.newStream(() => { | ||
pull( | ||
s1, | ||
pull.onEnd((err) => { | ||
expect(err).to.exist.mark() | ||
}) | ||
) | ||
|
||
const s2 = dialer.newStream(() => { | ||
pull( | ||
s2, | ||
pull.onEnd((err) => { | ||
expect(err).to.exist.mark() | ||
}) | ||
) | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
it('closing one of the muxed streams doesn\'t close others', (done) => { | ||
const p = pair() | ||
const dialer = muxer.dial(p[0]) | ||
const listener = muxer.listen(p[1]) | ||
|
||
expect(6).checks(done) | ||
|
||
const conns = [] | ||
|
||
listener.on('stream', (stream) => { | ||
expect(stream).to.exist.mark() | ||
pull(stream, stream) | ||
}) | ||
|
||
for (let i = 0; i < 5; i++) { | ||
conns.push(dialer.newStream()) | ||
} | ||
|
||
conns.forEach((conn, i) => { | ||
if (i === 2) { | ||
closeAndWait(conn) | ||
} else { | ||
pull( | ||
conn, | ||
pull.onEnd(() => { | ||
throw new Error('should not end') | ||
}) | ||
) | ||
} | ||
}) | ||
}) | ||
|
||
it.skip('closing on spdy doesn\'t close until all the streams that are being muxed are closed', (done) => { | ||
const p = pair() | ||
const dialer = muxer.dial(p[0]) | ||
const listener = muxer.listen(p[1]) | ||
|
||
expect(15).checks(done) | ||
|
||
const conns = [] | ||
const count = [] | ||
for (let i = 0; i < 5; i++) { | ||
count.push(i) | ||
} | ||
|
||
series(count.map((i) => (cb) => { | ||
parallel([ | ||
(cb) => listener.once('stream', (stream) => { | ||
console.log('pipe') | ||
expect(stream).to.exist.mark() | ||
pull(stream, stream) | ||
cb() | ||
}), | ||
(cb) => conns.push(dialer.newStream(cb)) | ||
], cb) | ||
}), (err) => { | ||
if (err) return done(err) | ||
|
||
conns.forEach((conn, i) => { | ||
pull( | ||
pull.values([Buffer('hello')]), | ||
pull.asyncMap((val, cb) => { | ||
setTimeout(() => { | ||
cb(null, val) | ||
}, i * 10) | ||
}), | ||
pull.through((val) => console.log('send', val)), | ||
conn, | ||
pull.through((val) => console.log('recv', val)), | ||
pull.collect((err, data) => { | ||
console.log('end', i) | ||
expect(err).to.not.exist.mark() | ||
expect(data).to.be.eql([Buffer('hello')]).mark() | ||
}) | ||
) | ||
}) | ||
|
||
listener.on('close', () => { | ||
console.log('closed listener') | ||
}) | ||
|
||
dialer.end(() => { | ||
console.log('CLOSED') | ||
}) | ||
}) | ||
}) | ||
}) | ||
} |
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