1
0
Fork 0
peertube/client/e2e/wdio.browserstack.conf.ts

138 lines
3.2 KiB
TypeScript
Raw Normal View History

import { onBrowserStackComplete, onBrowserStackPrepare } from './src/utils'
2021-08-30 14:24:25 +00:00
import { config as mainConfig } from './wdio.main.conf'
const user = process.env.BROWSERSTACK_USER
const key = process.env.BROWSERSTACK_KEY
if (!user) throw new Error('Miss browser stack user')
if (!key) throw new Error('Miss browser stack key')
function buildMainOptions (sessionName: string) {
return {
projectName: 'PeerTube',
2024-03-06 13:19:11 +00:00
buildName: 'Main E2E - ' + new Date().toISOString(),
2021-08-30 14:24:25 +00:00
sessionName,
consoleLogs: 'info',
networkLogs: true
}
}
2023-07-13 13:49:47 +00:00
function buildBStackDesktopOptions (options: {
sessionName: string
resolution: string
os?: string
osVersion?: string
}) {
const { sessionName, resolution, os, osVersion } = options
2021-08-30 14:24:25 +00:00
return {
'bstack:options': {
...buildMainOptions(sessionName),
2023-02-28 08:29:17 +00:00
os,
2023-07-13 13:49:47 +00:00
osVersion,
2021-08-30 14:24:25 +00:00
resolution
}
}
}
2023-07-13 13:49:47 +00:00
function buildBStackMobileOptions (options: {
sessionName: string
deviceName: string
osVersion: string
}) {
const { sessionName, deviceName, osVersion } = options
2021-08-30 14:24:25 +00:00
return {
'bstack:options': {
...buildMainOptions(sessionName),
realMobile: true,
osVersion,
2023-02-28 08:29:17 +00:00
deviceName
2021-08-30 14:24:25 +00:00
}
}
}
module.exports = {
config: {
...mainConfig,
user,
key,
maxInstances: 5,
capabilities: [
{
browserName: 'Chrome',
2023-07-13 13:49:47 +00:00
...buildBStackDesktopOptions({ sessionName: 'Latest Chrome Desktop', resolution: '1280x1024', os: 'Windows', osVersion: '8' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Firefox',
browserVersion: '78', // Very old ESR
2021-08-30 14:24:25 +00:00
2023-07-13 13:49:47 +00:00
...buildBStackDesktopOptions({ sessionName: 'Firefox ESR Desktop', resolution: '1280x1024', os: 'Windows', osVersion: '8' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Safari',
browserVersion: '12.1',
2021-08-30 14:24:25 +00:00
2023-07-13 13:49:47 +00:00
...buildBStackDesktopOptions({ sessionName: 'Safari Desktop', resolution: '1280x1024' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Firefox',
2023-07-13 13:49:47 +00:00
...buildBStackDesktopOptions({ sessionName: 'Firefox Latest', resolution: '1280x1024', os: 'Windows', osVersion: '8' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Edge',
2023-07-13 13:49:47 +00:00
...buildBStackDesktopOptions({ sessionName: 'Edge Latest', resolution: '1280x1024' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Chrome',
2023-07-13 13:49:47 +00:00
...buildBStackMobileOptions({ sessionName: 'Latest Chrome Android', deviceName: 'Samsung Galaxy S8', osVersion: '7.0' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Safari',
2024-03-06 13:19:11 +00:00
...buildBStackMobileOptions({ sessionName: 'Safari iPhone', deviceName: 'iPhone 8', osVersion: '13' })
2021-08-30 14:24:25 +00:00
},
{
browserName: 'Safari',
2023-07-13 13:49:47 +00:00
...buildBStackMobileOptions({ sessionName: 'Safari iPad', deviceName: 'iPad 7th', osVersion: '13' })
2021-08-30 14:24:25 +00:00
}
],
host: 'hub-cloud.browserstack.com',
connectionRetryTimeout: 240000,
waitforTimeout: 20000,
2021-09-03 08:27:04 +00:00
specs: [
// We don't want to test "local" tests
'./src/suites-all/*.e2e-spec.ts'
],
2021-08-30 14:24:25 +00:00
services: [
[
'browserstack', { browserstackLocal: true }
]
],
2021-09-03 08:27:04 +00:00
onWorkerStart: function (_cid, capabilities) {
if (capabilities['bstack:options'].realMobile === true) {
capabilities['bstack:options'].local = false
2021-08-30 14:24:25 +00:00
}
},
onPrepare: onBrowserStackPrepare,
onComplete: onBrowserStackComplete
2021-08-30 14:24:25 +00:00
} as WebdriverIO.Config
}