2023-05-17 15:57:24 +00:00
|
|
|
library 'status-jenkins-lib@v1.7.8'
|
2023-02-08 14:51:57 +00:00
|
|
|
|
2019-06-17 16:36:28 +00:00
|
|
|
pipeline {
|
|
|
|
|
2019-11-29 16:05:18 +00:00
|
|
|
agent { label 'linux' }
|
2019-06-17 16:36:28 +00:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
2023-02-06 10:58:22 +00:00
|
|
|
name: 'APK_URL',
|
|
|
|
description: 'URL of APK uploaded to SauceLabs.',
|
2019-06-17 16:36:28 +00:00
|
|
|
)
|
2021-12-29 16:10:22 +00:00
|
|
|
string(
|
|
|
|
name: 'KEYWORD_EXPRESSION',
|
|
|
|
description: 'This will run tests which contain names that match the given string expression (Optional)',
|
|
|
|
defaultValue: '',
|
|
|
|
)
|
2019-06-17 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2023-02-08 14:51:57 +00:00
|
|
|
stage('Fetch') {
|
|
|
|
when { expression { !params.APK_URL } }
|
2023-02-06 10:58:22 +00:00
|
|
|
steps { script {
|
2023-02-08 14:51:57 +00:00
|
|
|
copyArtifacts(
|
|
|
|
projectName: "status-mobile/nightly",
|
|
|
|
filter: '*-x86.apk',
|
|
|
|
/* WARNING: This copies the latest available artifact. */
|
|
|
|
selector: lastWithArtifacts(),
|
|
|
|
)
|
|
|
|
apk_path = "${env.WORKSPACE}/${utils.findFile('*-x86.apk')}"
|
2023-02-06 10:58:22 +00:00
|
|
|
} }
|
|
|
|
}
|
|
|
|
|
2019-11-29 16:05:18 +00:00
|
|
|
stage('Setup') {
|
|
|
|
steps { script {
|
|
|
|
dir('test/appium') {
|
|
|
|
sh 'pip3 install --user -r requirements.txt'
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
2023-02-06 10:58:22 +00:00
|
|
|
|
2019-06-17 16:36:28 +00:00
|
|
|
stage('Test') {
|
|
|
|
steps {
|
|
|
|
withCredentials([
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'test-rail-api',
|
|
|
|
usernameVariable: 'TESTRAIL_USER',
|
|
|
|
passwordVariable: 'TESTRAIL_PASS'
|
|
|
|
),
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'sauce-labs-api',
|
|
|
|
usernameVariable: 'SAUCE_USERNAME',
|
|
|
|
passwordVariable: 'SAUCE_ACCESS_KEY'
|
|
|
|
),
|
2020-02-24 11:30:45 +00:00
|
|
|
string(
|
|
|
|
credentialsId: 'etherscan-api-key',
|
|
|
|
variable: 'ETHERSCAN_API_KEY'
|
|
|
|
),
|
2020-12-04 17:27:21 +00:00
|
|
|
string(
|
|
|
|
credentialsId: 'infura-e2e-token',
|
|
|
|
variable: 'WEB3_INFURA_PROJECT_ID'
|
|
|
|
),
|
2022-03-07 21:17:39 +00:00
|
|
|
file(
|
|
|
|
credentialsId: "mobile-tests-eth-accounts",
|
|
|
|
variable: 'TEST_ETH_ACCOUNTS_FILE'
|
|
|
|
),
|
2019-06-17 16:36:28 +00:00
|
|
|
]) {
|
|
|
|
dir('test/appium/tests') {
|
2022-03-07 21:17:39 +00:00
|
|
|
/* Provide Eth test accounts secrets. */
|
|
|
|
sh 'cp -f $TEST_ETH_ACCOUNTS_FILE users.py'
|
2019-06-17 16:36:28 +00:00
|
|
|
sh """
|
2020-11-09 19:30:22 +00:00
|
|
|
python3 -m pytest \
|
2023-01-18 13:06:05 +00:00
|
|
|
--numprocesses 4 \
|
2020-11-09 19:30:22 +00:00
|
|
|
--rerun_count=2 \
|
2019-06-17 16:36:28 +00:00
|
|
|
--testrail_report=True \
|
2020-11-09 19:30:22 +00:00
|
|
|
-m testrail_id \
|
2022-11-21 04:49:53 +00:00
|
|
|
-m \"new_ui_critical or new_ui_medium\" \
|
2021-12-29 16:10:22 +00:00
|
|
|
-k \"${params.KEYWORD_EXPRESSION}\" \
|
2023-02-08 14:51:57 +00:00
|
|
|
--apk=${params.APK_URL ?: apk_path}
|
2019-06-17 16:36:28 +00:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
|
|
|
script {
|
2019-07-01 15:39:16 +00:00
|
|
|
sauce('sauce-labs-cred') {
|
2019-06-17 16:36:28 +00:00
|
|
|
saucePublisher()
|
|
|
|
}
|
2019-07-01 15:39:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
success {
|
|
|
|
script {
|
2019-06-17 16:36:28 +00:00
|
|
|
junit(
|
|
|
|
testDataPublishers: [[$class: 'SauceOnDemandReportPublisher', jobVisibility: 'public']],
|
|
|
|
testResults: 'test/appium/tests/*.xml'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2023-02-08 17:01:24 +00:00
|
|
|
cleanup {
|
|
|
|
sh 'make purge'
|
|
|
|
}
|
2019-06-17 16:36:28 +00:00
|
|
|
}
|
|
|
|
}
|