1
0
Fork 0
peertube/server/tests/api/check-params/contact-form.ts

81 lines
3.2 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-01-09 14:14:29 +00:00
import 'mocha'
2021-07-06 13:53:25 +00:00
import { HttpStatusCode } from '@shared/core-utils'
import { cleanupTests, flushAndRunServer, killallServers, MockSmtpServer, reRunServer, ServerInfo } from '@shared/extra-utils'
import { ContactFormCommand } from '@shared/extra-utils/server'
2019-01-09 14:14:29 +00:00
describe('Test contact form API validators', function () {
let server: ServerInfo
const emails: object[] = []
const defaultBody = {
fromName: 'super name',
fromEmail: 'toto@example.com',
subject: 'my subject',
2019-01-09 14:14:29 +00:00
body: 'Hello, how are you?'
}
2019-04-24 13:10:37 +00:00
let emailPort: number
2021-07-06 13:53:25 +00:00
let command: ContactFormCommand
2019-01-09 14:14:29 +00:00
// ---------------------------------------------------------------
before(async function () {
this.timeout(60000)
2019-04-24 13:10:37 +00:00
emailPort = await MockSmtpServer.Instance.collectEmails(emails)
2019-01-09 14:14:29 +00:00
// Email is disabled
2019-04-24 08:53:40 +00:00
server = await flushAndRunServer(1)
2021-07-06 13:53:25 +00:00
command = server.contactFormCommand
2019-01-09 14:14:29 +00:00
})
it('Should not accept a contact form if emails are disabled', async function () {
2021-07-06 13:53:25 +00:00
await command.send({ ...defaultBody, expectedStatus: HttpStatusCode.CONFLICT_409 })
2019-01-09 14:14:29 +00:00
})
it('Should not accept a contact form if it is disabled in the configuration', async function () {
this.timeout(10000)
2019-01-09 14:14:29 +00:00
killallServers([ server ])
// Contact form is disabled
2019-04-24 13:10:37 +00:00
await reRunServer(server, { smtp: { hostname: 'localhost', port: emailPort }, contact_form: { enabled: false } })
2021-07-06 13:53:25 +00:00
await command.send({ ...defaultBody, expectedStatus: HttpStatusCode.CONFLICT_409 })
2019-01-09 14:14:29 +00:00
})
it('Should not accept a contact form if from email is invalid', async function () {
this.timeout(10000)
2019-01-09 14:14:29 +00:00
killallServers([ server ])
// Email & contact form enabled
2019-04-24 13:10:37 +00:00
await reRunServer(server, { smtp: { hostname: 'localhost', port: emailPort } })
2019-01-09 14:14:29 +00:00
2021-07-06 13:53:25 +00:00
await command.send({ ...defaultBody, fromEmail: 'badEmail', expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
await command.send({ ...defaultBody, fromEmail: 'badEmail@', expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
await command.send({ ...defaultBody, fromEmail: undefined, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2019-01-09 14:14:29 +00:00
})
it('Should not accept a contact form if from name is invalid', async function () {
2021-07-06 13:53:25 +00:00
await command.send({ ...defaultBody, fromName: 'name'.repeat(100), expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
await command.send({ ...defaultBody, fromName: '', expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
await command.send({ ...defaultBody, fromName: undefined, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2019-01-09 14:14:29 +00:00
})
it('Should not accept a contact form if body is invalid', async function () {
2021-07-06 13:53:25 +00:00
await command.send({ ...defaultBody, body: 'body'.repeat(5000), expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
await command.send({ ...defaultBody, body: 'a', expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
await command.send({ ...defaultBody, body: undefined, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2019-01-09 14:14:29 +00:00
})
it('Should accept a contact form with the correct parameters', async function () {
2021-07-06 13:53:25 +00:00
await command.send({ ...defaultBody })
2019-01-09 14:14:29 +00:00
})
2019-04-24 13:10:37 +00:00
after(async function () {
2019-01-09 14:14:29 +00:00
MockSmtpServer.Instance.kill()
2019-04-24 13:10:37 +00:00
2019-04-24 15:19:00 +00:00
await cleanupTests([ server ])
2019-01-09 14:14:29 +00:00
})
})