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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
'use strict'
 
const t = require('tap')
const test = t.test
const FindMyWay = require('../')
const noop = () => {}
 
test('single-character prefix', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/b/', noop)
  findMyWay.on('GET', '/b/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('multi-character prefix', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bu/', noop)
  findMyWay.on('GET', '/bu/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('static / 1', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/', noop)
  findMyWay.on('GET', '/bb/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('static / 2', t => {
  t.plan(2)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/ff/', noop)
  findMyWay.on('GET', '/bb/ff/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
  t.equal(findMyWay.find('GET', '/ff/bulk'), null)
})
 
test('static / 3', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/ff/', noop)
  findMyWay.on('GET', '/bb/ff/bulk', noop)
  findMyWay.on('GET', '/bb/ff/gg/bulk', noop)
  findMyWay.on('GET', '/bb/ff/bulk/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('with parameter / 1', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/:foo/', noop)
  findMyWay.on('GET', '/:foo/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('with parameter / 2', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/', noop)
  findMyWay.on('GET', '/bb/:foo', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('with parameter / 3', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/ff/', noop)
  findMyWay.on('GET', '/bb/ff/:foo', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('with parameter / 4', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/:foo/', noop)
  findMyWay.on('GET', '/bb/:foo/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})
 
test('with parameter / 5', t => {
  t.plan(2)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/:foo/aa/', noop)
  findMyWay.on('GET', '/bb/:foo/aa/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
  t.equal(findMyWay.find('GET', '/bb/foo/bulk'), null)
})
 
test('with parameter / 6', t => {
  t.plan(3)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/static/:parametric/static/:parametric', noop)
  findMyWay.on('GET', '/static/:parametric/static/:parametric/bulk', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
  t.equal(findMyWay.find('GET', '/static/foo/bulk'), null)
  t.notEqual(findMyWay.find('GET', '/static/foo/static/bulk'), null)
})
 
test('wildcard / 1', t => {
  t.plan(1)
  const findMyWay = FindMyWay()
 
  findMyWay.on('GET', '/bb/', noop)
  findMyWay.on('GET', '/bb/*', noop)
 
  t.equal(findMyWay.find('GET', '/bulk'), null)
})