mirror of
https://github.com/zotero/zotero.git
synced 2026-08-28 05:25:31 +00:00
The sorted file list is split into contiguous chunks of roughly equal total file size, using size as a stand-in for run time, so new test files are included automatically and slow test files are spread across shards rather than landing in the same shard by chance. Contiguous chunks preserve the alphabetical run order of a full run, so files keep the same preceding files as in a full run except at chunk starts, and a shard can be reproduced locally by passing its first and last files to -s and -e.
197 lines
5.3 KiB
Bash
Executable file
197 lines
5.3 KiB
Bash
Executable file
#!/bin/bash
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
ROOT_DIR="$( cd "$( dirname "$SCRIPT_DIR" )" && pwd )"
|
|
|
|
case "$OSTYPE" in
|
|
msys*|mingw*|cygwin*) IS_CYGWIN=1 ;;
|
|
esac
|
|
|
|
function makePath {
|
|
local __assignTo=$1
|
|
local __path=$2
|
|
if [ ! -z $IS_CYGWIN ]; then
|
|
__path="`cygpath -aw \"$__path\"`"
|
|
fi
|
|
eval $__assignTo="'$__path'"
|
|
}
|
|
|
|
if [ -z "$Z_EXECUTABLE" ]; then
|
|
if [ "`uname`" == "Darwin" ]; then
|
|
Z_EXECUTABLE="$ROOT_DIR/app/staging/Zotero.app/Contents/MacOS/zotero"
|
|
else
|
|
arch=""
|
|
if [ "$(uname -m)" = "aarch64" ]; then
|
|
arch="arm64"
|
|
else
|
|
arch="x86_64"
|
|
fi
|
|
Z_EXECUTABLE="$ROOT_DIR/app/staging/Zotero_linux-$arch/zotero"
|
|
fi
|
|
fi
|
|
|
|
if [ -z "$DISPLAY" ]; then
|
|
Z_ARGS=""
|
|
else
|
|
Z_ARGS="--class=ZTestFirefox"
|
|
fi
|
|
|
|
function usage {
|
|
cat >&2 <<DONE
|
|
Usage: $0 [option] [TESTS...]
|
|
Options
|
|
-b skip bundled translator/style installation
|
|
-c open JavaScript console and don't quit on completion
|
|
-d LEVEL enable debug logging
|
|
-e TEST end at the given test
|
|
-f stop after first test failure
|
|
-g only run tests matching the given pattern (grep)
|
|
-h display this help
|
|
-p SHARD/TOTAL run only the given shard of the default test set (e.g., 2/4)
|
|
-r RETRIES retry failed tests the given number of times (default: 0)
|
|
-s TEST start at the given test
|
|
-t generate test data and quit
|
|
-x EXECUTABLE path to Zotero executable (default: $Z_EXECUTABLE)
|
|
TESTS set of tests to run (default: all)
|
|
DONE
|
|
exit 1
|
|
}
|
|
|
|
DEBUG=false
|
|
DEBUG_LEVEL=5
|
|
RETRIES=0
|
|
while getopts "bcd:e:fg:hp:r:s:tx:" opt; do
|
|
case $opt in
|
|
b)
|
|
Z_ARGS="$Z_ARGS -ZoteroSkipBundledFiles"
|
|
;;
|
|
c)
|
|
Z_ARGS="$Z_ARGS -jsconsole -noquit"
|
|
;;
|
|
d)
|
|
DEBUG=true
|
|
DEBUG_LEVEL="$OPTARG"
|
|
;;
|
|
e)
|
|
if [[ -z "$OPTARG" ]] || [[ ${OPTARG:0:1} = "-" ]]; then
|
|
usage
|
|
fi
|
|
Z_ARGS="$Z_ARGS -stopAtTestFile $OPTARG"
|
|
;;
|
|
f)
|
|
Z_ARGS="$Z_ARGS -bail"
|
|
;;
|
|
g)
|
|
GREP="$OPTARG"
|
|
;;
|
|
h)
|
|
usage
|
|
;;
|
|
p)
|
|
if [[ ! "$OPTARG" =~ ^[1-9][0-9]*/[1-9][0-9]*$ ]]; then
|
|
usage
|
|
fi
|
|
Z_ARGS="$Z_ARGS -shard $OPTARG"
|
|
;;
|
|
r)
|
|
RETRIES="$OPTARG"
|
|
;;
|
|
s)
|
|
if [[ -z "$OPTARG" ]] || [[ ${OPTARG:0:1} = "-" ]]; then
|
|
usage
|
|
fi
|
|
Z_ARGS="$Z_ARGS -startAtTestFile $OPTARG"
|
|
;;
|
|
t)
|
|
Z_ARGS="$Z_ARGS -makeTestData"
|
|
;;
|
|
x)
|
|
Z_EXECUTABLE="$OPTARG"
|
|
;;
|
|
*)
|
|
usage
|
|
;;
|
|
esac
|
|
shift $((OPTIND-1)); OPTIND=1
|
|
done
|
|
|
|
if [ -z $1 ]; then
|
|
TESTS="all"
|
|
else
|
|
ARGS=("${@:1}")
|
|
function join { local IFS="$1"; shift; echo "$*"; }
|
|
TESTS="$(join , "${ARGS[@]}")"
|
|
fi
|
|
|
|
# Increase open files limit
|
|
#
|
|
# Mozilla file functions (OS.File.move()/copy(), NetUtil.asyncFetch/asyncCopy()) can leave file
|
|
# descriptors open for a few seconds (even with an explicit inputStream.close() in the case of
|
|
# the latter), so a source installation that copies ~500 translators and styles (with fds for
|
|
# source and target) can exceed the default 1024 limit.
|
|
ulimit -n 4096
|
|
|
|
# Set up profile directory
|
|
TEMPDIR="`mktemp -d 2>/dev/null || mktemp -d -t 'zotero-unit'`"
|
|
PROFILE="$TEMPDIR/profile"
|
|
mkdir -p "$PROFILE"
|
|
|
|
makePath ZOTERO_PATH "$ROOT_DIR/build"
|
|
|
|
# Create data directory
|
|
mkdir "$TEMPDIR/Zotero"
|
|
|
|
touch "$PROFILE/prefs.js"
|
|
cat <<EOF >> "$PROFILE/prefs.js"
|
|
user_pref("app.update.enabled", false);
|
|
//user_pref("dom.max_chrome_script_run_time", 0);
|
|
// It would be better to leave this on and handle it in Sinon's FakeXMLHttpRequest
|
|
user_pref("extensions.zotero.sync.server.compressData", false);
|
|
user_pref("extensions.zotero.automaticScraperUpdates", false);
|
|
user_pref("extensions.zotero.debug.log", $DEBUG);
|
|
user_pref("extensions.zotero.debug.level", $DEBUG_LEVEL);
|
|
user_pref("extensions.zotero.debug.time", $DEBUG);
|
|
user_pref("extensions.zotero.firstRun.skipFirefoxProfileAccessCheck", true);
|
|
user_pref("extensions.zotero.firstRunGuidance", false);
|
|
user_pref("extensions.zotero.firstRun2", false);
|
|
user_pref("extensions.zotero.reportTranslationFailure", false);
|
|
user_pref("extensions.zotero.httpServer.enabled", true);
|
|
user_pref("extensions.zotero.httpServer.port", 23124); // ascii "ZT"
|
|
user_pref("extensions.zotero.httpServer.localAPI.enabled", true);
|
|
user_pref("extensions.zotero.backup.numBackups", 0);
|
|
user_pref("extensions.zotero.sync.autoSync", false);
|
|
user_pref("extensions.zoteroMacWordIntegration.installed", true);
|
|
user_pref("extensions.zoteroMacWordIntegration.skipInstallation", true);
|
|
user_pref("extensions.zoteroWinWordIntegration.skipInstallation", true);
|
|
user_pref("extensions.zoteroOpenOfficeIntegration.skipInstallation", true);
|
|
EOF
|
|
|
|
if [ -n "$CI" ]; then
|
|
Z_ARGS="$Z_ARGS -ZoteroAutomatedTest -ZoteroTestTimeout 15000"
|
|
else
|
|
Z_ARGS="$Z_ARGS -jsconsole"
|
|
fi
|
|
|
|
# Clean up on exit
|
|
trap "{ rm -rf \"$TEMPDIR\"; }" EXIT
|
|
|
|
# Check if build watch process is running
|
|
# If not, run now
|
|
if [[ -z "$CI" ]] && ! ps | grep js-build/build.js | grep -v grep > /dev/null; then
|
|
echo
|
|
echo "Running JS build process"
|
|
cd "$ROOT_DIR"
|
|
NODE_OPTIONS=--openssl-legacy-provider node js-build/build.js || exit $?
|
|
echo
|
|
fi
|
|
|
|
ZOTERO_TEST=1 "$ROOT_DIR/app/scripts/dir_build"
|
|
|
|
makePath FX_PROFILE "$PROFILE"
|
|
MOZ_NO_REMOTE=1 NO_EM_RESTART=1 "$Z_EXECUTABLE" -profile "$FX_PROFILE" \
|
|
-test "$TESTS" -grep "$GREP" -retries "$RETRIES" -ZoteroTest $Z_ARGS
|
|
|
|
# Check for success
|
|
test -e "$PROFILE/success"
|
|
STATUS=$?
|
|
|
|
exit $STATUS
|