2023-04-27 07:53:04 +00:00
|
|
|
library 'status-jenkins-lib@v1.7.6'
|
2023-02-08 14:51:57 +00:00
|
|
|
|
2020-04-21 08:39:45 +00:00
|
|
|
pipeline {
|
|
|
|
|
|
|
|
agent { label 'linux' }
|
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
2023-02-06 10:58:22 +00:00
|
|
|
name: 'APK_URL',
|
|
|
|
description: 'URL of APK to be tested(base for upgrade, usually release build)',
|
2020-04-21 08:39:45 +00:00
|
|
|
)
|
|
|
|
string(
|
2023-02-06 10:58:22 +00:00
|
|
|
name: 'APK_URL_UPGRADE',
|
|
|
|
description: 'URL of APK of upgraded application (installed on top of base)',
|
2020-04-21 08:39:45 +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: '',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'TR_CASE_IDS',
|
|
|
|
description: 'IDs of the TestRail case, separated by a comma (Optional)',
|
|
|
|
defaultValue: '',
|
|
|
|
)
|
2020-04-21 08:39:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
stages {
|
2023-02-06 10:58:22 +00:00
|
|
|
stage('Prep') {
|
|
|
|
steps { script {
|
|
|
|
if (params.APK_URL == null) {
|
|
|
|
error("APK_URL parameter not set!")
|
|
|
|
}
|
|
|
|
if (params.APK_URL_UPGRADE == null) {
|
|
|
|
error("APK_URL_UPGRADE parameter not set!")
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
|
2020-04-21 08:39:45 +00:00
|
|
|
stage('Setup') {
|
|
|
|
steps { script {
|
|
|
|
dir('test/appium') {
|
|
|
|
sh 'pip3 install --user -r requirements.txt'
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
2023-02-06 10:58:22 +00:00
|
|
|
|
2020-04-21 08:39:45 +00:00
|
|
|
stage('Test') {
|
2021-12-29 16:10:22 +00:00
|
|
|
steps { script {
|
|
|
|
/* for managing optional arguments */
|
|
|
|
def extraPytestOpts = ''
|
|
|
|
if (params.TR_CASE_IDS != '') {
|
|
|
|
extraPytestOpts = "--run_testrail_ids='${params.TR_CASE_IDS}'"
|
|
|
|
}
|
2020-04-21 08:39:45 +00:00
|
|
|
withCredentials([
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'test-rail-api',
|
|
|
|
usernameVariable: 'TESTRAIL_USER',
|
|
|
|
passwordVariable: 'TESTRAIL_PASS'
|
|
|
|
),
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'sauce-labs-api',
|
|
|
|
usernameVariable: 'SAUCE_USERNAME',
|
|
|
|
passwordVariable: 'SAUCE_ACCESS_KEY'
|
|
|
|
),
|
|
|
|
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'
|
|
|
|
),
|
2020-04-21 08:39:45 +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'
|
2020-04-21 08:39:45 +00:00
|
|
|
sh """
|
2020-11-09 19:30:22 +00:00
|
|
|
python3 -m pytest \
|
2021-12-29 16:10:22 +00:00
|
|
|
-m "upgrade" \
|
|
|
|
-k \"${params.KEYWORD_EXPRESSION}\" \
|
2023-01-18 13:06:05 +00:00
|
|
|
--numprocesses 4 \
|
2020-11-09 19:30:22 +00:00
|
|
|
--rerun_count=2 \
|
2020-04-21 08:39:45 +00:00
|
|
|
--testrail_report=True \
|
2023-02-06 10:58:22 +00:00
|
|
|
--apk=${params.APK_URL} \
|
|
|
|
--apk_upgrade=${params.APK_URL_UPGRADE} \
|
2021-12-29 16:10:22 +00:00
|
|
|
${extraPytestOpts}
|
2020-04-21 08:39:45 +00:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-29 16:10:22 +00:00
|
|
|
} }
|
2020-04-21 08:39:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
|
|
|
script {
|
|
|
|
sauce('sauce-labs-cred') {
|
|
|
|
saucePublisher()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
success {
|
|
|
|
script {
|
|
|
|
junit(
|
|
|
|
testDataPublishers: [[$class: 'SauceOnDemandReportPublisher', jobVisibility: 'public']],
|
|
|
|
testResults: 'test/appium/tests/*.xml'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2023-02-08 17:01:24 +00:00
|
|
|
cleanup {
|
|
|
|
sh 'make purge'
|
|
|
|
}
|
2020-04-21 08:39:45 +00:00
|
|
|
}
|
|
|
|
}
|