-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #49889 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
- Loading branch information
Showing
7 changed files
with
271 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const { MIMEType } = require('util'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1e5], | ||
value: [ | ||
'application/ecmascript; ', | ||
'text/html;charset=gbk', | ||
`text/html;${'0123456789'.repeat(12)}=x;charset=gbk`, | ||
'text/html;test=\u00FF;charset=gbk', | ||
'x/x;\n\r\t x=x\n\r\t ;x=y', | ||
], | ||
}, { | ||
}); | ||
|
||
function main({ n, value }) { | ||
// Warm up. | ||
const length = 1024; | ||
const array = []; | ||
let errCase = false; | ||
|
||
for (let i = 0; i < length; ++i) { | ||
try { | ||
array.push(new MIMEType(value)); | ||
} catch (e) { | ||
errCase = true; | ||
array.push(e); | ||
} | ||
} | ||
|
||
// console.log(`errCase: ${errCase}`); | ||
bench.start(); | ||
|
||
for (let i = 0; i < n; ++i) { | ||
const index = i % length; | ||
try { | ||
array[index] = new MIMEType(value); | ||
} catch (e) { | ||
array[index] = e; | ||
} | ||
} | ||
|
||
bench.end(n); | ||
|
||
// Verify the entries to prevent dead code elimination from making | ||
// the benchmark invalid. | ||
for (let i = 0; i < length; ++i) { | ||
assert.strictEqual(typeof array[i], errCase ? 'object' : 'object'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const { MIMEType } = require('util'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1e5], | ||
value: [ | ||
'application/ecmascript; ', | ||
'text/html;charset=gbk', | ||
`text/html;${'0123456789'.repeat(12)}=x;charset=gbk`, | ||
'text/html;test=\u00FF;charset=gbk', | ||
'x/x;\n\r\t x=x\n\r\t ;x=y', | ||
], | ||
}, { | ||
}); | ||
|
||
function main({ n, value }) { | ||
// Warm up. | ||
const length = 1024; | ||
const array = []; | ||
let errCase = false; | ||
|
||
const mime = new MIMEType(value); | ||
|
||
for (let i = 0; i < length; ++i) { | ||
try { | ||
array.push(mime.toString()); | ||
} catch (e) { | ||
errCase = true; | ||
array.push(e); | ||
} | ||
} | ||
|
||
// console.log(`errCase: ${errCase}`); | ||
bench.start(); | ||
|
||
for (let i = 0; i < n; ++i) { | ||
const index = i % length; | ||
try { | ||
array[index] = mime.toString(); | ||
} catch (e) { | ||
array[index] = e; | ||
} | ||
} | ||
|
||
bench.end(n); | ||
|
||
// Verify the entries to prevent dead code elimination from making | ||
// the benchmark invalid. | ||
for (let i = 0; i < length; ++i) { | ||
assert.strictEqual(typeof array[i], errCase ? 'object' : 'string'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1e7], | ||
value: [ | ||
'application/ecmascript; ', | ||
'text/html;charset=gbk', | ||
// eslint-disable-next-line max-len | ||
'text/html;0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789=x;charset=gbk', | ||
], | ||
}, { | ||
flags: ['--expose-internals'], | ||
}); | ||
|
||
function main({ n, value }) { | ||
|
||
const parseTypeAndSubtype = require('internal/mime').parseTypeAndSubtype; | ||
// Warm up. | ||
const length = 1024; | ||
const array = []; | ||
let errCase = false; | ||
|
||
for (let i = 0; i < length; ++i) { | ||
try { | ||
array.push(parseTypeAndSubtype(value)); | ||
} catch (e) { | ||
errCase = true; | ||
array.push(e); | ||
} | ||
} | ||
|
||
// console.log(`errCase: ${errCase}`); | ||
bench.start(); | ||
for (let i = 0; i < n; ++i) { | ||
const index = i % length; | ||
try { | ||
array[index] = parseTypeAndSubtype(value); | ||
} catch (e) { | ||
array[index] = e; | ||
} | ||
} | ||
|
||
bench.end(n); | ||
|
||
// Verify the entries to prevent dead code elimination from making | ||
// the benchmark invalid. | ||
for (let i = 0; i < length; ++i) { | ||
assert.strictEqual(typeof array[i], errCase ? 'object' : 'object'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1e7], | ||
value: [ | ||
'ABCDEFGHIJKLMNOPQRSTUVWXYZ', | ||
'UPPERCASE', | ||
'lowercase', | ||
'mixedCase', | ||
], | ||
}, { | ||
flags: ['--expose-internals'], | ||
}); | ||
|
||
function main({ n, value }) { | ||
|
||
const toASCIILower = require('internal/mime').toASCIILower; | ||
// Warm up. | ||
const length = 1024; | ||
const array = []; | ||
let errCase = false; | ||
|
||
for (let i = 0; i < length; ++i) { | ||
try { | ||
array.push(toASCIILower(value)); | ||
} catch (e) { | ||
errCase = true; | ||
array.push(e); | ||
} | ||
} | ||
|
||
// console.log(`errCase: ${errCase}`); | ||
bench.start(); | ||
|
||
for (let i = 0; i < n; ++i) { | ||
const index = i % length; | ||
try { | ||
array[index] = toASCIILower(value); | ||
} catch (e) { | ||
array[index] = e; | ||
} | ||
} | ||
|
||
bench.end(n); | ||
|
||
// Verify the entries to prevent dead code elimination from making | ||
// the benchmark invalid. | ||
for (let i = 0; i < length; ++i) { | ||
assert.strictEqual(typeof array[i], errCase ? 'object' : 'string'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
|
||
const runBenchmark = require('../common/benchmark'); | ||
|
||
runBenchmark('mime', { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 }); |
Oops, something went wrong.