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.
		
		
		
		
		
			
		
			
				
					111 lines
				
				4.9 KiB
			
		
		
			
		
	
	
					111 lines
				
				4.9 KiB
			| 
											3 years ago
										 | 'use strict' | ||
|  | 
 | ||
|  | const Benchmark = require('benchmark') | ||
|  | // The default number of samples for Benchmark seems to be low enough that it
 | ||
|  | // can generate results with significant variance (~2%) for this benchmark
 | ||
|  | // suite. This makes it sometimes a bit confusing to actually evaluate impact of
 | ||
|  | // changes on performance. Setting the minimum of samples to 500 results in
 | ||
|  | // significantly lower variance on my local setup for this tests suite, and
 | ||
|  | // gives me higher confidence in benchmark results.
 | ||
|  | Benchmark.options.minSamples = 500 | ||
|  | 
 | ||
|  | const suite = Benchmark.Suite() | ||
|  | 
 | ||
|  | const FindMyWay = require('./') | ||
|  | 
 | ||
|  | const findMyWay = new FindMyWay() | ||
|  | findMyWay.on('GET', '/', () => true) | ||
|  | findMyWay.on('GET', '/user/:id', () => true) | ||
|  | findMyWay.on('GET', '/user/:id/static', () => true) | ||
|  | findMyWay.on('POST', '/user/:id', () => true) | ||
|  | findMyWay.on('PUT', '/user/:id', () => true) | ||
|  | findMyWay.on('GET', '/customer/:name-:surname', () => true) | ||
|  | findMyWay.on('POST', '/customer', () => true) | ||
|  | findMyWay.on('GET', '/at/:hour(^\\d+)h:minute(^\\d+)m', () => true) | ||
|  | findMyWay.on('GET', '/abc/def/ghi/lmn/opq/rst/uvz', () => true) | ||
|  | 
 | ||
|  | findMyWay.on('GET', '/products', () => true) | ||
|  | findMyWay.on('GET', '/products/:id', () => true) | ||
|  | findMyWay.on('GET', '/products/:id/options', () => true) | ||
|  | 
 | ||
|  | findMyWay.on('GET', '/posts', () => true) | ||
|  | findMyWay.on('POST', '/posts', () => true) | ||
|  | findMyWay.on('GET', '/posts/:id', () => true) | ||
|  | findMyWay.on('GET', '/posts/:id/author', () => true) | ||
|  | findMyWay.on('GET', '/posts/:id/comments', () => true) | ||
|  | findMyWay.on('POST', '/posts/:id/comments', () => true) | ||
|  | findMyWay.on('GET', '/posts/:id/comments/:id', () => true) | ||
|  | findMyWay.on('GET', '/posts/:id/comments/:id/author', () => true) | ||
|  | findMyWay.on('GET', '/posts/:id/counter', () => true) | ||
|  | 
 | ||
|  | const constrained = new FindMyWay() | ||
|  | constrained.on('GET', '/', () => true) | ||
|  | constrained.on('GET', '/versioned', () => true) | ||
|  | constrained.on('GET', '/versioned', { constraints: { version: '1.2.0' } }, () => true) | ||
|  | constrained.on('GET', '/versioned', { constraints: { version: '2.0.0', host: 'example.com' } }, () => true) | ||
|  | constrained.on('GET', '/versioned', { constraints: { version: '2.0.0', host: 'fastify.io' } }, () => true) | ||
|  | 
 | ||
|  | suite | ||
|  |   .add('lookup static route', function () { | ||
|  |     findMyWay.lookup({ method: 'GET', url: '/', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup dynamic route', function () { | ||
|  |     findMyWay.lookup({ method: 'GET', url: '/user/tomas', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup dynamic multi-parametric route', function () { | ||
|  |     findMyWay.lookup({ method: 'GET', url: '/customer/john-doe', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup dynamic multi-parametric route with regex', function () { | ||
|  |     findMyWay.lookup({ method: 'GET', url: '/at/12h00m', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup long static route', function () { | ||
|  |     findMyWay.lookup({ method: 'GET', url: '/abc/def/ghi/lmn/opq/rst/uvz', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup long dynamic route', function () { | ||
|  |     findMyWay.lookup({ method: 'GET', url: '/user/qwertyuiopasdfghjklzxcvbnm/static', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup static route on constrained router', function () { | ||
|  |     constrained.lookup({ method: 'GET', url: '/', headers: { host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup static versioned route', function () { | ||
|  |     constrained.lookup({ method: 'GET', url: '/versioned', headers: { 'accept-version': '1.x', host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('lookup static constrained (version & host) route', function () { | ||
|  |     constrained.lookup({ method: 'GET', url: '/versioned', headers: { 'accept-version': '2.x', host: 'fastify.io' } }, null) | ||
|  |   }) | ||
|  |   .add('find static route', function () { | ||
|  |     findMyWay.find('GET', '/', undefined) | ||
|  |   }) | ||
|  |   .add('find dynamic route', function () { | ||
|  |     findMyWay.find('GET', '/user/tomas', undefined) | ||
|  |   }) | ||
|  |   .add('find dynamic multi-parametric route', function () { | ||
|  |     findMyWay.find('GET', '/customer/john-doe', undefined) | ||
|  |   }) | ||
|  |   .add('find dynamic multi-parametric route with regex', function () { | ||
|  |     findMyWay.find('GET', '/at/12h00m', undefined) | ||
|  |   }) | ||
|  |   .add('find long static route', function () { | ||
|  |     findMyWay.find('GET', '/abc/def/ghi/lmn/opq/rst/uvz', undefined) | ||
|  |   }) | ||
|  |   .add('find long dynamic route', function () { | ||
|  |     findMyWay.find('GET', '/user/qwertyuiopasdfghjklzxcvbnm/static', undefined) | ||
|  |   }) | ||
|  |   .add('find long nested dynamic route', function () { | ||
|  |     findMyWay.find('GET', '/posts/10/comments/42/author', undefined) | ||
|  |   }) | ||
|  |   .add('find long nested dynamic route with other method', function () { | ||
|  |     findMyWay.find('POST', '/posts/10/comments', undefined) | ||
|  |   }) | ||
|  |   .add('find long nested dynamic route', function () { | ||
|  |     findMyWay.find('GET', '/posts/10/comments/42/author', undefined) | ||
|  |   }) | ||
|  |   .add('find long nested dynamic route with other method', function () { | ||
|  |     findMyWay.find('POST', '/posts/10/comments', undefined) | ||
|  |   }) | ||
|  |   .on('cycle', function (event) { | ||
|  |     console.log(String(event.target)) | ||
|  |   }) | ||
|  |   .on('complete', function () {}) | ||
|  |   .run() |