144 lines
4.7 KiB
JavaScript
144 lines
4.7 KiB
JavaScript
'use strict'
|
|
|
|
const { test } = require('node:test')
|
|
const fastify = require('../../fastify')()
|
|
fastify.addHttpMethod('MKCALENDAR', { hasBody: true })
|
|
|
|
const bodySample = `<?xml version="1.0" encoding="UTF-8"?>
|
|
<B:mkcalendar xmlns:B="urn:ietf:params:xml:ns:caldav">
|
|
<A:set xmlns:A="DAV:">
|
|
<A:prop>
|
|
<B:calendar-free-busy-set>
|
|
<NO/>
|
|
</B:calendar-free-busy-set>
|
|
<E:calendar-order xmlns:E="http://apple.com/ns/ical/">0</E:calendar-order>
|
|
<B:supported-calendar-component-set>
|
|
<B:comp name="VEVENT"/>
|
|
</B:supported-calendar-component-set>
|
|
<A:displayname>CALENDAR_NAME</A:displayname>
|
|
<B:calendar-timezone>BEGIN:VCALENDAR
|
|
VERSION:2.0
|
|
</B:calendar-timezone>
|
|
</A:prop>
|
|
</A:set>
|
|
</B:mkcalendar>
|
|
`
|
|
|
|
test('can be created - mkcalendar', (t) => {
|
|
t.plan(1)
|
|
try {
|
|
fastify.route({
|
|
method: 'MKCALENDAR',
|
|
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('mkcalendar test', async t => {
|
|
const fastifyServer = await fastify.listen({ port: 0 })
|
|
t.after(() => {
|
|
fastify.close()
|
|
})
|
|
|
|
await t.test('request - mkcalendar', async t => {
|
|
t.plan(2)
|
|
const result = await fetch(`${fastifyServer}/`, {
|
|
method: 'MKCALENDAR'
|
|
})
|
|
t.assert.strictEqual(result.status, 207)
|
|
const body = await result.text()
|
|
t.assert.strictEqual(result.headers.get('content-length'), '' + body.length)
|
|
})
|
|
|
|
await t.test('request with other path - mkcalendar', async t => {
|
|
t.plan(2)
|
|
const result = await fetch(`${fastifyServer}/test`, {
|
|
method: 'MKCALENDAR'
|
|
})
|
|
t.assert.strictEqual(result.status, 207)
|
|
const body = await result.text()
|
|
t.assert.strictEqual(result.headers.get('content-length'), '' + body.length)
|
|
})
|
|
|
|
// 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 - mkcalendar', async t => {
|
|
t.plan(3)
|
|
const result = await fetch(`${fastifyServer}/test`, {
|
|
method: 'MKCALENDAR',
|
|
headers: { 'content-type': 'text/plain' },
|
|
body: bodySample
|
|
})
|
|
t.assert.ok(result.ok)
|
|
t.assert.strictEqual(result.status, 207)
|
|
const body = await result.text()
|
|
t.assert.strictEqual(result.headers.get('content-length'), '' + body.length)
|
|
})
|
|
|
|
await t.test('request with body and no content type (415 error) - mkcalendar', async t => {
|
|
t.plan(3)
|
|
const result = await fetch(`${fastifyServer}/test`, {
|
|
method: 'MKCALENDAR',
|
|
body: bodySample,
|
|
headers: { 'content-type': undefined }
|
|
})
|
|
t.assert.ok(!result.ok)
|
|
t.assert.strictEqual(result.status, 415)
|
|
const body = await result.text()
|
|
t.assert.strictEqual(result.headers.get('content-length'), '' + body.length)
|
|
})
|
|
|
|
await t.test('request without body - mkcalendar', async t => {
|
|
t.plan(3)
|
|
const result = await fetch(`${fastifyServer}/test`, {
|
|
method: 'MKCALENDAR'
|
|
})
|
|
t.assert.ok(result.ok)
|
|
t.assert.strictEqual(result.status, 207)
|
|
const body = await result.text()
|
|
t.assert.strictEqual(result.headers.get('content-length'), '' + body.length)
|
|
})
|
|
})
|