Skip to content

sugyan/node-test-tcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-test-tcp

Build Status
Testing TCP program, like as Perl's Test::TCP.

Installation

$ npm install test-tcp

Usage

net:

var TestTCP = require('test-tcp');
var assert = require('assert');
var net = require('net');

TestTCP.test_tcp({
    server: net.createServer(function (socket) {
        socket.on('data', function (data) {
            socket.write(data);
        });
    }),
    client: function (port, done) {
        var socket = new net.Socket();
        socket.connect(port, function () {
            socket.on('close', done);
            socket.on('data', function (data) {
                assert.equal(data.toString(), 'foo');
                socket.end();
            });
            socket.write('foo');
        });
    }
});

http:

var TestTCP = require('test-tcp');
var assert = require('assert');
var http = require('http');

TestTCP.test_tcp({
    server: http.createServer(function (req, res) {
        res.writeHead(200, { 'Content-Type': 'text/plain' });
        res.end('Hello, world!');
    }),
    client: function (port, done) {
        http.get({
            port: port
        }, function (res) {
            var buffer = '';
            assert.equal(res.statusCode, 200);
            res.on('data', function (chunk) {
                buffer += chunk;
            });
            res.on('end', function () {
                assert.equal(buffer, 'Hello, world!');
                done();
            });
        });
    }
});

OO-ish:

var TestTCP = require('test-tcp');
var assert = require('assert');
var net = require('net');

var server; server = new TestTCP.TestTCP({
    code: net.createServer(function (socket) {
        socket.on('data', function (data) {
            socket.write(data);
        });
    })
});
server.on('start', function () {
    var socket = new net.Socket();
    socket.connect(server.port, function () {
        socket.on('data', function (data) {
            assert.equal(data.toString(), 'foo');
            socket.on('close', function () {
                server.stop();
            });
            socket.end();
        });
        socket.write('foo');
    });
});

Functions

test_tcp(opts)

Arguments

  • opts - An object, following two parameters are required.
  • server - net.Server instance.
  • client(port, done) - A function which is called after server started. port is server's listening port, done is a function which should be called when client program finished.

empty_port([port, ]callback)

Get the available port number, you can use.

Arguments

  • port - Optional, the number you want to use.
  • callback(err, port) - A callback which is called after available port was found (or failed).

empty_ports(number, callback)

Get the array of available port number.

Arguments

  • number - Required, the number you want to get.
  • callback(err, ports) - A callback which is called after available ports were found (or failed).

Testing

$ make test

License

(The MIT License)

Copyright (c) 2011 Yoshihiro Sugi <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Testing TCP program for Node.js, like as Perl's Test::TCP

Resources

Stars

Watchers

Forks

Packages