Projektstart

This commit is contained in:
2026-01-22 15:49:12 +01:00
parent 7212eb6f7a
commit 57e5f652f8
10637 changed files with 2598792 additions and 64 deletions

48
backend/node_modules/fastify/test/move.test.js generated vendored Normal file
View File

@@ -0,0 +1,48 @@
'use strict'
const t = require('tap')
const test = t.test
const sget = require('simple-get').concat
const fastify = require('..')()
test('shorthand - move', t => {
t.plan(1)
try {
fastify.route({
method: 'MOVE',
url: '*',
handler: function (req, reply) {
reply.code(201)
.header('location', req.headers.destination)
.header('body', req.body.toString())
.send()
}
})
t.pass()
} catch (e) {
t.fail()
}
})
fastify.listen({ port: 0 }, err => {
t.error(err)
t.teardown(() => { fastify.close() })
test('request - move', t => {
t.plan(4)
sget({
url: `http://localhost:${fastify.server.address().port}/test.txt`,
method: 'MOVE',
headers: {
destination: '/test2.txt',
'Content-Type': 'text/plain'
},
body: '/test3.txt'
}, (err, response) => {
t.error(err)
t.equal(response.statusCode, 201)
t.equal(response.headers.location, '/test2.txt')
t.equal(response.headers.body, '/test3.txt')
})
})
})