First commit
This commit is contained in:
51
node_modules/find-my-way/test/issue-67.test.js
generated
vendored
Normal file
51
node_modules/find-my-way/test/issue-67.test.js
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
'use strict'
|
||||
|
||||
const t = require('tap')
|
||||
const test = t.test
|
||||
const FindMyWay = require('../')
|
||||
const noop = () => {}
|
||||
|
||||
test('static routes', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
findMyWay.on('GET', '/b/', noop)
|
||||
findMyWay.on('GET', '/b/bulk', noop)
|
||||
findMyWay.on('GET', '/b/ulk', noop)
|
||||
|
||||
t.equal(findMyWay.find('GET', '/bulk'), null)
|
||||
})
|
||||
|
||||
test('parametric routes', t => {
|
||||
t.plan(5)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
function foo () { }
|
||||
|
||||
findMyWay.on('GET', '/foo/:fooParam', foo)
|
||||
findMyWay.on('GET', '/foo/bar/:barParam', noop)
|
||||
findMyWay.on('GET', '/foo/search', noop)
|
||||
findMyWay.on('GET', '/foo/submit', noop)
|
||||
|
||||
t.equal(findMyWay.find('GET', '/foo/awesome-parameter').handler, foo)
|
||||
t.equal(findMyWay.find('GET', '/foo/b-first-character').handler, foo)
|
||||
t.equal(findMyWay.find('GET', '/foo/s-first-character').handler, foo)
|
||||
t.equal(findMyWay.find('GET', '/foo/se-prefix').handler, foo)
|
||||
t.equal(findMyWay.find('GET', '/foo/sx-prefix').handler, foo)
|
||||
})
|
||||
|
||||
test('parametric with common prefix', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
findMyWay.on('GET', '/test', noop)
|
||||
findMyWay.on('GET', '/:test', (req, res, params) => {
|
||||
t.same(
|
||||
{ test: 'text' },
|
||||
params
|
||||
)
|
||||
})
|
||||
findMyWay.on('GET', '/text/hello', noop)
|
||||
|
||||
findMyWay.lookup({ url: '/text', method: 'GET', headers: {} })
|
||||
})
|
||||
Reference in New Issue
Block a user