]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/check-params/contact-form.ts
Introduce overviews command
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / contact-form.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
5 import { cleanupTests, flushAndRunServer, immutableAssign, killallServers, reRunServer, ServerInfo } from '../../../../shared/extra-utils'
6 import { MockSmtpServer } from '../../../../shared/extra-utils/mock-servers/mock-email'
7 import { sendContactForm } from '../../../../shared/extra-utils/server/contact-form'
8
9 describe('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',
15 subject: 'my subject',
16 body: 'Hello, how are you?'
17 }
18 let emailPort: number
19
20 // ---------------------------------------------------------------
21
22 before(async function () {
23 this.timeout(60000)
24
25 emailPort = await MockSmtpServer.Instance.collectEmails(emails)
26
27 // Email is disabled
28 server = await flushAndRunServer(1)
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: HttpStatusCode.CONFLICT_409 }))
33 })
34
35 it('Should not accept a contact form if it is disabled in the configuration', async function () {
36 this.timeout(10000)
37
38 killallServers([ server ])
39
40 // Contact form is disabled
41 await reRunServer(server, { smtp: { hostname: 'localhost', port: emailPort }, contact_form: { enabled: false } })
42 await sendContactForm(immutableAssign(defaultBody, { url: server.url, expectedStatus: HttpStatusCode.CONFLICT_409 }))
43 })
44
45 it('Should not accept a contact form if from email is invalid', async function () {
46 this.timeout(10000)
47
48 killallServers([ server ])
49
50 // Email & contact form enabled
51 await reRunServer(server, { smtp: { hostname: 'localhost', port: emailPort } })
52
53 await sendContactForm(immutableAssign(defaultBody, {
54 url: server.url,
55 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
56 fromEmail: 'badEmail'
57 }))
58 await sendContactForm(immutableAssign(defaultBody, {
59 url: server.url,
60 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
61 fromEmail: 'badEmail@'
62 }))
63 await sendContactForm(immutableAssign(defaultBody, {
64 url: server.url,
65 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
66 fromEmail: undefined
67 }))
68 })
69
70 it('Should not accept a contact form if from name is invalid', async function () {
71 await sendContactForm(immutableAssign(defaultBody, {
72 url: server.url,
73 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
74 fromName: 'name'.repeat(100)
75 }))
76 await sendContactForm(immutableAssign(defaultBody, {
77 url: server.url,
78 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
79 fromName: ''
80 }))
81 await sendContactForm(immutableAssign(defaultBody, {
82 url: server.url,
83 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
84 fromName: undefined
85 }))
86 })
87
88 it('Should not accept a contact form if body is invalid', async function () {
89 await sendContactForm(immutableAssign(defaultBody, {
90 url: server.url,
91 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
92 body: 'body'.repeat(5000)
93 }))
94 await sendContactForm(immutableAssign(defaultBody, {
95 url: server.url,
96 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
97 body: 'a'
98 }))
99 await sendContactForm(immutableAssign(defaultBody, {
100 url: server.url,
101 expectedStatus: HttpStatusCode.BAD_REQUEST_400,
102 body: undefined
103 }))
104 })
105
106 it('Should accept a contact form with the correct parameters', async function () {
107 await sendContactForm(immutableAssign(defaultBody, { url: server.url }))
108 })
109
110 after(async function () {
111 MockSmtpServer.Instance.kill()
112
113 await cleanupTests([ server ])
114 })
115 })