mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

This change removes `common.noop` from the Node.js internal testing common module. Over the last few weeks, I've grown to dislike the `common.noop` abstraction. First, new (and experienced) contributors are unaware of it and so it results in a large number of low-value nits on PRs. It also increases the number of things newcomers and infrequent contributors have to be aware of to be effective on the project. Second, it is confusing. Is it a singleton/property or a getter? Which should be expected? This can lead to subtle and hard-to-find bugs. (To my knowledge, none have landed on master. But I also think it's only a matter of time.) Third, the abstraction is low-value in my opinion. What does it really get us? A case could me made that it is without value at all. Lastly, and this is minor, but the abstraction is wordier than not using the abstraction. `common.noop` doesn't save anything over `() => {}`. So, I propose removing it. PR-URL: https://github.com/nodejs/node/pull/12822 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com>
34 lines
968 B
JavaScript
34 lines
968 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const agent = require('http').globalAgent;
|
|
|
|
// small stub just so we can call addRequest directly
|
|
const req = {
|
|
getHeader: () => {}
|
|
};
|
|
|
|
agent.maxSockets = 0;
|
|
|
|
// localAddress is used when naming requests / sockets
|
|
// while using the Legacy API
|
|
// port 8080 is hardcoded since this does not create a network connection
|
|
agent.addRequest(req, 'localhost', 8080, '127.0.0.1');
|
|
assert.strictEqual(Object.keys(agent.requests).length, 1);
|
|
assert.strictEqual(
|
|
Object.keys(agent.requests)[0],
|
|
'localhost:8080:127.0.0.1');
|
|
|
|
// path is *not* used when naming requests / sockets
|
|
// port 8080 is hardcoded since this does not create a network connection
|
|
agent.addRequest(req, {
|
|
host: 'localhost',
|
|
port: 8080,
|
|
localAddress: '127.0.0.1',
|
|
path: '/foo'
|
|
});
|
|
assert.strictEqual(Object.keys(agent.requests).length, 1);
|
|
assert.strictEqual(
|
|
Object.keys(agent.requests)[0],
|
|
'localhost:8080:127.0.0.1');
|