52 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-07-10 22:02:57 -07:00
var streamPair = require('stream-pair')
2015-07-10 18:47:43 -07:00
module.exports.all = function (test, common) {
2015-07-10 22:02:57 -07:00
test('Open a stream from the dealer', function (t) {
common.setup(test, function (err, Muxer) {
t.plan(4)
2015-07-10 18:47:43 -07:00
t.ifError(err, 'Should not throw')
2015-07-10 22:02:57 -07:00
var pair = streamPair.create()
var dialer = new Muxer()
var listener = new Muxer()
var connDialer = dialer.attach(pair)
var connListener = listener.attach(pair.other)
connDialer.dialStream(function (err, stream) {
t.ifError(err, 'Should not throw')
t.pass('dialed stream')
})
connListener.on('stream', function (stream) {
t.pass('got stream')
})
2015-07-10 18:47:43 -07:00
})
})
2015-07-10 22:02:57 -07:00
test('Open a stream from the listener', function (t) {
common.setup(test, function (err, Muxer) {
t.plan(4)
t.ifError(err, 'Should not throw')
var pair = streamPair.create()
var dialer = new Muxer()
var listener = new Muxer()
var connDialer = dialer.attach(pair)
var connListener = listener.attach(pair.other)
connListener.dialStream(function (err, stream) {
t.ifError(err, 'Should not throw')
t.pass('dialed stream')
})
connDialer.on('stream', function (stream) {
t.pass('got stream')
})
})
})
2015-07-10 18:47:43 -07:00
}