2018-03-27 03:35:12 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
2017-10-31 11:23:57 -05:00
|
|
|
|
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
echo "Need test suite argument."
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2018-07-31 03:26:13 -05:00
|
|
|
killall -q peertube || true
|
|
|
|
|
2020-01-22 03:00:38 -06:00
|
|
|
perl -0777 -i -pe 's#proxy:(\n\s+)enabled: false\n\s+url: ""#proxy:$1enabled: true$1url: "http://188.165.225.149:7899"#' config/test.yaml
|
2020-01-21 08:59:57 -06:00
|
|
|
|
2017-11-30 06:16:23 -06:00
|
|
|
if [ "$1" = "misc" ]; then
|
2020-01-28 04:37:09 -06:00
|
|
|
npm run build -- --light
|
2020-06-18 10:12:24 -05:00
|
|
|
TS_NODE_FILES=true mocha --timeout 5000 --exit --require ts-node/register --require tsconfig-paths/register --bail \
|
|
|
|
server/tests/client.ts \
|
2018-10-13 01:43:55 -05:00
|
|
|
server/tests/feeds/index.ts \
|
|
|
|
server/tests/misc-endpoints.ts \
|
2019-07-19 03:37:35 -05:00
|
|
|
server/tests/helpers/index.ts \
|
|
|
|
server/tests/plugins/index.ts
|
2017-10-31 11:23:57 -05:00
|
|
|
elif [ "$1" = "cli" ]; then
|
2017-10-31 11:33:23 -05:00
|
|
|
npm run build:server
|
2019-05-24 10:42:35 -05:00
|
|
|
CC=gcc-4.9 CXX=g++-4.9 npm run setup:cli
|
2019-10-21 09:24:06 -05:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register --require tsconfig-paths/register --bail server/tests/cli/index.ts
|
2018-08-22 09:15:35 -05:00
|
|
|
elif [ "$1" = "api-1" ]; then
|
2017-10-31 11:50:28 -05:00
|
|
|
npm run build:server
|
2019-07-29 04:59:29 -05:00
|
|
|
sh ./server/tests/api/ci-1.sh 2
|
2018-08-22 09:15:35 -05:00
|
|
|
elif [ "$1" = "api-2" ]; then
|
2017-10-31 11:50:28 -05:00
|
|
|
npm run build:server
|
2019-07-29 04:59:29 -05:00
|
|
|
sh ./server/tests/api/ci-2.sh 2
|
2018-08-22 09:15:35 -05:00
|
|
|
elif [ "$1" = "api-3" ]; then
|
|
|
|
npm run build:server
|
2019-07-29 04:59:29 -05:00
|
|
|
sh ./server/tests/api/ci-3.sh 2
|
2018-11-15 02:24:56 -06:00
|
|
|
elif [ "$1" = "api-4" ]; then
|
2019-05-24 10:42:35 -05:00
|
|
|
npm run build:server
|
2019-07-29 04:59:29 -05:00
|
|
|
sh ./server/tests/api/ci-4.sh 2
|
2020-04-27 03:58:09 -05:00
|
|
|
elif [ "$1" = "external-plugins" ]; then
|
|
|
|
npm run build:server
|
|
|
|
mocha --timeout 5000 --exit --require ts-node/register --require tsconfig-paths/register --bail server/tests/external-plugins/index.ts
|
2017-10-31 11:23:57 -05:00
|
|
|
elif [ "$1" = "lint" ]; then
|
2020-01-31 09:56:52 -06:00
|
|
|
npm run eslint -- --ext .ts "server/**/*.ts" "shared/**/*.ts"
|
2020-01-21 07:28:28 -06:00
|
|
|
npm run swagger-cli -- validate support/doc/api/openapi.yaml
|
2018-09-21 02:26:02 -05:00
|
|
|
|
2018-03-27 03:35:12 -05:00
|
|
|
( cd client
|
|
|
|
npm run lint
|
|
|
|
)
|
2017-10-31 11:23:57 -05:00
|
|
|
fi
|
2020-01-21 08:59:57 -06:00
|
|
|
|
|
|
|
git checkout -- config/test.yaml
|