aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-02-15 16:25:52 +0100
committerChocobozzz <me@florianbigard.com>2023-02-15 16:26:21 +0100
commit1ec4835dcac769d0711bbfeaa63b4e1743fde265 (patch)
treec50faa5a51ebe4827d2762e6b7b4f418da2a9948 /client/e2e
parent366d5aea5d5b320b54b9cfea9a646d7828de7bae (diff)
downloadPeerTube-1ec4835dcac769d0711bbfeaa63b4e1743fde265.tar.gz
PeerTube-1ec4835dcac769d0711bbfeaa63b4e1743fde265.tar.zst
PeerTube-1ec4835dcac769d0711bbfeaa63b4e1743fde265.zip
Create screenshots directory when needed
Diffstat (limited to 'client/e2e')
-rw-r--r--client/e2e/src/suites-local/signup.e2e-spec.ts23
-rw-r--r--client/e2e/src/utils/files.ts17
-rw-r--r--client/e2e/src/utils/hooks.ts5
-rw-r--r--client/e2e/src/utils/index.ts1
4 files changed, 38 insertions, 8 deletions
diff --git a/client/e2e/src/suites-local/signup.e2e-spec.ts b/client/e2e/src/suites-local/signup.e2e-spec.ts
index b6f7ad1a7..7c822a6e6 100644
--- a/client/e2e/src/suites-local/signup.e2e-spec.ts
+++ b/client/e2e/src/suites-local/signup.e2e-spec.ts
@@ -2,7 +2,16 @@ import { AdminConfigPage } from '../po/admin-config.po'
2import { AdminRegistrationPage } from '../po/admin-registration.po' 2import { AdminRegistrationPage } from '../po/admin-registration.po'
3import { LoginPage } from '../po/login.po' 3import { LoginPage } from '../po/login.po'
4import { SignupPage } from '../po/signup.po' 4import { SignupPage } from '../po/signup.po'
5import { browserSleep, getVerificationLink, go, findEmailTo, isMobileDevice, MockSMTPServer, waitServerUp } from '../utils' 5import {
6 browserSleep,
7 findEmailTo,
8 getScreenshotPath,
9 getVerificationLink,
10 go,
11 isMobileDevice,
12 MockSMTPServer,
13 waitServerUp
14} from '../utils'
6 15
7function checkEndMessage (options: { 16function checkEndMessage (options: {
8 message: string 17 message: string
@@ -155,7 +164,7 @@ describe('Signup', () => {
155 afterEmailVerification: false 164 afterEmailVerification: false
156 }) 165 })
157 166
158 await browser.saveScreenshot('./screenshots/direct-without-email.png') 167 await browser.saveScreenshot(getScreenshotPath('direct-without-email.png'))
159 168
160 await loginPage.logout() 169 await loginPage.logout()
161 }) 170 })
@@ -203,7 +212,7 @@ describe('Signup', () => {
203 afterEmailVerification: false 212 afterEmailVerification: false
204 }) 213 })
205 214
206 await browser.saveScreenshot('./screenshots/request-without-email.png') 215 await browser.saveScreenshot(getScreenshotPath('request-without-email.png'))
207 }) 216 })
208 217
209 it('Should display a message when trying to login with this account', async function () { 218 it('Should display a message when trying to login with this account', async function () {
@@ -283,7 +292,7 @@ describe('Signup', () => {
283 afterEmailVerification: false 292 afterEmailVerification: false
284 }) 293 })
285 294
286 await browser.saveScreenshot('./screenshots/direct-with-email.png') 295 await browser.saveScreenshot(getScreenshotPath('direct-with-email.png'))
287 }) 296 })
288 297
289 it('Should validate the email', async function () { 298 it('Should validate the email', async function () {
@@ -304,7 +313,7 @@ describe('Signup', () => {
304 afterEmailVerification: true 313 afterEmailVerification: true
305 }) 314 })
306 315
307 await browser.saveScreenshot('./screenshots/direct-after-email.png') 316 await browser.saveScreenshot(getScreenshotPath('direct-after-email.png'))
308 }) 317 })
309 }) 318 })
310 319
@@ -355,7 +364,7 @@ describe('Signup', () => {
355 afterEmailVerification: false 364 afterEmailVerification: false
356 }) 365 })
357 366
358 await browser.saveScreenshot('./screenshots/request-with-email.png') 367 await browser.saveScreenshot(getScreenshotPath('request-with-email.png'))
359 }) 368 })
360 369
361 it('Should display a message when trying to login with this account', async function () { 370 it('Should display a message when trying to login with this account', async function () {
@@ -391,7 +400,7 @@ describe('Signup', () => {
391 afterEmailVerification: true 400 afterEmailVerification: true
392 }) 401 })
393 402
394 await browser.saveScreenshot('./screenshots/request-after-email.png') 403 await browser.saveScreenshot(getScreenshotPath('request-after-email.png'))
395 }) 404 })
396 }) 405 })
397 406
diff --git a/client/e2e/src/utils/files.ts b/client/e2e/src/utils/files.ts
new file mode 100644
index 000000000..c532c987e
--- /dev/null
+++ b/client/e2e/src/utils/files.ts
@@ -0,0 +1,17 @@
1import { mkdirSync } from 'fs'
2import { join } from 'path'
3
4const SCREENSHOTS_DIRECTORY = 'screenshots'
5
6function createScreenshotsDirectory () {
7 mkdirSync(SCREENSHOTS_DIRECTORY, { recursive: true })
8}
9
10function getScreenshotPath (filename: string) {
11 return join(SCREENSHOTS_DIRECTORY, filename)
12}
13
14export {
15 createScreenshotsDirectory,
16 getScreenshotPath
17}
diff --git a/client/e2e/src/utils/hooks.ts b/client/e2e/src/utils/hooks.ts
index 7fe247681..8baf9fb44 100644
--- a/client/e2e/src/utils/hooks.ts
+++ b/client/e2e/src/utils/hooks.ts
@@ -1,7 +1,8 @@
1import { ChildProcessWithoutNullStreams } from 'child_process' 1import { ChildProcessWithoutNullStreams } from 'child_process'
2import { basename } from 'path' 2import { basename } from 'path'
3import { runCommand, runServer } from './server'
4import { setValue } from '@wdio/shared-store-service' 3import { setValue } from '@wdio/shared-store-service'
4import { createScreenshotsDirectory } from './files'
5import { runCommand, runServer } from './server'
5 6
6let appInstance: number 7let appInstance: number
7let app: ChildProcessWithoutNullStreams 8let app: ChildProcessWithoutNullStreams
@@ -21,6 +22,8 @@ function afterLocalSuite () {
21} 22}
22 23
23async function beforeLocalSession (config: { baseUrl: string }, capabilities: { browserName: string }) { 24async function beforeLocalSession (config: { baseUrl: string }, capabilities: { browserName: string }) {
25 await createScreenshotsDirectory()
26
24 appInstance = capabilities['browserName'] === 'chrome' 27 appInstance = capabilities['browserName'] === 'chrome'
25 ? 1 28 ? 1
26 : 2 29 : 2
diff --git a/client/e2e/src/utils/index.ts b/client/e2e/src/utils/index.ts
index 420fd239e..0770cb0f4 100644
--- a/client/e2e/src/utils/index.ts
+++ b/client/e2e/src/utils/index.ts
@@ -1,6 +1,7 @@
1export * from './common' 1export * from './common'
2export * from './elements' 2export * from './elements'
3export * from './email' 3export * from './email'
4export * from './files'
4export * from './hooks' 5export * from './hooks'
5export * from './mock-smtp' 6export * from './mock-smtp'
6export * from './server' 7export * from './server'