我的node项目首次提交!!!
This commit is contained in:
50
node_modules/@fastify/proxy-addr/benchmark/compiling.js
generated
vendored
Normal file
50
node_modules/@fastify/proxy-addr/benchmark/compiling.js
generated
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
'use strict'
|
||||
|
||||
/**
|
||||
* Globals for benchmark.js
|
||||
*/
|
||||
global.proxyaddr = require('..')
|
||||
global.createReq = createReq
|
||||
|
||||
/**
|
||||
* Module dependencies.
|
||||
*/
|
||||
const benchmark = require('benchmark')
|
||||
const benchmarks = require('beautify-benchmark')
|
||||
|
||||
const suite = new benchmark.Suite()
|
||||
|
||||
suite.add({
|
||||
name: 're-compiling',
|
||||
minSamples: 100,
|
||||
fn: 'proxyaddr(req, "loopback")',
|
||||
setup: 'req = createReq("127.0.0.1", "10.0.0.1")'
|
||||
})
|
||||
|
||||
suite.add({
|
||||
name: 'pre-compiling',
|
||||
minSamples: 100,
|
||||
fn: 'proxyaddr(req, trust)',
|
||||
setup: 'req = createReq("127.0.0.1", "10.0.0.1"); trust = proxyaddr.compile("loopback")'
|
||||
})
|
||||
|
||||
suite.on('cycle', function onCycle (event) {
|
||||
benchmarks.add(event.target)
|
||||
})
|
||||
|
||||
suite.on('complete', function onComplete () {
|
||||
benchmarks.log()
|
||||
})
|
||||
|
||||
suite.run({ async: false })
|
||||
|
||||
function createReq (socketAddr, forwardedFor) {
|
||||
return {
|
||||
socket: {
|
||||
remoteAddress: socketAddr
|
||||
},
|
||||
headers: {
|
||||
'x-forwarded-for': (forwardedFor || '')
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user