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
'use strict'
 
const t = require('tap')
const test = t.test
const FindMyWay = require('../')
const noop = () => {}
 
const customVersioning = {
  // storage factory
  storage: function () {
    let versions = {}
    return {
      get: (version) => { return versions[version] || null },
      set: (version, store) => { versions[version] = store },
      del: (version) => { delete versions[version] },
      empty: () => { versions = {} }
    }
  },
  deriveVersion: (req, ctx) => {
    return req.headers['accept']
  }
}
 
test('A route could support multiple versions (find) / 1', t => {
  t.plan(5)
 
  const findMyWay = FindMyWay({ versioning: customVersioning })
 
  findMyWay.on('GET', '/', { version: 'application/vnd.example.api+json;version=2' }, noop)
  findMyWay.on('GET', '/', { version: 'application/vnd.example.api+json;version=3' }, noop)
 
  t.ok(findMyWay.find('GET', '/', 'application/vnd.example.api+json;version=2'))
  t.ok(findMyWay.find('GET', '/', 'application/vnd.example.api+json;version=3'))
  t.notOk(findMyWay.find('GET', '/', 'application/vnd.example.api+json;version=4'))
  t.notOk(findMyWay.find('GET', '/', 'application/vnd.example.api+json;version=5'))
  t.notOk(findMyWay.find('GET', '/', 'application/vnd.example.api+json;version=6'))
})