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