d838bc952a
We now copy the prefs file into the app omni.ja, which requires `pref()`, but for tests we copy it to the profile directory, where it needs to stay as `user_pref()`.
212 lines
6.4 KiB
Bash
Executable file
212 lines
6.4 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 "$FX_EXECUTABLE" ]; then
|
|
if [ "`uname`" == "Darwin" ]; then
|
|
FX_EXECUTABLE="$( dirname "$ROOT_DIR" )/zotero-standalone-build/xulrunner/Firefox.app/Contents/MacOS/firefox"
|
|
else
|
|
FX_EXECUTABLE="$( dirname "$ROOT_DIR" )/zotero-standalone-build/xulrunner/firefox-x86_64/firefox"
|
|
fi
|
|
fi
|
|
|
|
if [ -z "$DISPLAY" ]; then
|
|
FX_ARGS=""
|
|
else
|
|
FX_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
|
|
-s TEST start at the given test
|
|
-t generate test data and quit
|
|
-x FX_EXECUTABLE path to Firefox executable (default: $FX_EXECUTABLE)
|
|
TESTS set of tests to run (default: all)
|
|
DONE
|
|
exit 1
|
|
}
|
|
|
|
DEBUG=false
|
|
DEBUG_LEVEL=5
|
|
while getopts "bcd:e:fg:hs:tx:" opt; do
|
|
case $opt in
|
|
b)
|
|
FX_ARGS="$FX_ARGS -ZoteroSkipBundledFiles"
|
|
;;
|
|
c)
|
|
FX_ARGS="$FX_ARGS -jsconsole -noquit"
|
|
;;
|
|
d)
|
|
DEBUG=true
|
|
DEBUG_LEVEL="$OPTARG"
|
|
;;
|
|
e)
|
|
if [[ -z "$OPTARG" ]] || [[ ${OPTARG:0:1} = "-" ]]; then
|
|
usage
|
|
fi
|
|
FX_ARGS="$FX_ARGS -stopAtTestFile $OPTARG"
|
|
;;
|
|
f)
|
|
FX_ARGS="$FX_ARGS -bail"
|
|
;;
|
|
g)
|
|
GREP="$OPTARG"
|
|
;;
|
|
h)
|
|
usage
|
|
;;
|
|
s)
|
|
if [[ -z "$OPTARG" ]] || [[ ${OPTARG:0:1} = "-" ]]; then
|
|
usage
|
|
fi
|
|
FX_ARGS="$FX_ARGS -startAtTestFile $OPTARG"
|
|
;;
|
|
t)
|
|
FX_ARGS="$FX_ARGS -makeTestData"
|
|
;;
|
|
x)
|
|
FX_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/extensions"
|
|
|
|
makePath ZOTERO_PATH "$ROOT_DIR/build"
|
|
echo "$ZOTERO_PATH" > "$PROFILE/extensions/zotero@chnm.gmu.edu"
|
|
|
|
makePath ZOTERO_UNIT_PATH "$ZOTERO_PATH/test"
|
|
echo "$ZOTERO_UNIT_PATH" > "$PROFILE/extensions/zotero-unit@zotero.org"
|
|
|
|
# Create data directory
|
|
mkdir "$TEMPDIR/Zotero"
|
|
|
|
# Download PDF tools if not cached in the source directory and copy to profile directory
|
|
PDF_TOOLS_VERSION="0.0.3"
|
|
PDF_TOOLS_URL="https://zotero-download.s3.amazonaws.com/pdftools/pdftools-$PDF_TOOLS_VERSION.tar.gz"
|
|
PDF_TOOLS_CACHE_DIR="$ROOT_DIR/tmp/pdftools"
|
|
PDF_TOOLS_DIR="$PROFILE/pdftools"
|
|
if [ ! -f "$PDF_TOOLS_CACHE_DIR/$PDF_TOOLS_VERSION" ]; then
|
|
echo "Fetching PDF tools version $PDF_TOOLS_VERSION"
|
|
echo
|
|
rm -rf "$PDF_TOOLS_CACHE_DIR"
|
|
mkdir -p "$PDF_TOOLS_CACHE_DIR"
|
|
curl -o "$PDF_TOOLS_CACHE_DIR/pdftools.tar.gz" $PDF_TOOLS_URL
|
|
tar -zxf "$PDF_TOOLS_CACHE_DIR/pdftools.tar.gz" -C $PDF_TOOLS_CACHE_DIR
|
|
rm "$PDF_TOOLS_CACHE_DIR/pdftools.tar.gz"
|
|
touch "$PDF_TOOLS_CACHE_DIR/$PDF_TOOLS_VERSION"
|
|
echo
|
|
fi
|
|
cp -R $PDF_TOOLS_CACHE_DIR $PDF_TOOLS_DIR
|
|
|
|
# Add default prefs, which are apparently no longer read from extensions in Firefox 60
|
|
cat "$ZOTERO_PATH/defaults/preferences/zotero.js" | sed 's/^pref/user_pref/g' > "$PROFILE/prefs.js"
|
|
|
|
cat <<EOF >> "$PROFILE/prefs.js"
|
|
user_pref("app.update.enabled", false);
|
|
user_pref("extensions.autoDisableScopes", 0);
|
|
user_pref("browser.dom.window.dump.enabled", true);
|
|
user_pref("browser.tabs.remote.autostart", false);
|
|
user_pref("browser.tabs.remote.autostart.2", false);
|
|
user_pref("browser.uitour.enabled", false);
|
|
user_pref("browser.shell.checkDefaultBrowser", 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.backup.numBackups", 0);
|
|
user_pref("extensions.zotero.sync.autoSync", false);
|
|
user_pref("extensions.legacy.enabled", true);
|
|
user_pref("xpinstall.signatures.required", false);
|
|
user_pref("xpinstall.whitelist.required", false);
|
|
user_pref("datareporting.healthreport.uploadEnabled", false);
|
|
user_pref("datareporting.healthreport.service.enabled", false);
|
|
user_pref("datareporting.healthreport.service.firstRun", false);
|
|
user_pref("datareporting.policy.dataSubmissionEnabled", false);
|
|
user_pref("datareporting.policy.dataSubmissionPolicyBypassNotification", true);
|
|
EOF
|
|
|
|
# -v flag on Windows makes Firefox process hang
|
|
if [ -z $IS_CYGWIN ]; then
|
|
echo "`MOZ_NO_REMOTE=1 NO_EM_RESTART=1 \"$FX_EXECUTABLE\" -v`"
|
|
fi
|
|
|
|
if [ -n "$CI" ]; then
|
|
FX_ARGS="$FX_ARGS -ZoteroAutomatedTest -ZoteroTestTimeout 15000"
|
|
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 scripts/build.js | grep -v grep > /dev/null; then
|
|
echo
|
|
echo "Running JS build process"
|
|
cd "$ROOT_DIR"
|
|
npm run build || exit $?
|
|
echo
|
|
fi
|
|
|
|
makePath FX_PROFILE "$PROFILE"
|
|
MOZ_NO_REMOTE=1 NO_EM_RESTART=1 "$FX_EXECUTABLE" -profile "$FX_PROFILE" \
|
|
-chrome chrome://zotero-unit/content/runtests.html -test "$TESTS" -grep "$GREP" -ZoteroTest $FX_ARGS
|
|
|
|
# Check for success
|
|
test -e "$PROFILE/success"
|
|
STATUS=$?
|
|
|
|
exit $STATUS
|