mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 04:59:52 +00:00

In preparation for a lint rule that will enforce assert.deepStrictEqual() over assert.deepEqual(), change tests and benchmarks accordingly. For tests and benchmarks that are testing or benchmarking assert.deepEqual() itself, apply a comment to ignore the upcoming rule. PR-URL: https://github.com/nodejs/node/pull/6213 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
65 lines
1.5 KiB
JavaScript
65 lines
1.5 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var nresponses = 0;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
if (req.url == '/one') {
|
|
res.writeHead(200, [['set-cookie', 'A'],
|
|
['content-type', 'text/plain']]);
|
|
res.end('one\n');
|
|
} else {
|
|
res.writeHead(200, [['set-cookie', 'A'],
|
|
['set-cookie', 'B'],
|
|
['content-type', 'text/plain']]);
|
|
res.end('two\n');
|
|
}
|
|
});
|
|
server.listen(common.PORT);
|
|
|
|
server.on('listening', function() {
|
|
//
|
|
// one set-cookie header
|
|
//
|
|
http.get({ port: common.PORT, path: '/one' }, function(res) {
|
|
// set-cookie headers are always return in an array.
|
|
// even if there is only one.
|
|
assert.deepStrictEqual(['A'], res.headers['set-cookie']);
|
|
assert.equal('text/plain', res.headers['content-type']);
|
|
|
|
res.on('data', function(chunk) {
|
|
console.log(chunk.toString());
|
|
});
|
|
|
|
res.on('end', function() {
|
|
if (++nresponses == 2) {
|
|
server.close();
|
|
}
|
|
});
|
|
});
|
|
|
|
// two set-cookie headers
|
|
|
|
http.get({ port: common.PORT, path: '/two' }, function(res) {
|
|
assert.deepStrictEqual(['A', 'B'], res.headers['set-cookie']);
|
|
assert.equal('text/plain', res.headers['content-type']);
|
|
|
|
res.on('data', function(chunk) {
|
|
console.log(chunk.toString());
|
|
});
|
|
|
|
res.on('end', function() {
|
|
if (++nresponses == 2) {
|
|
server.close();
|
|
}
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2, nresponses);
|
|
});
|