mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
'use strict';
|
|
const common = require('../common.js');
|
|
const url = require('url');
|
|
const URL = url.URL;
|
|
const assert = require('assert');
|
|
|
|
const inputs = {
|
|
long: 'http://nodejs.org:89/docs/latest/api/url.html#test?' +
|
|
'payload1=true&payload2=false&test=1&benchmark=3&' +
|
|
'foo=38.38.011.293&bar=1234834910480&test=19299&3992&' +
|
|
'key=f5c65e1e98fe07e648249ad41e1cfdb0',
|
|
short: 'https://nodejs.org/en/blog/',
|
|
idn: 'http://你好你好',
|
|
auth: 'https://user:pass@example.com/path?search=1',
|
|
special: 'file:///foo/bar/test/node.js',
|
|
percent: 'https://%E4%BD%A0/foo',
|
|
dot: 'https://example.org/./a/../b/./c'
|
|
};
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: Object.keys(inputs),
|
|
method: ['legacy', 'whatwg'],
|
|
n: [1e5]
|
|
});
|
|
|
|
function useLegacy(n, input, prop) {
|
|
var obj = url.parse(input);
|
|
var noDead = url.format(obj);
|
|
bench.start();
|
|
for (var i = 0; i < n; i += 1) {
|
|
noDead = url.format(obj);
|
|
}
|
|
bench.end(n);
|
|
return noDead;
|
|
}
|
|
|
|
function useWHATWG(n, input, prop) {
|
|
var obj = new URL(input);
|
|
var noDead = obj.toString();
|
|
bench.start();
|
|
for (var i = 0; i < n; i += 1) {
|
|
noDead = obj.toString();
|
|
}
|
|
bench.end(n);
|
|
return noDead;
|
|
}
|
|
|
|
function main(conf) {
|
|
const type = conf.type;
|
|
const n = conf.n | 0;
|
|
const method = conf.method;
|
|
|
|
const input = inputs[type];
|
|
if (!input) {
|
|
throw new Error('Unknown input type');
|
|
}
|
|
|
|
var noDead; // Avoid dead code elimination.
|
|
switch (method) {
|
|
case 'legacy':
|
|
noDead = useLegacy(n, input);
|
|
break;
|
|
case 'whatwg':
|
|
noDead = useWHATWG(n, input);
|
|
break;
|
|
default:
|
|
throw new Error('Unknown method');
|
|
}
|
|
|
|
assert.ok(noDead);
|
|
}
|
|
|