Sindbad~EG File Manager

Current Path : /home/infinitibizsol/irfarms.infinitibizsol.com/node_modules/find-my-way/test/
Upload File :
Current File : /home/infinitibizsol/irfarms.infinitibizsol.com/node_modules/find-my-way/test/issue-67.test.js

'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: {} })
})

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists