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.
39 lines
910 B
39 lines
910 B
'use strict'
|
|
|
|
const t = require('tap')
|
|
const test = t.test
|
|
const FindMyWay = require('../')
|
|
|
|
test('should sanitize the url - query', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
findMyWay.on('GET', '/test', (req, res, params) => {
|
|
t.ok('inside the handler')
|
|
})
|
|
|
|
findMyWay.lookup({ method: 'GET', url: '/test?hello=world', headers: {} }, null)
|
|
})
|
|
|
|
test('should sanitize the url - hash', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
findMyWay.on('GET', '/test', (req, res, params) => {
|
|
t.ok('inside the handler')
|
|
})
|
|
|
|
findMyWay.lookup({ method: 'GET', url: '/test#hello', headers: {} }, null)
|
|
})
|
|
|
|
test('handles path and query separated by ;', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
findMyWay.on('GET', '/test', (req, res, params) => {
|
|
t.ok('inside the handler')
|
|
})
|
|
|
|
findMyWay.lookup({ method: 'GET', url: '/test;jsessionid=123456', headers: {} }, null)
|
|
})
|