Skip to content

Commit

Permalink
test: add and assert readable/writable arguments
Browse files Browse the repository at this point in the history
Currently the readable and writable arguments are not specified in the
req.oncomplete method. Adding and asserting that they are always true
(which is always the case for TCP). This might seem unnecessary but it
can't hurt to have them to pickup any breaking modifications made to
ConnectionWrap::AfterConnect in the future.

PR-URL: #8815
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
danbev committed Oct 2, 2016
1 parent c8c2544 commit 3c5cf12
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions test/parallel/test-tcp-wrap-connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ function makeConnection() {

var req = new TCPConnectWrap();
var err = client.connect(req, '127.0.0.1', this.address().port);
assert.equal(err, 0);
assert.strictEqual(err, 0);

req.oncomplete = function(status, client_, req_) {
assert.equal(0, status);
assert.equal(client, client_);
assert.equal(req, req_);
req.oncomplete = function(status, client_, req_, readable, writable) {
assert.strictEqual(0, status);
assert.strictEqual(client, client_);
assert.strictEqual(req, req_);
assert.strictEqual(true, readable);
assert.strictEqual(true, writable);

console.log('connected');
var shutdownReq = new ShutdownWrap();
var err = client.shutdown(shutdownReq);
assert.equal(err, 0);
assert.strictEqual(err, 0);

shutdownReq.oncomplete = function(status, client_, req_) {
console.log('shutdown complete');
assert.equal(0, status);
assert.equal(client, client_);
assert.equal(shutdownReq, req_);
assert.strictEqual(0, status);
assert.strictEqual(client, client_);
assert.strictEqual(shutdownReq, req_);
shutdownCount++;
client.close();
};
Expand All @@ -40,11 +40,9 @@ var endCount = 0;
var shutdownCount = 0;

var server = require('net').Server(function(s) {
console.log('got connection');
connectCount++;
s.resume();
s.on('end', function() {
console.log('got eof');
endCount++;
s.destroy();
server.close();
Expand All @@ -54,7 +52,7 @@ var server = require('net').Server(function(s) {
server.listen(0, makeConnection);

process.on('exit', function() {
assert.equal(1, shutdownCount);
assert.equal(1, connectCount);
assert.equal(1, endCount);
assert.strictEqual(1, shutdownCount);
assert.strictEqual(1, connectCount);
assert.strictEqual(1, endCount);
});

0 comments on commit 3c5cf12

Please sign in to comment.