download
raw
1.59 kB
'use strict'
const { test } = require('node: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.assert.deepEqual(query, { hello: 'world' })
t.assert.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.assert.deepEqual(query, { hello: '' })
t.assert.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.assert.deepEqual(query, { jsessionid: '123456' })
t.assert.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.assert.deepEqual(query, { foo: 'bar' })
t.assert.ok('inside the handler')
})
findMyWay.lookup({ method: 'GET', url: '/test;jsessionid=123456?foo=bar', headers: {} }, null)
})

Xet Storage Details

Size:
1.59 kB
·
Xet hash:
5e21dc2dfa27049fb87d2f78a0cc8be8a15cd2df86f4dc3c256ca40206d6714b

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.