Projektstart
This commit is contained in:
271
backend/node_modules/find-my-way/test/regex.test.js
generated
vendored
Normal file
271
backend/node_modules/find-my-way/test/regex.test.js
generated
vendored
Normal file
@@ -0,0 +1,271 @@
|
||||
'use strict'
|
||||
|
||||
const t = require('tap')
|
||||
const test = t.test
|
||||
const FindMyWay = require('../')
|
||||
|
||||
test('route with matching regex', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.fail('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)', () => {
|
||||
t.ok('regex match')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/12', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('route without matching regex', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.ok('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)', () => {
|
||||
t.fail('regex match')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/test', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('route with an extension regex 2', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: (req) => {
|
||||
t.fail(`route not matched: ${req.url}`)
|
||||
}
|
||||
})
|
||||
findMyWay.on('GET', '/test/S/:file(^\\S+).png', () => {
|
||||
t.ok('regex match')
|
||||
})
|
||||
findMyWay.on('GET', '/test/D/:file(^\\D+).png', () => {
|
||||
t.ok('regex match')
|
||||
})
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/S/foo.png', headers: {} }, null)
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/D/foo.png', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('nested route with matching regex', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.fail('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)/hello', () => {
|
||||
t.ok('regex match')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/12/hello', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('mixed nested route with matching regex', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.fail('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)/hello/:world', (req, res, params) => {
|
||||
t.equal(params.id, '12')
|
||||
t.equal(params.world, 'world')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/12/hello/world', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('mixed nested route with double matching regex', t => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.fail('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)/hello/:world(^\\d+$)', (req, res, params) => {
|
||||
t.equal(params.id, '12')
|
||||
t.equal(params.world, '15')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/12/hello/15', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('mixed nested route without double matching regex', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.ok('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)/hello/:world(^\\d+$)', (req, res, params) => {
|
||||
t.fail('route mathed')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/12/hello/test', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('route with an extension regex', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.fail('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:file(^\\d+).png', () => {
|
||||
t.ok('regex match')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/12.png', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('route with an extension regex - no match', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.ok('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:file(^\\d+).png', () => {
|
||||
t.fail('regex match')
|
||||
})
|
||||
|
||||
findMyWay.lookup({ method: 'GET', url: '/test/aa.png', headers: {} }, null)
|
||||
})
|
||||
|
||||
test('safe decodeURIComponent', t => {
|
||||
t.plan(1)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.ok('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/:id(^\\d+$)', () => {
|
||||
t.fail('we should not be here')
|
||||
})
|
||||
|
||||
t.same(
|
||||
findMyWay.find('GET', '/test/hel%"Flo', {}),
|
||||
null
|
||||
)
|
||||
})
|
||||
|
||||
test('Should check if a regex is safe to use', t => {
|
||||
t.plan(13)
|
||||
|
||||
const noop = () => {}
|
||||
|
||||
// https://github.com/substack/safe-regex/blob/master/test/regex.js
|
||||
const good = [
|
||||
/\bOakland\b/,
|
||||
/\b(Oakland|San Francisco)\b/i,
|
||||
/^\d+1337\d+$/i,
|
||||
/^\d+(1337|404)\d+$/i,
|
||||
/^\d+(1337|404)*\d+$/i,
|
||||
RegExp(Array(26).join('a?') + Array(26).join('a'))
|
||||
]
|
||||
|
||||
const bad = [
|
||||
/^(a?){25}(a){25}$/,
|
||||
RegExp(Array(27).join('a?') + Array(27).join('a')),
|
||||
/(x+x+)+y/,
|
||||
/foo|(x+x+)+y/,
|
||||
/(a+){10}y/,
|
||||
/(a+){2}y/,
|
||||
/(.*){1,32000}[bc]/
|
||||
]
|
||||
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
good.forEach(regex => {
|
||||
try {
|
||||
findMyWay.on('GET', `/test/:id(${regex.toString()})`, noop)
|
||||
t.pass('ok')
|
||||
findMyWay.off('GET', `/test/:id(${regex.toString()})`)
|
||||
} catch (err) {
|
||||
t.fail(err)
|
||||
}
|
||||
})
|
||||
|
||||
bad.forEach(regex => {
|
||||
try {
|
||||
findMyWay.on('GET', `/test/:id(${regex.toString()})`, noop)
|
||||
t.fail('should throw')
|
||||
} catch (err) {
|
||||
t.ok(err)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
test('Disable safe regex check', t => {
|
||||
t.plan(13)
|
||||
|
||||
const noop = () => {}
|
||||
|
||||
// https://github.com/substack/safe-regex/blob/master/test/regex.js
|
||||
const good = [
|
||||
/\bOakland\b/,
|
||||
/\b(Oakland|San Francisco)\b/i,
|
||||
/^\d+1337\d+$/i,
|
||||
/^\d+(1337|404)\d+$/i,
|
||||
/^\d+(1337|404)*\d+$/i,
|
||||
RegExp(Array(26).join('a?') + Array(26).join('a'))
|
||||
]
|
||||
|
||||
const bad = [
|
||||
/^(a?){25}(a){25}$/,
|
||||
RegExp(Array(27).join('a?') + Array(27).join('a')),
|
||||
/(x+x+)+y/,
|
||||
/foo|(x+x+)+y/,
|
||||
/(a+){10}y/,
|
||||
/(a+){2}y/,
|
||||
/(.*){1,32000}[bc]/
|
||||
]
|
||||
|
||||
const findMyWay = FindMyWay({ allowUnsafeRegex: true })
|
||||
|
||||
good.forEach(regex => {
|
||||
try {
|
||||
findMyWay.on('GET', `/test/:id(${regex.toString()})`, noop)
|
||||
t.pass('ok')
|
||||
findMyWay.off('GET', `/test/:id(${regex.toString()})`)
|
||||
} catch (err) {
|
||||
t.fail(err)
|
||||
}
|
||||
})
|
||||
|
||||
bad.forEach(regex => {
|
||||
try {
|
||||
findMyWay.on('GET', `/test/:id(${regex.toString()})`, noop)
|
||||
t.pass('ok')
|
||||
findMyWay.off('GET', `/test/:id(${regex.toString()})`)
|
||||
} catch (err) {
|
||||
t.fail(err)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
test('prevent back-tracking', (t) => {
|
||||
t.plan(0)
|
||||
t.setTimeout(20)
|
||||
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: () => {
|
||||
t.fail('route not matched')
|
||||
}
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/:foo-:bar-', (req, res, params) => {})
|
||||
findMyWay.find('GET', '/' + '-'.repeat(16000) + 'a', { host: 'fastify.io' })
|
||||
})
|
||||
Reference in New Issue
Block a user