-
Notifications
You must be signed in to change notification settings - Fork 0
/
testfairy-upload.sh
executable file
·93 lines (71 loc) · 2.59 KB
/
testfairy-upload.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh
# Upload to TestFairy. This upload script is both for iOS and Android.
# Arguments:
# [1] .apk or .ipa file to upload [2] testfairy group to notify (optional)
UPLOADER_VERSION=2.12
# Put your TestFairy API_KEY here. Find it here: https://app.testfairy.com/settings/#tab-api-key
TESTFAIRY_API_KEY=d8cc509125daf4a6f90ca33c07b5d6ee56541852
# Tester Groups that will be notified when the app is ready. Setup groups in your TestFairy account testers page.
# This parameter is optional, leave empty if not required
TESTER_GROUPS=$2
# Should email testers be notified about the new version. Set to "off" to disable email notifications.
NOTIFY="on"
# If AUTO_UPDATE is "on" all users will be prompted to update to this build next time they run the app
AUTO_UPDATE="off"
# The maximum recording duration for every test.
MAX_DURATION="10m"
# Is video recording enabled for this build. valid values: "on", "off", "wifi"
VIDEO="off"
# Comment text will be included in the email sent to testers
COMMENT=$3
# locations of various tools
CURL=curl
SERVER_ENDPOINT=https://upload.testfairy.com
usage() {
echo "Usage: testfairy-upload-ios.sh APP_FILENAME {TESTFAIRY_GROUP}"
echo
}
verify_tools() {
# Windows users: this script requires curl. If not installed please get from http://cygwin.com/
# Check 'curl' tool
"${CURL}" --help >/dev/null
if [ $? -ne 0 ]; then
echo "Could not run curl tool, please check settings"
exit 1
fi
}
verify_settings() {
if [ -z "${TESTFAIRY_API_KEY}" ]; then
usage
echo "Please update API_KEY with your private API key, as noted in the Settings page"
exit 1
fi
}
if [ $# -eq 0 ]; then
usage
exit 1
fi
# before even going on, make sure all tools work
verify_tools
verify_settings
APP_FILENAME=$1
if [ ! -f "${APP_FILENAME}" ]; then
usage
echo "Can't find file: ${APP_FILENAME}"
exit 2
fi
# temporary file paths
DATE=`date`
/bin/echo -n "Uploading ${APP_FILENAME} to TestFairy.. "
JSON=$( "${CURL}" -s ${SERVER_ENDPOINT}/api/upload -F api_key=${TESTFAIRY_API_KEY} -F file="@${APP_FILENAME}" -F video="${VIDEO}" -F max-duration="${MAX_DURATION}" -F comment="${COMMENT}" -F testers-groups="${TESTER_GROUPS}" -F auto-update="${AUTO_UPDATE}" -F notify="${NOTIFY}" -F instrumentation="off" -A "TestFairy Command Line Uploader ${UPLOADER_VERSION}" )
URL=$( echo ${JSON} | sed 's/\\\//\//g' | sed -n 's/.*"build_url"\s*:\s*"\([^"]*\)".*/\1/p' )
if [ -z "$URL" ]; then
echo "FAILED!"
echo
echo "Build uploaded, but no reply from server. Please contact support@testfairy.com"
exit 1
fi
echo "OK!"
echo
echo "Build was successfully uploaded to TestFairy and is available at:"
echo ${URL}