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.
		
		
		
		
		
			
		
			
				
					
					
						
							52 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
	
	
							52 lines
						
					
					
						
							1.3 KiB
						
					
					
				'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: {} })
 | 
						|
})
 |