2019-10-10 17:38:50 +00:00
|
|
|
pipeline {
|
|
|
|
|
2019-11-29 16:05:18 +00:00
|
|
|
agent { label 'linux' }
|
2019-10-10 17:38:50 +00:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
name: 'BRANCH_NAME',
|
|
|
|
description: 'Name of the branch to checkout and build.',
|
|
|
|
defaultValue: 'develop',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'NETWORK',
|
|
|
|
description: 'Name of test network to use.',
|
|
|
|
defaultValue: 'ropsten',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'TEST_MARKERS',
|
|
|
|
description: 'Marker expression for matching tests to run.',
|
|
|
|
defaultValue: 'critical or high',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'APK_NAME',
|
|
|
|
description: 'Filename of APK uploaded to SauceLabs, path, or URL.',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'PR_ID',
|
|
|
|
description: 'ID of the Pull Request triggering this build.',
|
|
|
|
)
|
2019-12-02 18:56:42 +00:00
|
|
|
string(
|
|
|
|
name: 'TR_CASE_IDS',
|
|
|
|
description: 'IDs of the TestRail case, separated by a comma. (Optional)',
|
2019-12-05 09:56:31 +00:00
|
|
|
defaultValue: '',
|
2019-12-02 18:56:42 +00:00
|
|
|
)
|
2019-10-10 17:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2019-12-02 18:56:42 +00:00
|
|
|
stage('Checks') {
|
|
|
|
steps { script {
|
|
|
|
if (params.APK_NAME == null) { error("APK_NAME parameter not set!") }
|
|
|
|
if (params.PR_ID == null) { error("PR_ID parameter not set!") }
|
|
|
|
} }
|
|
|
|
}
|
2019-11-29 16:05:18 +00:00
|
|
|
stage('Setup') {
|
|
|
|
steps { script {
|
|
|
|
dir('test/appium') {
|
|
|
|
sh 'pip3 install --user -r requirements.txt'
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
2019-10-10 17:38:50 +00:00
|
|
|
stage('Test') {
|
|
|
|
steps { script {
|
|
|
|
currentBuild.displayName = "PR-${params.PR_ID}"
|
2019-12-02 18:56:42 +00:00
|
|
|
/* for managing optional arguments */
|
2019-12-05 09:56:31 +00:00
|
|
|
def extraPytestOpts = ''
|
|
|
|
if (params.TR_CASE_IDS != '') {
|
2019-12-02 18:56:42 +00:00
|
|
|
extraPytestOpts = "--run_testrail_ids='${params.TR_CASE_IDS}'"
|
|
|
|
}
|
2019-10-10 17:38:50 +00:00
|
|
|
|
|
|
|
withCredentials([
|
2020-02-24 13:46:27 +00:00
|
|
|
usernamePassword(
|
2020-02-18 10:45:30 +00:00
|
|
|
credentialsId: 'status-im-auto-token',
|
2020-02-24 13:46:27 +00:00
|
|
|
usernameVariable: 'GIT_HUB_USER', /* ignored */
|
|
|
|
passwordVariable: 'GIT_HUB_TOKEN'
|
2019-10-10 17:38:50 +00:00
|
|
|
),
|
|
|
|
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'
|
|
|
|
),
|
2019-10-10 17:38:50 +00:00
|
|
|
]) {
|
|
|
|
dir('test/appium/tests') {
|
|
|
|
sh """
|
2020-11-09 19:30:22 +00:00
|
|
|
python3 -m pytest \
|
2020-11-13 11:27:04 +00:00
|
|
|
--numprocesses 15 \
|
2019-10-10 17:38:50 +00:00
|
|
|
--rerun_count=2 \
|
|
|
|
--testrail_report=True \
|
|
|
|
-m "${params.TEST_MARKERS}" \
|
|
|
|
--network=${params.NETWORK} \
|
|
|
|
--apk=${params.APK_NAME} \
|
|
|
|
--build=PR-${params.PR_ID} \
|
2019-12-02 18:56:42 +00:00
|
|
|
--pr_number=${params.PR_ID} \
|
|
|
|
${extraPytestOpts}
|
2019-10-10 17:38:50 +00:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|