2015-09-27 14:03:31 +03:00
|
|
|
#!/usr/bin/env bash
|
2014-01-12 21:57:53 +04:00
|
|
|
#
|
|
|
|
# ownCloud
|
|
|
|
#
|
|
|
|
# Run JS tests
|
|
|
|
#
|
|
|
|
# @author Vincent Petry
|
|
|
|
# @copyright 2014 Vincent Petry <pvince81@owncloud.com>
|
|
|
|
#
|
2014-09-09 19:12:20 +04:00
|
|
|
|
2014-09-12 17:42:50 +04:00
|
|
|
# set -e
|
2014-09-09 19:12:20 +04:00
|
|
|
|
2014-01-12 21:57:53 +04:00
|
|
|
NPM="$(which npm 2>/dev/null)"
|
|
|
|
PREFIX="build"
|
|
|
|
|
|
|
|
if test -z "$NPM"
|
|
|
|
then
|
|
|
|
echo 'Node JS >= 0.8 is required to run the JavaScript tests' >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# update/install test packages
|
|
|
|
mkdir -p "$PREFIX" && $NPM install --link --prefix "$PREFIX" || exit 3
|
|
|
|
|
2017-01-06 15:33:18 +03:00
|
|
|
# create scss test
|
|
|
|
mkdir -p tests/css
|
2017-03-20 15:59:21 +03:00
|
|
|
for SCSSFILE in core/css/*.scss
|
|
|
|
do
|
|
|
|
FILE=$(basename $SCSSFILE)
|
|
|
|
FILENAME="${FILE%.*}"
|
2018-07-04 19:50:49 +03:00
|
|
|
printf "\$webroot:''; @import 'functions.scss'; @import 'variables.scss'; @import '${FILE}';" | ./build/bin/node-sass --include-path core/css/ > tests/css/${FILE}.css
|
2017-03-20 15:59:21 +03:00
|
|
|
done
|
2017-01-06 15:33:18 +03:00
|
|
|
|
2016-06-29 19:45:13 +03:00
|
|
|
KARMA="$PREFIX/node_modules/karma/bin/karma"
|
2014-01-12 21:57:53 +04:00
|
|
|
|
2014-01-28 00:15:21 +04:00
|
|
|
NODE_PATH='build/node_modules' KARMA_TESTSUITE="$1" $KARMA start tests/karma.config.js --single-run
|
2014-01-12 21:57:53 +04:00
|
|
|
|