]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/contact-form.ts
Merge branch 'release/2.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / contact-form.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
a4101923
C
2
3import 'mocha'
4
a1587156 5import { cleanupTests, flushAndRunServer, immutableAssign, killallServers, reRunServer, ServerInfo } from '../../../../shared/extra-utils'
94565d52
C
6import { sendContactForm } from '../../../../shared/extra-utils/server/contact-form'
7import { MockSmtpServer } from '../../../../shared/extra-utils/miscs/email'
a4101923
C
8
9describe('Test contact form API validators', function () {
10 let server: ServerInfo
11 const emails: object[] = []
12 const defaultBody = {
13 fromName: 'super name',
14 fromEmail: 'toto@example.com',
4e9fa5b7 15 subject: 'my subject',
a4101923
C
16 body: 'Hello, how are you?'
17 }
7c3b7976 18 let emailPort: number
a4101923
C
19
20 // ---------------------------------------------------------------
21
22 before(async function () {
23 this.timeout(60000)
24
7c3b7976 25 emailPort = await MockSmtpServer.Instance.collectEmails(emails)
a4101923
C
26
27 // Email is disabled
210feb6c 28 server = await flushAndRunServer(1)
a4101923
C
29 })
30
31 it('Should not accept a contact form if emails are disabled', async function () {
32 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 409 }))
33 })
34
35 it('Should not accept a contact form if it is disabled in the configuration', async function () {
848f499d
C
36 this.timeout(10000)
37
a4101923
C
38 killallServers([ server ])
39
40 // Contact form is disabled
7c3b7976 41 await reRunServer(server, { smtp: { hostname: 'localhost', port: emailPort }, contact_form: { enabled: false } })
a4101923
C
42 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 409 }))
43 })
44
45 it('Should not accept a contact form if from email is invalid', async function () {
848f499d
C
46 this.timeout(10000)
47
a4101923
C
48 killallServers([ server ])
49
50 // Email & contact form enabled
7c3b7976 51 await reRunServer(server, { smtp: { hostname: 'localhost', port: emailPort } })
a4101923
C
52
53 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, fromEmail: 'badEmail' }))
54 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, fromEmail: 'badEmail@' }))
55 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, fromEmail: undefined }))
56 })
57
58 it('Should not accept a contact form if from name is invalid', async function () {
59 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, fromName: 'name'.repeat(100) }))
60 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, fromName: '' }))
61 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, fromName: undefined }))
62 })
63
64 it('Should not accept a contact form if body is invalid', async function () {
65 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, body: 'body'.repeat(5000) }))
66 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, body: 'a' }))
67 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: 400, body: undefined }))
68 })
69
70 it('Should accept a contact form with the correct parameters', async function () {
71 await sendContactForm(immutableAssign(defaultBody, { url: server.url }))
72 })
73
7c3b7976 74 after(async function () {
a4101923 75 MockSmtpServer.Instance.kill()
7c3b7976 76
8519cc92 77 await cleanupTests([ server ])
a4101923
C
78 })
79})