UNPKG

find-my-way

Version:

Crazy fast http radix based router

109 lines (76 loc) 4.72 kB
'use strict' const { test } = require('node:test') const FindMyWay = require('..') const alpha = () => { } const beta = () => { } const gamma = () => { } test('A route could support multiple host constraints while versioned', t => { t.plan(6) const findMyWay = FindMyWay() findMyWay.on('GET', '/', { constraints: { host: 'fastify.io', version: '1.1.0' } }, beta) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io', version: '2.1.0' } }, gamma) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '1.x' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '1.1.x' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '2.x' }).handler, gamma) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '2.1.x' }).handler, gamma) t.assert.ok(!findMyWay.find('GET', '/', { host: 'fastify.io', version: '3.x' })) t.assert.ok(!findMyWay.find('GET', '/', { host: 'something-else.io', version: '1.x' })) }) test('Constrained routes are matched before unconstrainted routes when the constrained route is added last', t => { t.plan(3) const findMyWay = FindMyWay() findMyWay.on('GET', '/', {}, alpha) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io' } }, beta) t.assert.equal(findMyWay.find('GET', '/', {}).handler, alpha) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'example.com' }).handler, alpha) }) test('Constrained routes are matched before unconstrainted routes when the constrained route is added first', t => { t.plan(3) const findMyWay = FindMyWay() findMyWay.on('GET', '/', { constraints: { host: 'fastify.io' } }, beta) findMyWay.on('GET', '/', {}, alpha) t.assert.equal(findMyWay.find('GET', '/', {}).handler, alpha) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'example.com' }).handler, alpha) }) test('Routes with multiple constraints are matched before routes with one constraint when the doubly-constrained route is added last', t => { t.plan(3) const findMyWay = FindMyWay() findMyWay.on('GET', '/', { constraints: { host: 'fastify.io' } }, alpha) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io', version: '1.0.0' } }, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io' }).handler, alpha) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '1.0.0' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '2.0.0' }), null) }) test('Routes with multiple constraints are matched before routes with one constraint when the doubly-constrained route is added first', t => { t.plan(3) const findMyWay = FindMyWay() findMyWay.on('GET', '/', { constraints: { host: 'fastify.io', version: '1.0.0' } }, beta) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io' } }, alpha) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io' }).handler, alpha) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '1.0.0' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '2.0.0' }), null) }) test('Routes with multiple constraints are matched before routes with one constraint before unconstrained routes', t => { t.plan(3) const findMyWay = FindMyWay() findMyWay.on('GET', '/', { constraints: { host: 'fastify.io', version: '1.0.0' } }, beta) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io' } }, alpha) findMyWay.on('GET', '/', { constraints: {} }, gamma) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '1.0.0' }).handler, beta) t.assert.equal(findMyWay.find('GET', '/', { host: 'fastify.io', version: '2.0.0' }), null) t.assert.equal(findMyWay.find('GET', '/', { host: 'example.io' }).handler, gamma) }) test('Has constraint strategy method test', t => { t.plan(6) const findMyWay = FindMyWay() t.assert.deepEqual(findMyWay.hasConstraintStrategy('version'), false) t.assert.deepEqual(findMyWay.hasConstraintStrategy('host'), false) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io' } }, () => {}) t.assert.deepEqual(findMyWay.hasConstraintStrategy('version'), false) t.assert.deepEqual(findMyWay.hasConstraintStrategy('host'), true) findMyWay.on('GET', '/', { constraints: { host: 'fastify.io', version: '1.0.0' } }, () => {}) t.assert.deepEqual(findMyWay.hasConstraintStrategy('version'), true) t.assert.deepEqual(findMyWay.hasConstraintStrategy('host'), true) })