168 lines
4.2 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) {
2016-03-06 22:42:53 +00:00
test('Open a stream from the dialer', function (t) {
common.setup(test, function (err, muxer) {
2015-07-10 22:02:57 -07:00
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()
2016-03-06 22:42:53 +00:00
var dialer = muxer(pair, false)
var listener = muxer(pair.other, true)
2015-07-10 22:02:57 -07:00
2016-03-06 22:42:53 +00:00
listener.on('stream', (stream) => {
t.pass('got stream')
})
2015-07-10 22:02:57 -07:00
2016-03-06 22:42:53 +00:00
dialer.newStream((err, stream) => {
2015-07-10 22:02:57 -07:00
t.ifError(err, 'Should not throw')
t.pass('dialed 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) {
2016-03-06 22:42:53 +00:00
common.setup(test, function (err, muxer) {
2015-07-10 22:02:57 -07:00
t.plan(4)
t.ifError(err, 'Should not throw')
var pair = streamPair.create()
2016-03-06 22:42:53 +00:00
var dialer = muxer(pair, false)
var listener = muxer(pair.other, true)
2015-07-10 22:02:57 -07:00
2016-03-06 22:42:53 +00:00
dialer.on('stream', (stream) => {
t.pass('got stream')
})
2015-07-10 22:02:57 -07:00
2016-03-06 22:42:53 +00:00
listener.newStream((err, stream) => {
2015-07-10 22:02:57 -07:00
t.ifError(err, 'Should not throw')
t.pass('dialed stream')
})
})
})
2015-07-14 19:04:18 -07:00
test('Open a stream on both sides', function (t) {
2016-03-06 22:42:53 +00:00
common.setup(test, function (err, muxer) {
2015-07-14 19:04:18 -07:00
t.plan(7)
t.ifError(err, 'Should not throw')
var pair = streamPair.create()
2016-03-06 22:42:53 +00:00
var dialer = muxer(pair, false)
var listener = muxer(pair.other, true)
2015-07-14 19:04:18 -07:00
2016-03-06 22:42:53 +00:00
dialer.on('stream', (stream) => {
t.pass('got stream')
})
2015-07-14 19:04:18 -07:00
2016-03-06 22:42:53 +00:00
listener.newStream((err, stream) => {
2015-07-14 19:04:18 -07:00
t.ifError(err, 'Should not throw')
2016-03-06 22:42:53 +00:00
t.pass('dialed stream')
2015-07-14 19:04:18 -07:00
})
2016-03-06 22:42:53 +00:00
listener.on('stream', (stream) => {
t.pass('got stream')
2015-07-14 19:04:18 -07:00
})
2016-03-06 22:42:53 +00:00
dialer.newStream((err, stream) => {
2015-07-14 19:04:18 -07:00
t.ifError(err, 'Should not throw')
2016-03-06 22:42:53 +00:00
t.pass('dialed stream')
2015-07-14 19:04:18 -07:00
})
})
})
2015-07-22 13:00:10 -07:00
test('Open a stream on one side, write, open a stream in the other side', function (t) {
2016-03-06 22:42:53 +00:00
common.setup(test, function (err, muxer) {
2015-07-22 13:00:10 -07:00
t.plan(9)
t.ifError(err, 'Should not throw')
var pair = streamPair.create()
2016-03-06 22:42:53 +00:00
var dialer = muxer(pair, false)
var listener = muxer(pair.other, true)
2015-07-22 13:00:10 -07:00
2016-03-06 22:42:53 +00:00
dialer.newStream(function (err, stream) {
2015-07-22 13:00:10 -07:00
t.ifError(err, 'Should not throw')
t.pass('dialed stream from dialer')
stream.write('hey')
})
2016-03-06 22:42:53 +00:00
listener.on('stream', function (stream) {
2015-07-22 13:00:10 -07:00
t.pass('listener got stream')
stream.on('data', function (chunk) {
t.equal(chunk.toString(), 'hey')
})
2016-03-06 22:42:53 +00:00
listener.newStream(function (err, stream) {
2015-07-22 13:00:10 -07:00
t.ifError(err, 'Should not throw')
t.pass('dialed stream from listener')
stream.write('hello')
})
})
2016-03-06 22:42:53 +00:00
dialer.on('stream', function (stream) {
2015-07-22 13:00:10 -07:00
t.pass('dialer got stream')
stream.on('data', function (chunk) {
t.equal(chunk.toString(), 'hello')
})
})
})
})
test('Open a stream using the net.connect pattern', function (t) {
2016-03-06 22:42:53 +00:00
common.setup(test, function (err, muxer) {
t.plan(2)
t.ifError(err, 'Should not throw')
var pair = streamPair.create()
2016-03-06 22:42:53 +00:00
var dialer = muxer(pair, false)
var listener = muxer(pair.other, true)
2016-03-06 22:42:53 +00:00
var stream = dialer.newStream()
stream.on('ready', function () {
t.pass('dialed stream')
})
stream.on('error', function (err) {
t.ifError(err, 'Should not throw')
})
2016-03-06 22:42:53 +00:00
listener.on('stream', function (stream) {
t.pass('got stream')
})
})
})
test('Buffer writes Open a stream using the net.connect pattern', function (t) {
2016-03-06 22:42:53 +00:00
common.setup(test, function (err, muxer) {
t.plan(3)
t.ifError(err, 'Should not throw')
var pair = streamPair.create()
2016-03-06 22:42:53 +00:00
var dialer = muxer(pair, false)
var listener = muxer(pair.other, true)
2016-03-06 22:42:53 +00:00
var stream = dialer.newStream()
stream.write('buffer this')
stream.on('ready', function () {
t.pass('dialed stream')
})
stream.on('error', function (err) {
t.ifError(err, 'Should not throw')
})
2016-03-06 22:42:53 +00:00
listener.on('stream', function (stream) {
t.pass('got stream')
stream.on('data', function (chunk) {
t.equal(chunk.toString(), 'buffer this')
})
})
})
})
2015-07-10 18:47:43 -07:00
}