%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
'use strict'; const common = require('../common.js'); const { ClientRequest } = require('http'); const assert = require('assert'); const types = Object.keys(common.urls) .filter((i) => common.urls[i] .startsWith('http://')); const bench = common.createBenchmark(main, { // Use 'url' to avoid name clash with other http benchmark url: types.concat(['wpt']), arg: ['URL', 'string', 'options'], e: [1] }); function noop() {} function main({ url: type, arg, e }) { e = Number(e); const data = common.bakeUrlData(type, e, false, false) .filter((i) => i.startsWith('http://')); const len = data.length; let result; switch (arg) { case 'options': { const options = data.map((i) => ({ path: new URL(i).path, createConnection: noop })); bench.start(); for (let i = 0; i < len; i++) { result = new ClientRequest(options[i]); } bench.end(len); break; } case 'URL': { const options = data.map((i) => new URL(i)); bench.start(); for (let i = 0; i < len; i++) { result = new ClientRequest(options[i], { createConnection: noop }); } bench.end(len); break; } case 'string': { bench.start(); for (let i = 0; i < len; i++) { result = new ClientRequest(data[i], { createConnection: noop }); } bench.end(len); break; } default: { throw new Error(`Unknown arg type ${arg}`); } } assert.ok(result); }