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.
		
		
		
		
		
			
		
			
				
					
					
						
							115 lines
						
					
					
						
							3.2 KiB
						
					
					
				
			
		
		
	
	
							115 lines
						
					
					
						
							3.2 KiB
						
					
					
				| 'use strict'
 | |
| 
 | |
| const net = require('net')
 | |
| const { test } = require('tap')
 | |
| const semver = require('semver')
 | |
| const Fastify = require('../fastify')
 | |
| 
 | |
| const skip = semver.lt(process.versions.node, '16.10.0')
 | |
| 
 | |
| test('maxRequestsPerSocket on node version >= 16.10.0', { skip }, t => {
 | |
|   t.plan(8)
 | |
| 
 | |
|   const fastify = Fastify({ maxRequestsPerSocket: 2 })
 | |
|   fastify.get('/', (req, reply) => {
 | |
|     reply.send({ hello: 'world' })
 | |
|   })
 | |
| 
 | |
|   t.teardown(fastify.close.bind(fastify))
 | |
| 
 | |
|   fastify.listen(0, function (err) {
 | |
|     t.error(err)
 | |
| 
 | |
|     const port = fastify.server.address().port
 | |
|     const client = net.createConnection({ port }, () => {
 | |
|       client.write('GET / HTTP/1.1\r\n\r\n')
 | |
| 
 | |
|       client.once('data', data => {
 | |
|         t.match(data.toString(), /Connection:\s*keep-alive/i)
 | |
|         t.match(data.toString(), /Keep-Alive:\s*timeout=5/i)
 | |
|         t.match(data.toString(), /200 OK/i)
 | |
| 
 | |
|         client.write('GET / HTTP/1.1\r\n\r\n')
 | |
| 
 | |
|         client.once('data', data => {
 | |
|           t.match(data.toString(), /Connection:\s*close/i)
 | |
|           t.match(data.toString(), /200 OK/i)
 | |
| 
 | |
|           client.write('GET / HTTP/1.1\r\n\r\n')
 | |
| 
 | |
|           client.once('data', data => {
 | |
|             t.match(data.toString(), /Connection:\s*close/i)
 | |
|             t.match(data.toString(), /503 Service Unavailable/i)
 | |
|           })
 | |
|         })
 | |
|       })
 | |
|     })
 | |
|   })
 | |
| })
 | |
| 
 | |
| test('maxRequestsPerSocket zero should behave same as null', { skip }, t => {
 | |
|   t.plan(10)
 | |
| 
 | |
|   const fastify = Fastify({ maxRequestsPerSocket: 0 })
 | |
|   fastify.get('/', (req, reply) => {
 | |
|     reply.send({ hello: 'world' })
 | |
|   })
 | |
| 
 | |
|   t.teardown(fastify.close.bind(fastify))
 | |
| 
 | |
|   fastify.listen(0, function (err) {
 | |
|     t.error(err)
 | |
| 
 | |
|     const port = fastify.server.address().port
 | |
|     const client = net.createConnection({ port }, () => {
 | |
|       client.write('GET / HTTP/1.1\r\n\r\n')
 | |
| 
 | |
|       client.once('data', data => {
 | |
|         t.match(data.toString(), /Connection:\s*keep-alive/i)
 | |
|         t.match(data.toString(), /Keep-Alive:\s*timeout=5/i)
 | |
|         t.match(data.toString(), /200 OK/i)
 | |
| 
 | |
|         client.write('GET / HTTP/1.1\r\n\r\n')
 | |
| 
 | |
|         client.once('data', data => {
 | |
|           t.match(data.toString(), /Connection:\s*keep-alive/i)
 | |
|           t.match(data.toString(), /Keep-Alive:\s*timeout=5/i)
 | |
|           t.match(data.toString(), /200 OK/i)
 | |
| 
 | |
|           client.write('GET / HTTP/1.1\r\n\r\n')
 | |
| 
 | |
|           client.once('data', data => {
 | |
|             t.match(data.toString(), /Connection:\s*keep-alive/i)
 | |
|             t.match(data.toString(), /Keep-Alive:\s*timeout=5/i)
 | |
|             t.match(data.toString(), /200 OK/i)
 | |
|           })
 | |
|         })
 | |
|       })
 | |
|     })
 | |
|   })
 | |
| })
 | |
| 
 | |
| test('maxRequestsPerSocket should be set', async (t) => {
 | |
|   t.plan(1)
 | |
| 
 | |
|   const initialConfig = Fastify({ maxRequestsPerSocket: 5 }).initialConfig
 | |
|   t.same(initialConfig.maxRequestsPerSocket, 5)
 | |
| })
 | |
| 
 | |
| test('maxRequestsPerSocket should 0', async (t) => {
 | |
|   t.plan(1)
 | |
| 
 | |
|   const initialConfig = Fastify().initialConfig
 | |
|   t.same(initialConfig.maxRequestsPerSocket, 0)
 | |
| })
 | |
| 
 | |
| test('requestTimeout passed to server', t => {
 | |
|   t.plan(2)
 | |
| 
 | |
|   const httpServer = Fastify({ maxRequestsPerSocket: 5 }).server
 | |
|   t.equal(httpServer.maxRequestsPerSocket, 5)
 | |
| 
 | |
|   const httpsServer = Fastify({ maxRequestsPerSocket: 5, https: true }).server
 | |
|   t.equal(httpsServer.maxRequestsPerSocket, 5)
 | |
| })
 |