2021-12-14 11:17:01 -05:00
|
|
|
import { onBrowserStackComplete, onBrowserStackPrepare } from './src/utils'
|
2021-08-30 10:24:25 -04: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',
|
|
|
|
buildName: 'Main E2E - ' + new Date().toISOString().split('T')[0],
|
|
|
|
sessionName,
|
|
|
|
consoleLogs: 'info',
|
|
|
|
networkLogs: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildBStackDesktopOptions (sessionName: string, resolution?: string) {
|
|
|
|
return {
|
|
|
|
'bstack:options': {
|
|
|
|
...buildMainOptions(sessionName),
|
|
|
|
|
|
|
|
resolution
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-03 04:27:04 -04:00
|
|
|
function buildBStackMobileOptions (sessionName: string, deviceName: string, osVersion: string, appiumVersion?: string) {
|
2021-08-30 10:24:25 -04:00
|
|
|
return {
|
|
|
|
'bstack:options': {
|
|
|
|
...buildMainOptions(sessionName),
|
|
|
|
|
|
|
|
realMobile: true,
|
|
|
|
osVersion,
|
2021-09-03 04:27:04 -04:00
|
|
|
deviceName,
|
|
|
|
|
|
|
|
appiumVersion
|
2021-08-30 10:24:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
config: {
|
|
|
|
...mainConfig,
|
|
|
|
|
|
|
|
user,
|
|
|
|
key,
|
|
|
|
|
|
|
|
maxInstances: 5,
|
|
|
|
|
|
|
|
capabilities: [
|
|
|
|
{
|
|
|
|
browserName: 'Chrome',
|
|
|
|
|
|
|
|
...buildBStackDesktopOptions('Latest Chrome Desktop', '1280x1024')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
browserName: 'Firefox',
|
|
|
|
browserVersion: '68', // ESR
|
|
|
|
|
|
|
|
...buildBStackDesktopOptions('Firefox ESR Desktop', '1280x1024')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
browserName: 'Safari',
|
|
|
|
browserVersion: '11.1',
|
|
|
|
|
|
|
|
...buildBStackDesktopOptions('Safari Desktop', '1280x1024')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
browserName: 'Firefox',
|
|
|
|
|
|
|
|
...buildBStackDesktopOptions('Firefox Latest', '1280x1024')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
browserName: 'Edge',
|
|
|
|
|
|
|
|
...buildBStackDesktopOptions('Edge Latest', '1280x1024')
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
browserName: 'Chrome',
|
|
|
|
|
|
|
|
...buildBStackMobileOptions('Latest Chrome Android', 'Samsung Galaxy S6', '5.0')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
browserName: 'Safari',
|
|
|
|
|
2021-09-03 04:27:04 -04:00
|
|
|
...buildBStackMobileOptions('Safari iPhone', 'iPhone SE', '11')
|
2021-08-30 10:24:25 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
browserName: 'Safari',
|
|
|
|
|
|
|
|
...buildBStackMobileOptions('Safari iPad', 'iPad 7th', '13')
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
host: 'hub-cloud.browserstack.com',
|
|
|
|
connectionRetryTimeout: 240000,
|
|
|
|
waitforTimeout: 20000,
|
|
|
|
|
2021-09-03 04:27:04 -04:00
|
|
|
specs: [
|
|
|
|
// We don't want to test "local" tests
|
|
|
|
'./src/suites-all/*.e2e-spec.ts'
|
|
|
|
],
|
|
|
|
|
2021-08-30 10:24:25 -04:00
|
|
|
services: [
|
|
|
|
[
|
|
|
|
'browserstack', { browserstackLocal: true }
|
|
|
|
]
|
|
|
|
],
|
|
|
|
|
2021-09-03 04:27:04 -04:00
|
|
|
onWorkerStart: function (_cid, capabilities) {
|
|
|
|
if (capabilities['bstack:options'].realMobile === true) {
|
|
|
|
capabilities['bstack:options'].local = false
|
2021-08-30 10:24:25 -04:00
|
|
|
}
|
2021-12-14 11:17:01 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
onPrepare: onBrowserStackPrepare,
|
|
|
|
onComplete: onBrowserStackComplete
|
|
|
|
|
2021-08-30 10:24:25 -04:00
|
|
|
} as WebdriverIO.Config
|
|
|
|
}
|