mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
d90a41f298
Co-authored-by: Qingyu Deng <i@ayase-lab.com> PR-URL: https://github.com/nodejs/node/pull/38881 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
// Flags: --expose-internals
|
|
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const { kOutHeaders } = require('internal/http');
|
|
const { OutgoingMessage } = require('http');
|
|
|
|
const warn = 'OutgoingMessage.prototype._headers is deprecated';
|
|
common.expectWarning('DeprecationWarning', warn, 'DEP0066');
|
|
|
|
{
|
|
// Tests for _headers get method
|
|
const outgoingMessage = new OutgoingMessage();
|
|
outgoingMessage.getHeaders = common.mustCall();
|
|
outgoingMessage._headers; // eslint-disable-line no-unused-expressions
|
|
}
|
|
|
|
{
|
|
// Tests for _headers set method
|
|
const outgoingMessage = new OutgoingMessage();
|
|
outgoingMessage._headers = {
|
|
host: 'risingstack.com',
|
|
Origin: 'localhost'
|
|
};
|
|
|
|
assert.deepStrictEqual(
|
|
Object.entries(outgoingMessage[kOutHeaders]),
|
|
Object.entries({
|
|
host: ['host', 'risingstack.com'],
|
|
origin: ['Origin', 'localhost']
|
|
}));
|
|
}
|
|
|
|
{
|
|
// Tests for _headers set method `null`
|
|
const outgoingMessage = new OutgoingMessage();
|
|
outgoingMessage._headers = null;
|
|
|
|
assert.strictEqual(
|
|
outgoingMessage[kOutHeaders],
|
|
null
|
|
);
|
|
}
|