Skip to content

Commit

Permalink
test: use strictEqual in test-http-server
Browse files Browse the repository at this point in the history
PR-URL: #10478
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Italo A. Casas <me@italoacasas.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
ftatieze authored and evanlucas committed Jan 4, 2017
1 parent 32b6bcd commit 0a0c190
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions test/parallel/test-http-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ var server = http.createServer(function(req, res) {
req.id = request_number++;

if (req.id === 0) {
assert.equal('GET', req.method);
assert.equal('/hello', url.parse(req.url).pathname);
assert.equal('world', qs.parse(url.parse(req.url).query).hello);
assert.equal('b==ar', qs.parse(url.parse(req.url).query).foo);
assert.strictEqual('GET', req.method);
assert.strictEqual('/hello', url.parse(req.url).pathname);
assert.strictEqual('world', qs.parse(url.parse(req.url).query).hello);
assert.strictEqual('b==ar', qs.parse(url.parse(req.url).query).foo);
}

if (req.id === 1) {
assert.equal('POST', req.method);
assert.equal('/quit', url.parse(req.url).pathname);
assert.strictEqual('POST', req.method);
assert.strictEqual('/quit', url.parse(req.url).pathname);
}

if (req.id === 2) {
assert.equal('foo', req.headers['x-x']);
assert.strictEqual('foo', req.headers['x-x']);
}

if (req.id === 3) {
assert.equal('bar', req.headers['x-x']);
assert.strictEqual('bar', req.headers['x-x']);
this.close();
}

Expand Down Expand Up @@ -75,7 +75,7 @@ server.on('listening', function() {
// you set server.httpAllowHalfOpen=true, which we've done
// above.
c.end();
assert.equal(c.readyState, 'readOnly');
assert.strictEqual(c.readyState, 'readOnly');
requests_sent += 2;
}

Expand All @@ -86,19 +86,19 @@ server.on('listening', function() {
});

c.on('close', function() {
assert.equal(c.readyState, 'closed');
assert.strictEqual(c.readyState, 'closed');
});
});

process.on('exit', function() {
assert.equal(4, request_number);
assert.equal(4, requests_sent);
assert.strictEqual(4, request_number);
assert.strictEqual(4, requests_sent);

var hello = new RegExp('/hello');
assert.equal(true, hello.exec(server_response) != null);
assert.notStrictEqual(null, hello.exec(server_response));

var quit = new RegExp('/quit');
assert.equal(true, quit.exec(server_response) != null);
assert.notStrictEqual(null, quit.exec(server_response));

assert.equal(true, client_got_eof);
assert.strictEqual(true, client_got_eof);
});

0 comments on commit 0a0c190

Please sign in to comment.