wzp
2021-05-13 7d694a9113118daec5be7ac224dab46a3b20f106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
'use strict'
 
const t = require('tap')
const test = t.test
const FindMyWay = require('../')
 
test('If the prefixLen is higher than the pathLen we should not save the wildcard child', t => {
  t.plan(3)
  const findMyWay = FindMyWay({
    defaultRoute: (req, res) => {
      t.fail('Should not be defaultRoute')
    }
  })
 
  findMyWay.get('/static/*', () => {})
 
  t.deepEqual(findMyWay.find('GET', '/static/').params, { '*': '' })
  t.deepEqual(findMyWay.find('GET', '/static/hello').params, { '*': 'hello' })
  t.deepEqual(findMyWay.find('GET', '/static'), null)
})
 
test('If the prefixLen is higher than the pathLen we should not save the wildcard child (mixed routes)', t => {
  t.plan(3)
  const findMyWay = FindMyWay({
    defaultRoute: (req, res) => {
      t.fail('Should not be defaultRoute')
    }
  })
 
  findMyWay.get('/static/*', () => {})
  findMyWay.get('/simple', () => {})
  findMyWay.get('/simple/:bar', () => {})
  findMyWay.get('/hello', () => {})
 
  t.deepEqual(findMyWay.find('GET', '/static/').params, { '*': '' })
  t.deepEqual(findMyWay.find('GET', '/static/hello').params, { '*': 'hello' })
  t.deepEqual(findMyWay.find('GET', '/static'), null)
})
 
test('If the prefixLen is higher than the pathLen we should not save the wildcard child (with a root wildcard)', t => {
  t.plan(3)
  const findMyWay = FindMyWay({
    defaultRoute: (req, res) => {
      t.fail('Should not be defaultRoute')
    }
  })
 
  findMyWay.get('*', () => {})
  findMyWay.get('/static/*', () => {})
  findMyWay.get('/simple', () => {})
  findMyWay.get('/simple/:bar', () => {})
  findMyWay.get('/hello', () => {})
 
  t.deepEqual(findMyWay.find('GET', '/static/').params, { '*': '' })
  t.deepEqual(findMyWay.find('GET', '/static/hello').params, { '*': 'hello' })
  t.deepEqual(findMyWay.find('GET', '/static').params, { '*': '/static' })
})
 
test('If the prefixLen is higher than the pathLen we should not save the wildcard child (404)', t => {
  t.plan(4)
  const findMyWay = FindMyWay({
    defaultRoute: (req, res) => {
      t.fail('Should not be defaultRoute')
    }
  })
 
  findMyWay.get('/static/*', () => {})
  findMyWay.get('/simple', () => {})
  findMyWay.get('/simple/:bar', () => {})
  findMyWay.get('/hello', () => {})
 
  t.deepEqual(findMyWay.find('GET', '/stati'), null)
  t.deepEqual(findMyWay.find('GET', '/staticc'), null)
  t.deepEqual(findMyWay.find('GET', '/stati/hello'), null)
  t.deepEqual(findMyWay.find('GET', '/staticc/hello'), null)
})