one
This commit is contained in:
368
node_modules/find-my-way/test/server.test.js
generated
vendored
Normal file
368
node_modules/find-my-way/test/server.test.js
generated
vendored
Normal file
@@ -0,0 +1,368 @@
|
||||
'use strict'
|
||||
|
||||
const { test } = require('node:test')
|
||||
const http = require('http')
|
||||
const FindMyWay = require('../')
|
||||
|
||||
test('basic router with http server', (t, done) => {
|
||||
t.plan(6)
|
||||
const findMyWay = FindMyWay()
|
||||
findMyWay.on('GET', '/test', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end(JSON.stringify({ hello: 'world' }))
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const res = await fetch(`http://localhost:${server.address().port}/test`)
|
||||
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.json(), { hello: 'world' })
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('router with params with http server', (t, done) => {
|
||||
t.plan(6)
|
||||
const findMyWay = FindMyWay()
|
||||
findMyWay.on('GET', '/test/:id', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.equal(params.id, 'hello')
|
||||
res.end(JSON.stringify({ hello: 'world' }))
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const res = await fetch(`http://localhost:${server.address().port}/test/hello`)
|
||||
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.json(), { hello: 'world' })
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('default route', (t, done) => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay({
|
||||
defaultRoute: (req, res) => {
|
||||
res.statusCode = 404
|
||||
res.end()
|
||||
}
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const res = await fetch(`http://localhost:${server.address().port}`)
|
||||
t.assert.equal(res.status, 404)
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('automatic default route', (t, done) => {
|
||||
t.plan(2)
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const res = await fetch(`http://localhost:${server.address().port}`)
|
||||
t.assert.equal(res.status, 404)
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('maps two routes when trailing slash should be trimmed', (t, done) => {
|
||||
t.plan(21)
|
||||
const findMyWay = FindMyWay({
|
||||
ignoreTrailingSlash: true
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('test')
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/othertest', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('othertest')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const baseURL = 'http://localhost:' + server.address().port
|
||||
|
||||
let res = await fetch(`${baseURL}/test/`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}/test`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}/othertest`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'othertest')
|
||||
|
||||
res = await fetch(`${baseURL}/othertest/`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'othertest')
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('does not trim trailing slash when ignoreTrailingSlash is false', (t, done) => {
|
||||
t.plan(7)
|
||||
const findMyWay = FindMyWay({
|
||||
ignoreTrailingSlash: false
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/test/', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('test')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const baseURL = 'http://localhost:' + server.address().port
|
||||
|
||||
let res = await fetch(`${baseURL}/test/`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}/test`)
|
||||
t.assert.equal(res.status, 404)
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('does not map // when ignoreTrailingSlash is true', (t, done) => {
|
||||
t.plan(7)
|
||||
const findMyWay = FindMyWay({
|
||||
ignoreTrailingSlash: false
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('test')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const baseURL = 'http://localhost:' + server.address().port
|
||||
|
||||
let res = await fetch(`${baseURL}/`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}//`)
|
||||
t.assert.equal(res.status, 404)
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('maps two routes when duplicate slashes should be trimmed', (t, done) => {
|
||||
t.plan(21)
|
||||
const findMyWay = FindMyWay({
|
||||
ignoreDuplicateSlashes: true
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '//test', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('test')
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/othertest', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('othertest')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const baseURL = 'http://localhost:' + server.address().port
|
||||
|
||||
let res = await fetch(`${baseURL}//test`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}/test`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}/othertest`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'othertest')
|
||||
|
||||
res = await fetch(`${baseURL}//othertest`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'othertest')
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('does not trim duplicate slashes when ignoreDuplicateSlashes is false', (t, done) => {
|
||||
t.plan(7)
|
||||
const findMyWay = FindMyWay({
|
||||
ignoreDuplicateSlashes: false
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '//test', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('test')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const baseURL = 'http://localhost:' + server.address().port
|
||||
|
||||
let res = await fetch(`${baseURL}//test`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}/test`)
|
||||
t.assert.equal(res.status, 404)
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('does map // when ignoreDuplicateSlashes is true', (t, done) => {
|
||||
t.plan(11)
|
||||
const findMyWay = FindMyWay({
|
||||
ignoreDuplicateSlashes: true
|
||||
})
|
||||
|
||||
findMyWay.on('GET', '/', (req, res, params) => {
|
||||
t.assert.ok(req)
|
||||
t.assert.ok(res)
|
||||
t.assert.ok(params)
|
||||
res.end('test')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
const baseURL = 'http://localhost:' + server.address().port
|
||||
|
||||
let res = await fetch(`${baseURL}/`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
res = await fetch(`${baseURL}//`)
|
||||
t.assert.equal(res.status, 200)
|
||||
t.assert.deepEqual(await res.text(), 'test')
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
test('versioned routes', (t, done) => {
|
||||
t.plan(3)
|
||||
|
||||
const findMyWay = FindMyWay()
|
||||
|
||||
findMyWay.on('GET', '/test', { constraints: { version: '1.2.3' } }, (req, res, params) => {
|
||||
res.end('ok')
|
||||
})
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
findMyWay.lookup(req, res)
|
||||
})
|
||||
|
||||
server.listen(0, async err => {
|
||||
t.assert.ifError(err)
|
||||
server.unref()
|
||||
|
||||
let res = await fetch(`http://localhost:${server.address().port}/test`, {
|
||||
headers: { 'Accept-Version': '1.2.3' }
|
||||
})
|
||||
|
||||
t.assert.equal(res.status, 200)
|
||||
|
||||
res = await fetch(`http://localhost:${server.address().port}/test`, {
|
||||
headers: { 'Accept-Version': '2.x' }
|
||||
})
|
||||
|
||||
t.assert.equal(res.status, 404)
|
||||
|
||||
done()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user