Spaces:
Runtime error
Runtime error
| const { test } = require('node:test') | |
| const sget = require('simple-get').concat | |
| const fastify = require('../../')() | |
| fastify.addHttpMethod('PROPFIND', { hasBody: true }) | |
| const bodySample = `<?xml version="1.0" encoding="utf-8" ?> | |
| <D:propfind xmlns:D="DAV:"> | |
| <D:prop xmlns:R="http://ns.example.com/boxschema/"> | |
| <R:bigbox/> <R:author/> <R:DingALing/> <R:Random/> | |
| </D:prop> | |
| </D:propfind> | |
| ` | |
| test('can be created - propfind', t => { | |
| t.plan(1) | |
| try { | |
| fastify.route({ | |
| method: 'PROPFIND', | |
| url: '*', | |
| handler: function (req, reply) { | |
| return reply.code(207) | |
| .send(`<?xml version="1.0" encoding="utf-8"?> | |
| <D:multistatus xmlns:D="DAV:"> | |
| <D:response xmlns:lp1="DAV:"> | |
| <D:href>/</D:href> | |
| <D:propstat> | |
| <D:prop> | |
| <lp1:resourcetype> | |
| <D:collection/> | |
| </lp1:resourcetype> | |
| <lp1:creationdate>2022-04-13T12:35:30Z</lp1:creationdate> | |
| <lp1:getlastmodified>Wed, 13 Apr 2022 12:35:30 GMT</lp1:getlastmodified> | |
| <lp1:getetag>"e0-5dc8869b53ef1"</lp1:getetag> | |
| <D:supportedlock> | |
| <D:lockentry> | |
| <D:lockscope> | |
| <D:exclusive/> | |
| </D:lockscope> | |
| <D:locktype> | |
| <D:write/> | |
| </D:locktype> | |
| </D:lockentry> | |
| <D:lockentry> | |
| <D:lockscope> | |
| <D:shared/> | |
| </D:lockscope> | |
| <D:locktype> | |
| <D:write/> | |
| </D:locktype> | |
| </D:lockentry> | |
| </D:supportedlock> | |
| <D:lockdiscovery/> | |
| <D:getcontenttype>httpd/unix-directory</D:getcontenttype> | |
| </D:prop> | |
| <D:status>HTTP/1.1 200 OK</D:status> | |
| </D:propstat> | |
| </D:response> | |
| </D:multistatus>` | |
| ) | |
| } | |
| }) | |
| t.assert.ok(true) | |
| } catch (e) { | |
| t.assert.fail() | |
| } | |
| }) | |
| test('propfind test', async t => { | |
| await fastify.listen({ port: 0 }) | |
| t.after(() => { | |
| fastify.close() | |
| }) | |
| await t.test('request - propfind', (t, done) => { | |
| t.plan(3) | |
| sget({ | |
| url: `http://localhost:${fastify.server.address().port}/`, | |
| method: 'PROPFIND' | |
| }, (err, response, body) => { | |
| t.assert.ifError(err) | |
| t.assert.strictEqual(response.statusCode, 207) | |
| t.assert.strictEqual(response.headers['content-length'], '' + body.length) | |
| done() | |
| }) | |
| }) | |
| await t.test('request with other path - propfind', (t, done) => { | |
| t.plan(3) | |
| sget({ | |
| url: `http://localhost:${fastify.server.address().port}/test`, | |
| method: 'PROPFIND' | |
| }, (err, response, body) => { | |
| t.assert.ifError(err) | |
| t.assert.strictEqual(response.statusCode, 207) | |
| t.assert.strictEqual(response.headers['content-length'], '' + body.length) | |
| done() | |
| }) | |
| }) | |
| // the body test uses a text/plain content type instead of application/xml because it requires | |
| // a specific content type parser | |
| await t.test('request with body - propfind', (t, done) => { | |
| t.plan(3) | |
| sget({ | |
| url: `http://localhost:${fastify.server.address().port}/test`, | |
| headers: { 'content-type': 'text/plain' }, | |
| body: bodySample, | |
| method: 'PROPFIND' | |
| }, (err, response, body) => { | |
| t.assert.ifError(err) | |
| t.assert.strictEqual(response.statusCode, 207) | |
| t.assert.strictEqual(response.headers['content-length'], '' + body.length) | |
| done() | |
| }) | |
| }) | |
| await t.test('request with body and no content type (415 error) - propfind', (t, done) => { | |
| t.plan(3) | |
| sget({ | |
| url: `http://localhost:${fastify.server.address().port}/test`, | |
| body: bodySample, | |
| method: 'PROPFIND' | |
| }, (err, response, body) => { | |
| t.assert.ifError(err) | |
| t.assert.strictEqual(response.statusCode, 415) | |
| t.assert.strictEqual(response.headers['content-length'], '' + body.length) | |
| done() | |
| }) | |
| }) | |
| await t.test('request without body - propfind', (t, done) => { | |
| t.plan(3) | |
| sget({ | |
| url: `http://localhost:${fastify.server.address().port}/test`, | |
| method: 'PROPFIND' | |
| }, (err, response, body) => { | |
| t.assert.ifError(err) | |
| t.assert.strictEqual(response.statusCode, 207) | |
| t.assert.strictEqual(response.headers['content-length'], '' + body.length) | |
| done() | |
| }) | |
| }) | |
| }) | |