Projektstart
This commit is contained in:
55
backend/node_modules/find-my-way/test/querystring.test.js
generated
vendored
Normal file
55
backend/node_modules/find-my-way/test/querystring.test.js
generated
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
'use strict'
|
||||
|
||||
const t = require('tap')
|
||||
const test = t.test
|
||||
const FindMyWay = require('../')
|
||||
|
||||
test('should sanitize the url - query', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
findMyWay.on('GET', '/test', (req, res, params, store, query) => {
|
||||
t.same(query, { hello: 'world' })
|
||||
t.ok('inside the handler')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test?hello=world', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('should sanitize the url - hash', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
findMyWay.on('GET', '/test', (req, res, params, store, query) => {
|
||||
t.same(query, { hello: '' })
|
||||
t.ok('inside the handler')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test#hello', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('handles path and query separated by ; with useSemicolonDelimiter enabled', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay({
|
||||
useSemicolonDelimiter: true
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test', (req, res, params, store, query) => {
|
||||
t.same(query, { jsessionid: '123456' })
|
||||
t.ok('inside the handler')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test;jsessionid=123456', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('handles path and query separated by ? using ; in the path', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
findMyWay.on('GET', '/test;jsessionid=123456', (req, res, params, store, query) => {
|
||||
t.same(query, { foo: 'bar' })
|
||||
t.ok('inside the handler')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test;jsessionid=123456?foo=bar', headers: {} }, null)
|
||||
})
|
||||
Reference in New Issue
Block a user