Skip to content

Commit

Permalink
benchmark: add url benchmarks
Browse files Browse the repository at this point in the history
Based on the ad-hoc benchmark from nodejs/node-v0.x-archive#8638 plus an additional
benchmark for user:pass auth URLs.

PR-URL: #102
Reviewed-by: Chris Dickinson <[email protected]>
  • Loading branch information
bnoordhuis committed Dec 9, 2014
1 parent ddf17f9 commit 21a679a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions benchmark/url/url.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
var common = require('../common.js');
var url = require('url');

var bench = common.createBenchmark(main, {
type: 'one two three four five six'.split(' '),
n: [25e4]
});

function main(conf) {
var type = conf.type;
var n = conf.n | 0;

var inputs = {
one: 'http://nodejs.org/docs/latest/api/url.html#url_url_format_urlobj',
two: 'http://blog.nodejs.org/',
three: 'https://encrypted.google.com/search?q=url&q=site:npmjs.org&hl=en',
four: 'javascript:alert("node is awesome");',
five: 'some.ran/dom/url.thing?oh=yes#whoo',
six: 'https://user:[email protected]/',
};
var input = inputs[type] || '';

bench.start();
for (var i = 0; i < n; i += 1)
url.parse(input);
bench.end(n);
}

0 comments on commit 21a679a

Please sign in to comment.